From b2025a5be66cde5fd3ddc7442334de9f6b8f58bc Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Tue, 28 Jun 2022 14:59:54 +0000 Subject: [PATCH 01/53] test: added first tests --- .coveragerc | 10 + .flake8 | 2 +- .gitignore | 2 + Makefile | 18 + poetry.lock | 378 ++++++++++++++++++++- pyarr/sonarr.py | 2 +- pyproject.toml | 5 + tests/__init__.py | 13 + tests/conftest.py | 10 + tests/fixtures/sonarr/episode.json | 105 ++++++ tests/fixtures/sonarr/series.json | 34 ++ tests/fixtures/sonarr/updated_episode.json | 16 + tests/test_sonarr.py | 84 +++++ 13 files changed, 673 insertions(+), 6 deletions(-) create mode 100644 .coveragerc create mode 100644 Makefile create mode 100644 tests/__init__.py create mode 100644 tests/conftest.py create mode 100644 tests/fixtures/sonarr/episode.json create mode 100644 tests/fixtures/sonarr/series.json create mode 100644 tests/fixtures/sonarr/updated_episode.json create mode 100644 tests/test_sonarr.py diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..3a5dd18 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,10 @@ +[run] +source = pyarr + +omit = + # omit tests + tests/* + +[report] +exclude_lines = + if TYPE_CHECKING: diff --git a/.flake8 b/.flake8 index 027daad..311602a 100644 --- a/.flake8 +++ b/.flake8 @@ -1,7 +1,7 @@ [flake8] max-line-length = 88 max-complexity = 18 -exclude = build/* +exclude = build/*, tests/* extend-ignore = # See https://github.com/PyCQA/pycodestyle/issues/373 E203, diff --git a/.gitignore b/.gitignore index c10a84b..d8aabac 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,8 @@ build *.egg-info .mypy_cache .pytest_cache +.coverage +coverage.xml .devcontainer/* !.devcontainer/recommended-devcontainer.json diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d32f8db --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +.DEFAULT_GOAL := help + +help: ## Shows this help message + @printf "\033[1m%s\033[36m %s\033[32m %s\033[0m \n\n" "Development environment for" "pyarr" ""; + @awk 'BEGIN {FS = ":.*##";} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m make %-25s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST); + @echo + +requriements: ## Install requirements + @poetry Install + +lint: ## Lint all files + @isort . + @python -m black --fast . + @python -m flake8 pyarr tests + @python -m mypy pyarr + +coverage: ## Check the coverage of the package + @python -m pytest tests --cov=pyarr --cov-report term-missing -vv diff --git a/poetry.lock b/poetry.lock index 3a4f7fc..471e8e1 100644 --- a/poetry.lock +++ b/poetry.lock @@ -6,6 +6,27 @@ category = "dev" optional = false python-versions = "*" +[[package]] +name = "astroid" +version = "2.11.6" +description = "An abstract syntax tree for Python with inference support." +category = "dev" +optional = false +python-versions = ">=3.6.2" + +[package.dependencies] +lazy-object-proxy = ">=1.4.0" +typing-extensions = {version = ">=3.10", markers = "python_version < \"3.10\""} +wrapt = ">=1.11,<2" + +[[package]] +name = "atomicwrites" +version = "1.4.0" +description = "Atomic file writes." +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + [[package]] name = "attrs" version = "21.4.0" @@ -93,12 +114,37 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} [[package]] name = "colorama" -version = "0.4.4" +version = "0.4.5" description = "Cross-platform colored terminal text." category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +[[package]] +name = "coverage" +version = "6.4.1" +description = "Code coverage measurement for Python" +category = "dev" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +tomli = {version = "*", optional = true, markers = "python_full_version <= \"3.11.0a6\" and extra == \"toml\""} + +[package.extras] +toml = ["tomli"] + +[[package]] +name = "dill" +version = "0.3.5.1" +description = "serialize all of python" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" + +[package.extras] +graph = ["objgraph (>=1.7.2)"] + [[package]] name = "distlib" version = "0.3.4" @@ -183,6 +229,14 @@ docs = ["sphinx", "jaraco.packaging (>=9)", "rst.linker (>=1.9)"] perf = ["ipython"] testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "packaging", "pyfakefs", "flufl.flake8", "pytest-perf (>=0.9.2)", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)", "importlib-resources (>=1.3)"] +[[package]] +name = "iniconfig" +version = "1.1.1" +description = "iniconfig: brain-dead simple config-ini parsing" +category = "dev" +optional = false +python-versions = "*" + [[package]] name = "interrogate" version = "1.5.0" @@ -233,6 +287,14 @@ MarkupSafe = ">=2.0" [package.extras] i18n = ["Babel (>=2.7)"] +[[package]] +name = "lazy-object-proxy" +version = "1.7.1" +description = "A fast and thorough lazy object proxy." +category = "dev" +optional = false +python-versions = ">=3.6" + [[package]] name = "livereload" version = "2.6.3" @@ -325,6 +387,18 @@ python-versions = ">=3.7" docs = ["furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx-autodoc-typehints (>=1.12)", "sphinx (>=4)"] test = ["appdirs (==1.4.4)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)", "pytest (>=6)"] +[[package]] +name = "pluggy" +version = "1.0.0" +description = "plugin and hook calling mechanisms for python" +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.extras] +dev = ["pre-commit", "tox"] +testing = ["pytest", "pytest-benchmark"] + [[package]] name = "pre-commit" version = "2.19.0" @@ -373,6 +447,29 @@ category = "dev" optional = false python-versions = ">=3.6" +[[package]] +name = "pylint" +version = "2.14.3" +description = "python code static checker" +category = "dev" +optional = false +python-versions = ">=3.7.2" + +[package.dependencies] +astroid = ">=2.11.6,<=2.12.0-dev0" +colorama = {version = ">=0.4.5", markers = "sys_platform == \"win32\""} +dill = ">=0.2" +isort = ">=4.2.5,<6" +mccabe = ">=0.6,<0.8" +platformdirs = ">=2.2.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +tomlkit = ">=0.10.1" +typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\""} + +[package.extras] +spelling = ["pyenchant (>=3.2,<4.0)"] +testutils = ["gitpython (>3)"] + [[package]] name = "pyparsing" version = "3.0.9" @@ -384,6 +481,57 @@ python-versions = ">=3.6.8" [package.extras] diagrams = ["railroad-diagrams", "jinja2"] +[[package]] +name = "pytest" +version = "7.1.2" +description = "pytest: simple powerful testing with Python" +category = "dev" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} +attrs = ">=19.2.0" +colorama = {version = "*", markers = "sys_platform == \"win32\""} +iniconfig = "*" +packaging = "*" +pluggy = ">=0.12,<2.0" +py = ">=1.8.2" +tomli = ">=1.0.0" + +[package.extras] +testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"] + +[[package]] +name = "pytest-cov" +version = "3.0.0" +description = "Pytest plugin for measuring coverage." +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +coverage = {version = ">=5.2.1", extras = ["toml"]} +pytest = ">=4.6" + +[package.extras] +testing = ["fields", "hunter", "process-tests", "six", "pytest-xdist", "virtualenv"] + +[[package]] +name = "pytest-responses" +version = "0.5.0" +description = "py.test integration for responses" +category = "dev" +optional = false +python-versions = "*" + +[package.dependencies] +pytest = ">=2.5" +responses = "*" + +[package.extras] +tests = ["flake8"] + [[package]] name = "pytz" version = "2022.1" @@ -418,6 +566,21 @@ urllib3 = ">=1.21.1,<1.27" socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"] use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"] +[[package]] +name = "responses" +version = "0.21.0" +description = "A utility library for mocking out the `requests` Python library." +category = "dev" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +requests = ">=2.0,<3.0" +urllib3 = ">=1.25.10" + +[package.extras] +tests = ["pytest (>=7.0.0)", "coverage (>=6.0.0)", "pytest-cov", "pytest-asyncio", "pytest-localserver", "flake8", "types-mock", "types-requests", "mypy"] + [[package]] name = "six" version = "1.16.0" @@ -609,6 +772,14 @@ category = "dev" optional = false python-versions = ">=3.7" +[[package]] +name = "tomlkit" +version = "0.11.0" +description = "Style preserving TOML library" +category = "dev" +optional = false +python-versions = ">=3.6,<4.0" + [[package]] name = "tornado" version = "6.1" @@ -675,6 +846,14 @@ six = ">=1.9.0,<2" docs = ["proselint (>=0.10.2)", "sphinx (>=3)", "sphinx-argparse (>=0.2.5)", "sphinx-rtd-theme (>=0.4.3)", "towncrier (>=21.3)"] testing = ["coverage (>=4)", "coverage-enable-subprocess (>=1)", "flaky (>=3)", "pytest (>=4)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.1)", "pytest-mock (>=2)", "pytest-randomly (>=1)", "pytest-timeout (>=1)", "packaging (>=20.0)"] +[[package]] +name = "wrapt" +version = "1.14.1" +description = "Module for decorators, wrappers and monkey patching." +category = "dev" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" + [[package]] name = "zipp" version = "3.8.0" @@ -690,13 +869,21 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest- [metadata] lock-version = "1.1" python-versions = "^3.9" -content-hash = "2520a6197424731b8411bd66730f69b14faef3da51aa12ad88e1102dfd4a0de9" +content-hash = "db4d8fa133ec6e7dde2fe5968067409cbca372a1a5bbd67f4e951ffcd9b6859e" [metadata.files] alabaster = [ {file = "alabaster-0.7.12-py2.py3-none-any.whl", hash = "sha256:446438bdcca0e05bd45ea2de1668c1d9b032e1a9154c2c259092d77031ddd359"}, {file = "alabaster-0.7.12.tar.gz", hash = "sha256:a661d72d58e6ea8a57f7a86e37d86716863ee5e92788398526d58b26a4e4dc02"}, ] +astroid = [ + {file = "astroid-2.11.6-py3-none-any.whl", hash = "sha256:ba33a82a9a9c06a5ceed98180c5aab16e29c285b828d94696bf32d6015ea82a9"}, + {file = "astroid-2.11.6.tar.gz", hash = "sha256:4f933d0bf5e408b03a6feb5d23793740c27e07340605f236496cd6ce552043d6"}, +] +atomicwrites = [ + {file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"}, + {file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"}, +] attrs = [ {file = "attrs-21.4.0-py2.py3-none-any.whl", hash = "sha256:2d27e3784d7a565d36ab851fe94887c5eccd6a463168875832a1be79c82828b4"}, {file = "attrs-21.4.0.tar.gz", hash = "sha256:626ba8234211db98e869df76230a137c4c40a12d72445c45d5f5b716f076e2fd"}, @@ -747,8 +934,55 @@ click = [ {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, ] colorama = [ - {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"}, - {file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"}, + {file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"}, + {file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"}, +] +coverage = [ + {file = "coverage-6.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f1d5aa2703e1dab4ae6cf416eb0095304f49d004c39e9db1d86f57924f43006b"}, + {file = "coverage-6.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4ce1b258493cbf8aec43e9b50d89982346b98e9ffdfaae8ae5793bc112fb0068"}, + {file = "coverage-6.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83c4e737f60c6936460c5be330d296dd5b48b3963f48634c53b3f7deb0f34ec4"}, + {file = "coverage-6.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84e65ef149028516c6d64461b95a8dbcfce95cfd5b9eb634320596173332ea84"}, + {file = "coverage-6.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f69718750eaae75efe506406c490d6fc5a6161d047206cc63ce25527e8a3adad"}, + {file = "coverage-6.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e57816f8ffe46b1df8f12e1b348f06d164fd5219beba7d9433ba79608ef011cc"}, + {file = "coverage-6.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:01c5615d13f3dd3aa8543afc069e5319cfa0c7d712f6e04b920431e5c564a749"}, + {file = "coverage-6.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:75ab269400706fab15981fd4bd5080c56bd5cc07c3bccb86aab5e1d5a88dc8f4"}, + {file = "coverage-6.4.1-cp310-cp310-win32.whl", hash = "sha256:a7f3049243783df2e6cc6deafc49ea123522b59f464831476d3d1448e30d72df"}, + {file = "coverage-6.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:ee2ddcac99b2d2aec413e36d7a429ae9ebcadf912946b13ffa88e7d4c9b712d6"}, + {file = "coverage-6.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:fb73e0011b8793c053bfa85e53129ba5f0250fdc0392c1591fd35d915ec75c46"}, + {file = "coverage-6.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:106c16dfe494de3193ec55cac9640dd039b66e196e4641fa8ac396181578b982"}, + {file = "coverage-6.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:87f4f3df85aa39da00fd3ec4b5abeb7407e82b68c7c5ad181308b0e2526da5d4"}, + {file = "coverage-6.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:961e2fb0680b4f5ad63234e0bf55dfb90d302740ae9c7ed0120677a94a1590cb"}, + {file = "coverage-6.4.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:cec3a0f75c8f1031825e19cd86ee787e87cf03e4fd2865c79c057092e69e3a3b"}, + {file = "coverage-6.4.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:129cd05ba6f0d08a766d942a9ed4b29283aff7b2cccf5b7ce279d50796860bb3"}, + {file = "coverage-6.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:bf5601c33213d3cb19d17a796f8a14a9eaa5e87629a53979a5981e3e3ae166f6"}, + {file = "coverage-6.4.1-cp37-cp37m-win32.whl", hash = "sha256:269eaa2c20a13a5bf17558d4dc91a8d078c4fa1872f25303dddcbba3a813085e"}, + {file = "coverage-6.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:f02cbbf8119db68455b9d763f2f8737bb7db7e43720afa07d8eb1604e5c5ae28"}, + {file = "coverage-6.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ffa9297c3a453fba4717d06df579af42ab9a28022444cae7fa605af4df612d54"}, + {file = "coverage-6.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:145f296d00441ca703a659e8f3eb48ae39fb083baba2d7ce4482fb2723e050d9"}, + {file = "coverage-6.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d44996140af8b84284e5e7d398e589574b376fb4de8ccd28d82ad8e3bea13"}, + {file = "coverage-6.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2bd9a6fc18aab8d2e18f89b7ff91c0f34ff4d5e0ba0b33e989b3cd4194c81fd9"}, + {file = "coverage-6.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3384f2a3652cef289e38100f2d037956194a837221edd520a7ee5b42d00cc605"}, + {file = "coverage-6.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:9b3e07152b4563722be523e8cd0b209e0d1a373022cfbde395ebb6575bf6790d"}, + {file = "coverage-6.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1480ff858b4113db2718848d7b2d1b75bc79895a9c22e76a221b9d8d62496428"}, + {file = "coverage-6.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:865d69ae811a392f4d06bde506d531f6a28a00af36f5c8649684a9e5e4a85c83"}, + {file = "coverage-6.4.1-cp38-cp38-win32.whl", hash = "sha256:664a47ce62fe4bef9e2d2c430306e1428ecea207ffd68649e3b942fa8ea83b0b"}, + {file = "coverage-6.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:26dff09fb0d82693ba9e6231248641d60ba606150d02ed45110f9ec26404ed1c"}, + {file = "coverage-6.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d9c80df769f5ec05ad21ea34be7458d1dc51ff1fb4b2219e77fe24edf462d6df"}, + {file = "coverage-6.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:39ee53946bf009788108b4dd2894bf1349b4e0ca18c2016ffa7d26ce46b8f10d"}, + {file = "coverage-6.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5b66caa62922531059bc5ac04f836860412f7f88d38a476eda0a6f11d4724f4"}, + {file = "coverage-6.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fd180ed867e289964404051a958f7cccabdeed423f91a899829264bb7974d3d3"}, + {file = "coverage-6.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84631e81dd053e8a0d4967cedab6db94345f1c36107c71698f746cb2636c63e3"}, + {file = "coverage-6.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:8c08da0bd238f2970230c2a0d28ff0e99961598cb2e810245d7fc5afcf1254e8"}, + {file = "coverage-6.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:d42c549a8f41dc103a8004b9f0c433e2086add8a719da00e246e17cbe4056f72"}, + {file = "coverage-6.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:309ce4a522ed5fca432af4ebe0f32b21d6d7ccbb0f5fcc99290e71feba67c264"}, + {file = "coverage-6.4.1-cp39-cp39-win32.whl", hash = "sha256:fdb6f7bd51c2d1714cea40718f6149ad9be6a2ee7d93b19e9f00934c0f2a74d9"}, + {file = "coverage-6.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:342d4aefd1c3e7f620a13f4fe563154d808b69cccef415415aece4c786665397"}, + {file = "coverage-6.4.1-pp36.pp37.pp38-none-any.whl", hash = "sha256:4803e7ccf93230accb928f3a68f00ffa80a88213af98ed338a57ad021ef06815"}, + {file = "coverage-6.4.1.tar.gz", hash = "sha256:4321f075095a096e70aff1d002030ee612b65a205a0a0f5b815280d5dc58100c"}, +] +dill = [ + {file = "dill-0.3.5.1-py2.py3-none-any.whl", hash = "sha256:33501d03270bbe410c72639b350e941882a8b0fd55357580fbc873fba0c59302"}, + {file = "dill-0.3.5.1.tar.gz", hash = "sha256:d75e41f3eff1eee599d738e76ba8f4ad98ea229db8b085318aa2b3333a208c86"}, ] distlib = [ {file = "distlib-0.3.4-py2.py3-none-any.whl", hash = "sha256:6564fe0a8f51e734df6333d08b8b94d4ea8ee6b99b5ed50613f731fd4089f34b"}, @@ -782,6 +1016,10 @@ importlib-metadata = [ {file = "importlib_metadata-4.11.4-py3-none-any.whl", hash = "sha256:c58c8eb8a762858f49e18436ff552e83914778e50e9d2f1660535ffb364552ec"}, {file = "importlib_metadata-4.11.4.tar.gz", hash = "sha256:5d26852efe48c0a32b0509ffbc583fda1a2266545a78d104a6f4aff3db17d700"}, ] +iniconfig = [ + {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"}, + {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"}, +] interrogate = [ {file = "interrogate-1.5.0-py3-none-any.whl", hash = "sha256:a4ccc5cbd727c74acc98dee6f5e79ef264c0bcfa66b68d4e123069b2af89091a"}, {file = "interrogate-1.5.0.tar.gz", hash = "sha256:b6f325f0aa84ac3ac6779d8708264d366102226c5af7d69058cecffcff7a6d6c"}, @@ -794,6 +1032,45 @@ jinja2 = [ {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, ] +lazy-object-proxy = [ + {file = "lazy-object-proxy-1.7.1.tar.gz", hash = "sha256:d609c75b986def706743cdebe5e47553f4a5a1da9c5ff66d76013ef396b5a8a4"}, + {file = "lazy_object_proxy-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bb8c5fd1684d60a9902c60ebe276da1f2281a318ca16c1d0a96db28f62e9166b"}, + {file = "lazy_object_proxy-1.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a57d51ed2997e97f3b8e3500c984db50a554bb5db56c50b5dab1b41339b37e36"}, + {file = "lazy_object_proxy-1.7.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd45683c3caddf83abbb1249b653a266e7069a09f486daa8863fb0e7496a9fdb"}, + {file = "lazy_object_proxy-1.7.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:8561da8b3dd22d696244d6d0d5330618c993a215070f473b699e00cf1f3f6443"}, + {file = "lazy_object_proxy-1.7.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fccdf7c2c5821a8cbd0a9440a456f5050492f2270bd54e94360cac663398739b"}, + {file = "lazy_object_proxy-1.7.1-cp310-cp310-win32.whl", hash = "sha256:898322f8d078f2654d275124a8dd19b079080ae977033b713f677afcfc88e2b9"}, + {file = "lazy_object_proxy-1.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:85b232e791f2229a4f55840ed54706110c80c0a210d076eee093f2b2e33e1bfd"}, + {file = "lazy_object_proxy-1.7.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:46ff647e76f106bb444b4533bb4153c7370cdf52efc62ccfc1a28bdb3cc95442"}, + {file = "lazy_object_proxy-1.7.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12f3bb77efe1367b2515f8cb4790a11cffae889148ad33adad07b9b55e0ab22c"}, + {file = "lazy_object_proxy-1.7.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c19814163728941bb871240d45c4c30d33b8a2e85972c44d4e63dd7107faba44"}, + {file = "lazy_object_proxy-1.7.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:e40f2013d96d30217a51eeb1db28c9ac41e9d0ee915ef9d00da639c5b63f01a1"}, + {file = "lazy_object_proxy-1.7.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:2052837718516a94940867e16b1bb10edb069ab475c3ad84fd1e1a6dd2c0fcfc"}, + {file = "lazy_object_proxy-1.7.1-cp36-cp36m-win32.whl", hash = "sha256:6a24357267aa976abab660b1d47a34aaf07259a0c3859a34e536f1ee6e76b5bb"}, + {file = "lazy_object_proxy-1.7.1-cp36-cp36m-win_amd64.whl", hash = "sha256:6aff3fe5de0831867092e017cf67e2750c6a1c7d88d84d2481bd84a2e019ec35"}, + {file = "lazy_object_proxy-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6a6e94c7b02641d1311228a102607ecd576f70734dc3d5e22610111aeacba8a0"}, + {file = "lazy_object_proxy-1.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4ce15276a1a14549d7e81c243b887293904ad2d94ad767f42df91e75fd7b5b6"}, + {file = "lazy_object_proxy-1.7.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e368b7f7eac182a59ff1f81d5f3802161932a41dc1b1cc45c1f757dc876b5d2c"}, + {file = "lazy_object_proxy-1.7.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:6ecbb350991d6434e1388bee761ece3260e5228952b1f0c46ffc800eb313ff42"}, + {file = "lazy_object_proxy-1.7.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:553b0f0d8dbf21890dd66edd771f9b1b5f51bd912fa5f26de4449bfc5af5e029"}, + {file = "lazy_object_proxy-1.7.1-cp37-cp37m-win32.whl", hash = "sha256:c7a683c37a8a24f6428c28c561c80d5f4fd316ddcf0c7cab999b15ab3f5c5c69"}, + {file = "lazy_object_proxy-1.7.1-cp37-cp37m-win_amd64.whl", hash = "sha256:df2631f9d67259dc9620d831384ed7732a198eb434eadf69aea95ad18c587a28"}, + {file = "lazy_object_proxy-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:07fa44286cda977bd4803b656ffc1c9b7e3bc7dff7d34263446aec8f8c96f88a"}, + {file = "lazy_object_proxy-1.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4dca6244e4121c74cc20542c2ca39e5c4a5027c81d112bfb893cf0790f96f57e"}, + {file = "lazy_object_proxy-1.7.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:91ba172fc5b03978764d1df5144b4ba4ab13290d7bab7a50f12d8117f8630c38"}, + {file = "lazy_object_proxy-1.7.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:043651b6cb706eee4f91854da4a089816a6606c1428fd391573ef8cb642ae4f7"}, + {file = "lazy_object_proxy-1.7.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b9e89b87c707dd769c4ea91f7a31538888aad05c116a59820f28d59b3ebfe25a"}, + {file = "lazy_object_proxy-1.7.1-cp38-cp38-win32.whl", hash = "sha256:9d166602b525bf54ac994cf833c385bfcc341b364e3ee71e3bf5a1336e677b55"}, + {file = "lazy_object_proxy-1.7.1-cp38-cp38-win_amd64.whl", hash = "sha256:8f3953eb575b45480db6568306893f0bd9d8dfeeebd46812aa09ca9579595148"}, + {file = "lazy_object_proxy-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dd7ed7429dbb6c494aa9bc4e09d94b778a3579be699f9d67da7e6804c422d3de"}, + {file = "lazy_object_proxy-1.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70ed0c2b380eb6248abdef3cd425fc52f0abd92d2b07ce26359fcbc399f636ad"}, + {file = "lazy_object_proxy-1.7.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7096a5e0c1115ec82641afbdd70451a144558ea5cf564a896294e346eb611be1"}, + {file = "lazy_object_proxy-1.7.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f769457a639403073968d118bc70110e7dce294688009f5c24ab78800ae56dc8"}, + {file = "lazy_object_proxy-1.7.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:39b0e26725c5023757fc1ab2a89ef9d7ab23b84f9251e28f9cc114d5b59c1b09"}, + {file = "lazy_object_proxy-1.7.1-cp39-cp39-win32.whl", hash = "sha256:2130db8ed69a48a3440103d4a520b89d8a9405f1b06e2cc81640509e8bf6548f"}, + {file = "lazy_object_proxy-1.7.1-cp39-cp39-win_amd64.whl", hash = "sha256:677ea950bef409b47e51e733283544ac3d660b709cfce7b187f5ace137960d61"}, + {file = "lazy_object_proxy-1.7.1-pp37.pp38-none-any.whl", hash = "sha256:d66906d5785da8e0be7360912e99c9188b70f52c422f9fc18223347235691a84"}, +] livereload = [ {file = "livereload-2.6.3.tar.gz", hash = "sha256:776f2f865e59fde56490a56bcc6773b6917366bce0c267c60ee8aaf1a0959869"}, ] @@ -888,6 +1165,10 @@ platformdirs = [ {file = "platformdirs-2.5.2-py3-none-any.whl", hash = "sha256:027d8e83a2d7de06bbac4e5ef7e023c02b863d7ea5d079477e722bb41ab25788"}, {file = "platformdirs-2.5.2.tar.gz", hash = "sha256:58c8abb07dcb441e6ee4b11d8df0ac856038f944ab98b7be6b27b2a3c7feef19"}, ] +pluggy = [ + {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, + {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, +] pre-commit = [ {file = "pre_commit-2.19.0-py2.py3-none-any.whl", hash = "sha256:10c62741aa5704faea2ad69cb550ca78082efe5697d6f04e5710c3c229afdd10"}, {file = "pre_commit-2.19.0.tar.gz", hash = "sha256:4233a1e38621c87d9dda9808c6606d7e7ba0e087cd56d3fe03202a01d2919615"}, @@ -908,10 +1189,25 @@ pygments = [ {file = "Pygments-2.12.0-py3-none-any.whl", hash = "sha256:dc9c10fb40944260f6ed4c688ece0cd2048414940f1cea51b8b226318411c519"}, {file = "Pygments-2.12.0.tar.gz", hash = "sha256:5eb116118f9612ff1ee89ac96437bb6b49e8f04d8a13b514ba26f620208e26eb"}, ] +pylint = [ + {file = "pylint-2.14.3-py3-none-any.whl", hash = "sha256:6757a027e15816be23625b079ebc45464e4c9d9dde0c826d18beee53fe22a2e7"}, + {file = "pylint-2.14.3.tar.gz", hash = "sha256:4e1378f815c63e7e44590d0d339ed6435f5281d0a0cc357d29a86ea0365ef868"}, +] pyparsing = [ {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"}, {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"}, ] +pytest = [ + {file = "pytest-7.1.2-py3-none-any.whl", hash = "sha256:13d0e3ccfc2b6e26be000cb6568c832ba67ba32e719443bfe725814d3c42433c"}, + {file = "pytest-7.1.2.tar.gz", hash = "sha256:a06a0425453864a270bc45e71f783330a7428defb4230fb5e6a731fde06ecd45"}, +] +pytest-cov = [ + {file = "pytest-cov-3.0.0.tar.gz", hash = "sha256:e7f0f5b1617d2210a2cabc266dfe2f4c75a8d32fb89eafb7ad9d06f6d076d470"}, + {file = "pytest_cov-3.0.0-py3-none-any.whl", hash = "sha256:578d5d15ac4a25e5f961c938b85a05b09fdaae9deef3bb6de9a6e766622ca7a6"}, +] +pytest-responses = [ + {file = "pytest_responses-0.5.0-py2.py3-none-any.whl", hash = "sha256:6fffd7412294c8a01ccfec05ae51910db76aeb0df877c5fac16c64991cb465e6"}, +] pytz = [ {file = "pytz-2022.1-py2.py3-none-any.whl", hash = "sha256:e68985985296d9a66a881eb3193b0906246245294a881e7c8afe623866ac6a5c"}, {file = "pytz-2022.1.tar.gz", hash = "sha256:1e760e2fe6a8163bc0b3d9a19c4f84342afa0a2affebfaa84b01b978a02ecaa7"}, @@ -955,6 +1251,10 @@ requests = [ {file = "requests-2.27.1-py2.py3-none-any.whl", hash = "sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d"}, {file = "requests-2.27.1.tar.gz", hash = "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61"}, ] +responses = [ + {file = "responses-0.21.0-py3-none-any.whl", hash = "sha256:2dcc863ba63963c0c3d9ee3fa9507cbe36b7d7b0fccb4f0bdfd9e96c539b1487"}, + {file = "responses-0.21.0.tar.gz", hash = "sha256:b82502eb5f09a0289d8e209e7bad71ef3978334f56d09b444253d5ad67bf5253"}, +] six = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, @@ -1015,6 +1315,10 @@ tomli = [ {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, ] +tomlkit = [ + {file = "tomlkit-0.11.0-py3-none-any.whl", hash = "sha256:0f4050db66fd445b885778900ce4dd9aea8c90c4721141fde0d6ade893820ef1"}, + {file = "tomlkit-0.11.0.tar.gz", hash = "sha256:71ceb10c0eefd8b8f11fe34e8a51ad07812cb1dc3de23247425fbc9ddc47b9dd"}, +] tornado = [ {file = "tornado-6.1-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:d371e811d6b156d82aa5f9a4e08b58debf97c302a35714f6f45e35139c332e32"}, {file = "tornado-6.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:0d321a39c36e5f2c4ff12b4ed58d41390460f798422c4504e09eb5678e09998c"}, @@ -1078,6 +1382,72 @@ virtualenv = [ {file = "virtualenv-20.14.1-py2.py3-none-any.whl", hash = "sha256:e617f16e25b42eb4f6e74096b9c9e37713cf10bf30168fb4a739f3fa8f898a3a"}, {file = "virtualenv-20.14.1.tar.gz", hash = "sha256:ef589a79795589aada0c1c5b319486797c03b67ac3984c48c669c0e4f50df3a5"}, ] +wrapt = [ + {file = "wrapt-1.14.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:1b376b3f4896e7930f1f772ac4b064ac12598d1c38d04907e696cc4d794b43d3"}, + {file = "wrapt-1.14.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:903500616422a40a98a5a3c4ff4ed9d0066f3b4c951fa286018ecdf0750194ef"}, + {file = "wrapt-1.14.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:5a9a0d155deafd9448baff28c08e150d9b24ff010e899311ddd63c45c2445e28"}, + {file = "wrapt-1.14.1-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:ddaea91abf8b0d13443f6dac52e89051a5063c7d014710dcb4d4abb2ff811a59"}, + {file = "wrapt-1.14.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:36f582d0c6bc99d5f39cd3ac2a9062e57f3cf606ade29a0a0d6b323462f4dd87"}, + {file = "wrapt-1.14.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:7ef58fb89674095bfc57c4069e95d7a31cfdc0939e2a579882ac7d55aadfd2a1"}, + {file = "wrapt-1.14.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:e2f83e18fe2f4c9e7db597e988f72712c0c3676d337d8b101f6758107c42425b"}, + {file = "wrapt-1.14.1-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:ee2b1b1769f6707a8a445162ea16dddf74285c3964f605877a20e38545c3c462"}, + {file = "wrapt-1.14.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:833b58d5d0b7e5b9832869f039203389ac7cbf01765639c7309fd50ef619e0b1"}, + {file = "wrapt-1.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:80bb5c256f1415f747011dc3604b59bc1f91c6e7150bd7db03b19170ee06b320"}, + {file = "wrapt-1.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07f7a7d0f388028b2df1d916e94bbb40624c59b48ecc6cbc232546706fac74c2"}, + {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02b41b633c6261feff8ddd8d11c711df6842aba629fdd3da10249a53211a72c4"}, + {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2fe803deacd09a233e4762a1adcea5db5d31e6be577a43352936179d14d90069"}, + {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:257fd78c513e0fb5cdbe058c27a0624c9884e735bbd131935fd49e9fe719d310"}, + {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4fcc4649dc762cddacd193e6b55bc02edca674067f5f98166d7713b193932b7f"}, + {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:11871514607b15cfeb87c547a49bca19fde402f32e2b1c24a632506c0a756656"}, + {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8ad85f7f4e20964db4daadcab70b47ab05c7c1cf2a7c1e51087bfaa83831854c"}, + {file = "wrapt-1.14.1-cp310-cp310-win32.whl", hash = "sha256:a9a52172be0b5aae932bef82a79ec0a0ce87288c7d132946d645eba03f0ad8a8"}, + {file = "wrapt-1.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:6d323e1554b3d22cfc03cd3243b5bb815a51f5249fdcbb86fda4bf62bab9e164"}, + {file = "wrapt-1.14.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:43ca3bbbe97af00f49efb06e352eae40434ca9d915906f77def219b88e85d907"}, + {file = "wrapt-1.14.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:6b1a564e6cb69922c7fe3a678b9f9a3c54e72b469875aa8018f18b4d1dd1adf3"}, + {file = "wrapt-1.14.1-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:00b6d4ea20a906c0ca56d84f93065b398ab74b927a7a3dbd470f6fc503f95dc3"}, + {file = "wrapt-1.14.1-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:a85d2b46be66a71bedde836d9e41859879cc54a2a04fad1191eb50c2066f6e9d"}, + {file = "wrapt-1.14.1-cp35-cp35m-win32.whl", hash = "sha256:dbcda74c67263139358f4d188ae5faae95c30929281bc6866d00573783c422b7"}, + {file = "wrapt-1.14.1-cp35-cp35m-win_amd64.whl", hash = "sha256:b21bb4c09ffabfa0e85e3a6b623e19b80e7acd709b9f91452b8297ace2a8ab00"}, + {file = "wrapt-1.14.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:9e0fd32e0148dd5dea6af5fee42beb949098564cc23211a88d799e434255a1f4"}, + {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9736af4641846491aedb3c3f56b9bc5568d92b0692303b5a305301a95dfd38b1"}, + {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b02d65b9ccf0ef6c34cba6cf5bf2aab1bb2f49c6090bafeecc9cd81ad4ea1c1"}, + {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21ac0156c4b089b330b7666db40feee30a5d52634cc4560e1905d6529a3897ff"}, + {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:9f3e6f9e05148ff90002b884fbc2a86bd303ae847e472f44ecc06c2cd2fcdb2d"}, + {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:6e743de5e9c3d1b7185870f480587b75b1cb604832e380d64f9504a0535912d1"}, + {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d79d7d5dc8a32b7093e81e97dad755127ff77bcc899e845f41bf71747af0c569"}, + {file = "wrapt-1.14.1-cp36-cp36m-win32.whl", hash = "sha256:81b19725065dcb43df02b37e03278c011a09e49757287dca60c5aecdd5a0b8ed"}, + {file = "wrapt-1.14.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b014c23646a467558be7da3d6b9fa409b2c567d2110599b7cf9a0c5992b3b471"}, + {file = "wrapt-1.14.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:88bd7b6bd70a5b6803c1abf6bca012f7ed963e58c68d76ee20b9d751c74a3248"}, + {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5901a312f4d14c59918c221323068fad0540e34324925c8475263841dbdfe68"}, + {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d77c85fedff92cf788face9bfa3ebaa364448ebb1d765302e9af11bf449ca36d"}, + {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d649d616e5c6a678b26d15ece345354f7c2286acd6db868e65fcc5ff7c24a77"}, + {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7d2872609603cb35ca513d7404a94d6d608fc13211563571117046c9d2bcc3d7"}, + {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:ee6acae74a2b91865910eef5e7de37dc6895ad96fa23603d1d27ea69df545015"}, + {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:2b39d38039a1fdad98c87279b48bc5dce2c0ca0d73483b12cb72aa9609278e8a"}, + {file = "wrapt-1.14.1-cp37-cp37m-win32.whl", hash = "sha256:60db23fa423575eeb65ea430cee741acb7c26a1365d103f7b0f6ec412b893853"}, + {file = "wrapt-1.14.1-cp37-cp37m-win_amd64.whl", hash = "sha256:709fe01086a55cf79d20f741f39325018f4df051ef39fe921b1ebe780a66184c"}, + {file = "wrapt-1.14.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8c0ce1e99116d5ab21355d8ebe53d9460366704ea38ae4d9f6933188f327b456"}, + {file = "wrapt-1.14.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e3fb1677c720409d5f671e39bac6c9e0e422584e5f518bfd50aa4cbbea02433f"}, + {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:642c2e7a804fcf18c222e1060df25fc210b9c58db7c91416fb055897fc27e8cc"}, + {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b7c050ae976e286906dd3f26009e117eb000fb2cf3533398c5ad9ccc86867b1"}, + {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef3f72c9666bba2bab70d2a8b79f2c6d2c1a42a7f7e2b0ec83bb2f9e383950af"}, + {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:01c205616a89d09827986bc4e859bcabd64f5a0662a7fe95e0d359424e0e071b"}, + {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5a0f54ce2c092aaf439813735584b9537cad479575a09892b8352fea5e988dc0"}, + {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2cf71233a0ed05ccdabe209c606fe0bac7379fdcf687f39b944420d2a09fdb57"}, + {file = "wrapt-1.14.1-cp38-cp38-win32.whl", hash = "sha256:aa31fdcc33fef9eb2552cbcbfee7773d5a6792c137b359e82879c101e98584c5"}, + {file = "wrapt-1.14.1-cp38-cp38-win_amd64.whl", hash = "sha256:d1967f46ea8f2db647c786e78d8cc7e4313dbd1b0aca360592d8027b8508e24d"}, + {file = "wrapt-1.14.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3232822c7d98d23895ccc443bbdf57c7412c5a65996c30442ebe6ed3df335383"}, + {file = "wrapt-1.14.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:988635d122aaf2bdcef9e795435662bcd65b02f4f4c1ae37fbee7401c440b3a7"}, + {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cca3c2cdadb362116235fdbd411735de4328c61425b0aa9f872fd76d02c4e86"}, + {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d52a25136894c63de15a35bc0bdc5adb4b0e173b9c0d07a2be9d3ca64a332735"}, + {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40e7bc81c9e2b2734ea4bc1aceb8a8f0ceaac7c5299bc5d69e37c44d9081d43b"}, + {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b9b7a708dd92306328117d8c4b62e2194d00c365f18eff11a9b53c6f923b01e3"}, + {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6a9a25751acb379b466ff6be78a315e2b439d4c94c1e99cb7266d40a537995d3"}, + {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:34aa51c45f28ba7f12accd624225e2b1e5a3a45206aa191f6f9aac931d9d56fe"}, + {file = "wrapt-1.14.1-cp39-cp39-win32.whl", hash = "sha256:dee0ce50c6a2dd9056c20db781e9c1cfd33e77d2d569f5d1d9321c641bb903d5"}, + {file = "wrapt-1.14.1-cp39-cp39-win_amd64.whl", hash = "sha256:dee60e1de1898bde3b238f18340eec6148986da0455d8ba7848d50470a7a32fb"}, + {file = "wrapt-1.14.1.tar.gz", hash = "sha256:380a85cf89e0e69b7cfbe2ea9f765f004ff419f34194018a6827ac0e3edfed4d"}, +] zipp = [ {file = "zipp-3.8.0-py3-none-any.whl", hash = "sha256:c4f6e5bbf48e74f7a38e7cc5b0480ff42b0ae5178957d564d18932525d5cf099"}, {file = "zipp-3.8.0.tar.gz", hash = "sha256:56bf8aadb83c24db6c4b577e13de374ccfb67da2078beba1d037c17980bf43ad"}, diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index 4537f6e..cc85511 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -127,7 +127,7 @@ def get_episode(self, id_: int, series: bool = False) -> dict[str, Any]: return self.assert_return( f"episode{'' if series else f'/{id_}'}", self.ver_uri, - dict, + list if series else dict, params={"seriesId": id_} if series else None, ) diff --git a/pyproject.toml b/pyproject.toml index bd81d19..aa4bd55 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,6 +41,11 @@ Sphinx = "^4.3.2" sphinx-argparse = "^0.3.1" sphinx-autobuild = "^2021.3.14" sphinx-rtd-theme = "^1.0.0" +pytest = "^7.1.2" +pytest-cov = "^3.0.0" +pylint = "^2.14.3" +responses = "^0.21.0" +pytest-responses = "^0.5.0" [tool.black] line-length = 88 diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..4fdee49 --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1,13 @@ +import pathlib + +API_TOKEN = "1234567890abcdef1234567890abcdef" +HOST_URL = "https://127.0.0.1" + + +def load_fixture(filename) -> str: + """Load a fixture.""" + return ( + pathlib.Path(__file__) + .parent.joinpath("fixtures", filename) + .read_text(encoding="utf8") + ) diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..2688659 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,10 @@ +import pytest + +from pyarr.sonarr import SonarrAPI + +from tests import API_TOKEN, HOST_URL + + +@pytest.fixture() +def sonarr_client(): + yield SonarrAPI(f"{HOST_URL}:8989", API_TOKEN) diff --git a/tests/fixtures/sonarr/episode.json b/tests/fixtures/sonarr/episode.json new file mode 100644 index 0000000..7bd270a --- /dev/null +++ b/tests/fixtures/sonarr/episode.json @@ -0,0 +1,105 @@ +{ + "seriesId": 0, + "episodeFileId": 0, + "seasonNumber": 0, + "episodeNumber": 0, + "title": "string", + "airDate": "2009-09-17", + "airDateUtc": "2009-09-18T02:00:00Z", + "overview": "string", + "episodeFile": { + "seriesId": 0, + "seasonNumber": 0, + "relativePath": "string", + "path": "string", + "size": 0, + "dateAdded": "2019-06-13T09:08:03.775081Z", + "releaseGroup": "string", + "language": { + "id": 0, + "name": "string" + }, + "quality": { + "quality": { + "id": 0, + "name": "string", + "source": "string", + "resolution": 0 + }, + "revision": { + "version": 0, + "real": 0, + "isRepack": false + } + }, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 0.0, + "audioCodec": "string", + "audioLanguages": "string", + "audioStreamCount": 0, + "videoBitDepth": 0, + "videoBitrate": 0, + "videoCodec": "string", + "videoFps": 0.0, + "resolution": "string", + "runTime": "00:00", + "scanType": "string", + "subtitles": "string" + }, + "qualityCutoffNotMet": false, + "languageCutoffNotMet": false, + "id": 0 + }, + "hasFile": true, + "monitored": true, + "absoluteEpisodeNumber": 0, + "unverifiedSceneNumbering": false, + "series": { + "title": "string", + "sortTitle": "string", + "status": "string", + "ended": true, + "overview": "string", + "network": "string", + "airTime": "00:00", + "images": [ + { + "coverType": "poster", + "url": "string" + } + ], + "seasons": [ + { + "seasonNumber": 0, + "monitored": false + } + ], + "year": 0, + "path": "string", + "qualityProfileId": 0, + "languageProfileId": 0, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 0, + "tvdbId": 0, + "tvRageId": 0, + "tvMazeId": 0, + "firstAired": "2017-04-05T00:00:00Z", + "seriesType": "string", + "cleanTitle": "string", + "imdbId": "string", + "titleSlug": "0", + "certification": "string", + "genres": ["string"], + "tags": [0], + "added": "2019-05-19T05:33:42.24392Z", + "ratings": { + "votes": 0, + "value": 0.0 + }, + "id": 0 + }, + "id": 0 + } diff --git a/tests/fixtures/sonarr/series.json b/tests/fixtures/sonarr/series.json new file mode 100644 index 0000000..1734dfe --- /dev/null +++ b/tests/fixtures/sonarr/series.json @@ -0,0 +1,34 @@ +[ + { + "seriesId": 1, + "tvdbId": 1234567, + "episodeFileId": 1, + "seasonNumber": 1, + "episodeNumber": 1, + "title": "string", + "airDate": "2015-06-21", + "airDateUtc": "2015-06-22T02:30:00Z", + "overview": "string", + "hasFile": true, + "monitored": true, + "absoluteEpisodeNumber": 1, + "unverifiedSceneNumbering": false, + "id": 1 + }, + { + "seriesId": 1, + "tvdbId": 1234568, + "episodeFileId": 2, + "seasonNumber": 1, + "episodeNumber": 2, + "title": "string", + "airDate": "2015-06-21", + "airDateUtc": "2015-06-22T02:30:00Z", + "overview": "string", + "hasFile": true, + "monitored": true, + "absoluteEpisodeNumber": 1, + "unverifiedSceneNumbering": false, + "id": 1 + } +] diff --git a/tests/fixtures/sonarr/updated_episode.json b/tests/fixtures/sonarr/updated_episode.json new file mode 100644 index 0000000..a3a583f --- /dev/null +++ b/tests/fixtures/sonarr/updated_episode.json @@ -0,0 +1,16 @@ +{ + "seriesId": 1, + "tvdbId": 1234567, + "episodeFileId": 1, + "seasonNumber": 1, + "episodeNumber": 1, + "title": "string", + "airDate": "2015-06-21", + "airDateUtc": "2015-06-22T02:30:00Z", + "overview": "string", + "hasFile": true, + "monitored": true, + "absoluteEpisodeNumber": 1, + "unverifiedSceneNumbering": false, + "id": 1 +} diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py new file mode 100644 index 0000000..9d3203c --- /dev/null +++ b/tests/test_sonarr.py @@ -0,0 +1,84 @@ +from warnings import warn + +import pytest + +from tests import load_fixture + + +@pytest.mark.usefixtures +def test_get_episode(responses, sonarr_client): + """Test getting episode""" + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/episode/0", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/episode.json"), + status=200, + ) + data = sonarr_client.get_episode(0) + + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/episode?seriesId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/series.json"), + status=200, + ) + data = sonarr_client.get_episode(1, True) + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_get_episodes_by_series_id(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/episode?seriesId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/series.json"), + status=200, + ) + data = sonarr_client.get_episodes_by_series_id(1) + with pytest.warns(DeprecationWarning): + warn( + "This method is deprecated and will be removed in a future release. Please use get_episode()", + DeprecationWarning, + stacklevel=2, + ) + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_get_episode_by_episode_id(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/episode/0", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/episode.json"), + status=200, + ) + data = sonarr_client.get_episode_by_episode_id(0) + with pytest.warns(DeprecationWarning): + warn( + "This method is deprecated and will be removed in a future release. Please use get_episode()", + DeprecationWarning, + stacklevel=2, + ) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_upd_episode(responses, sonarr_client): + responses.add( + responses.PUT, + "https://127.0.0.1:8989/api/v3/episode/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/updated_episode.json"), + status=200, + ) + payload = {"monitored": True} + data = sonarr_client.upd_episode(1, payload) + + assert isinstance(data, dict) + assert data["monitored"] == True From f96b51cf3b6c2107d079874141ddad7f88109279 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Wed, 29 Jun 2022 10:35:13 +0000 Subject: [PATCH 02/53] fix: added more tests and resolved assertion issues --- pyarr/base.py | 9 +- pyarr/models/common.py | 1 + pyarr/readarr.py | 3 +- pyarr/sonarr.py | 40 +- tests/fixtures/common/qualityprofile.json | 253 ++++ tests/fixtures/common/qualityprofileall.json | 1014 +++++++++++++++++ tests/fixtures/sonarr/delete.json | 1 + .../{series.json => episode_series.json} | 0 ...dated_episode.json => episode_update.json} | 0 tests/fixtures/sonarr/episodefile.json | 44 + tests/fixtures/sonarr/episodefile_series.json | 88 ++ tests/fixtures/sonarr/wanted_missing.json | 24 + .../sonarr/wanted_missing_extended.json | 74 ++ tests/test_sonarr.py | 150 ++- 14 files changed, 1660 insertions(+), 41 deletions(-) create mode 100644 tests/fixtures/common/qualityprofile.json create mode 100644 tests/fixtures/common/qualityprofileall.json create mode 100644 tests/fixtures/sonarr/delete.json rename tests/fixtures/sonarr/{series.json => episode_series.json} (100%) rename tests/fixtures/sonarr/{updated_episode.json => episode_update.json} (100%) create mode 100644 tests/fixtures/sonarr/episodefile.json create mode 100644 tests/fixtures/sonarr/episodefile_series.json create mode 100644 tests/fixtures/sonarr/wanted_missing.json create mode 100644 tests/fixtures/sonarr/wanted_missing_extended.json diff --git a/pyarr/base.py b/pyarr/base.py index 52cbbe7..71e142e 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -289,7 +289,9 @@ def del_blocklist_bulk( # PROFILES # GET /qualityprofile/{id} - def get_quality_profile(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_quality_profile( + self, id_: Optional[int] = None + ) -> Union[list[dict[str, Any]], dict[Any, Any]]: """Gets all quality profiles or specific one with id_ Args: @@ -298,8 +300,9 @@ def get_quality_profile(self, id_: Optional[int] = None) -> list[dict[str, Any]] Returns: list[dict[str, Any]]: List of dictionaries with items """ - path = f"qualityprofile/{id_}" if id_ else "qualityprofile" - return self.assert_return(path, self.ver_uri, list) + + path = f"qualityprofile{f'/{id_}' if id_ else ''}" + return self.assert_return(path, self.ver_uri, dict if id_ else list) # PUT /qualityprofile/{id} def upd_quality_profile(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: diff --git a/pyarr/models/common.py b/pyarr/models/common.py index 1a6b167..42e105b 100644 --- a/pyarr/models/common.py +++ b/pyarr/models/common.py @@ -5,4 +5,5 @@ class PyarrSortDirection(str, Enum): """Pyarr sort direction""" ASC = "ascending" + DEFAULT = "default" DESC = "descending" diff --git a/pyarr/readarr.py b/pyarr/readarr.py index 115cf01..90e673a 100644 --- a/pyarr/readarr.py +++ b/pyarr/readarr.py @@ -61,7 +61,8 @@ def _book_json( """ if quality_profile_id is None: try: - quality_profile_id = self.get_quality_profile()[0]["id"] + quality_profiles = self.get_quality_profile()[0]["id"] + quality_profile_id = quality_profiles[0]["id"] except IndexError as exception: raise PyarrMissingProfile( "There is no Quality Profile setup" diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index cc85511..98cf98c 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -206,20 +206,31 @@ def get_episode_files_by_series_id(self, id_: int) -> list[dict[str, Any]]: Returns: list[dict[str, Any]]: List of dictionaries with items """ + warn( + "This method is deprecated and will be removed in a future release. Please use get_episode_file()", + DeprecationWarning, + stacklevel=2, + ) params = {"seriesId": id_} return self.assert_return("episodefile", self.ver_uri, list, params) # GET /episodefile/{id} - def get_episode_file(self, id_: int) -> list[dict[str, Any]]: + def get_episode_file(self, id_: int, series: bool = False) -> dict[str, Any]: """Returns episode file information for specified id Args: id_ (int): Database id of episode file + series (bool, optional): Set to true if the ID is for a Series. Defaults to false. Returns: - list[dict[str, Any]]: List of dictionaries with items + dict[str, Any]: Dictionary with data """ - return self.assert_return(f"episodefile/{id_}", self.ver_uri, list) + return self.assert_return( + f"episodefile{'' if series else f'/{id_}'}", + self.ver_uri, + list if series else dict, + params={"seriesId": id_} if series else None, + ) # DELETE /episodefile/{id} def del_episode_file( @@ -268,16 +279,16 @@ def get_wanted( sort_key: SonarrSortKeys = SonarrSortKeys.AIR_DATE_UTC, page: int = PAGE, page_size: int = PAGE_SIZE, - sort_dir: PyarrSortDirection = PyarrSortDirection.ASC, + sort_direction: PyarrSortDirection = PyarrSortDirection.DEFAULT, include_series: bool = False, ) -> dict[str, Any]: """Gets missing episode (episodes without files) Args: - sort_key (SonarrSortKeys, optional): series.titke or airDateUtc. Defaults to SonarrSortKeys.AIR_DATE_UTC. + sort_key (SonarrSortKeys, optional): series.title or airDateUtc. Defaults to SonarrSortKeys.AIR_DATE_UTC. page (int, optional): Page number to return. Defaults to 1. page_size (int, optional): Number of items per page. Defaults to 10. - sort_dir (PyarrSortDirection, optional): Direction to sort the items. Defaults to PyarrSortDirection.ASC. + sort_direction (PyarrSortDirection, optional): Direction to sort the items. Defaults to PyarrSortDirection.DEFAULT. include_series (bool, optional): Include the whole series. Defaults to False Returns: @@ -287,27 +298,12 @@ def get_wanted( "sortKey": sort_key, "page": page, "pageSize": page_size, - "sortDir": sort_dir, + "sortDirection": sort_direction, } if include_series: params["includeSeries"] = True return self.assert_return("wanted/missing", self.ver_uri, dict, params) - # PROFILES - - # GET /profile/{id} - def get_quality_profile(self, id_: Optional[int] = None) -> list[dict[str, Any]]: - """Gets all quality profiles or specific one with id_ - - Args: - id_ (int): quality profile id from database - - Returns: - list[dict[str, Any]]: List of dictionaries with items - """ - path = f"profile/{id_}" if id_ else "profile" - return self.assert_return(path, self.ver_uri, list) - ## QUEUE # GET /queue diff --git a/tests/fixtures/common/qualityprofile.json b/tests/fixtures/common/qualityprofile.json new file mode 100644 index 0000000..6dbc752 --- /dev/null +++ b/tests/fixtures/common/qualityprofile.json @@ -0,0 +1,253 @@ +{ + "name": "Any", + "upgradeAllowed": false, + "cutoff": 4, + "items": [ + { + "quality": { + "id": 0, + "name": "Unknown", + "source": "unknown", + "resolution": 0 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 1, + "name": "SDTV", + "source": "television", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 480p", + "items": [ + { + "quality": { + "id": 12, + "name": "WEBRip-480p", + "source": "webRip", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 8, + "name": "WEBDL-480p", + "source": "web", + "resolution": 480 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1000 + }, + { + "name": "DVD", + "items": [ + { + "quality": { + "id": 2, + "name": "DVD", + "source": "dvd", + "resolution": 480 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 13, + "name": "Bluray-480p", + "source": "bluray", + "resolution": 480 + }, + "items": [], + "allowed": true + } + ], + "allowed": true, + "id": 1001 + }, + { + "quality": { + "id": 4, + "name": "HDTV-720p", + "source": "television", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 9, + "name": "HDTV-1080p", + "source": "television", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 10, + "name": "Raw-HD", + "source": "televisionRaw", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 720p", + "items": [ + { + "quality": { + "id": 14, + "name": "WEBRip-720p", + "source": "webRip", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 5, + "name": "WEBDL-720p", + "source": "web", + "resolution": 720 + }, + "items": [], + "allowed": true + } + ], + "allowed": true, + "id": 1002 + }, + { + "quality": { + "id": 6, + "name": "Bluray-720p", + "source": "bluray", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "name": "WEB 1080p", + "items": [ + { + "quality": { + "id": 15, + "name": "WEBRip-1080p", + "source": "webRip", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "web", + "resolution": 1080 + }, + "items": [], + "allowed": true + } + ], + "allowed": true, + "id": 1003 + }, + { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 20, + "name": "Bluray-1080p Remux", + "source": "blurayRaw", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 16, + "name": "HDTV-2160p", + "source": "television", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 2160p", + "items": [ + { + "quality": { + "id": 17, + "name": "WEBRip-2160p", + "source": "webRip", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 18, + "name": "WEBDL-2160p", + "source": "web", + "resolution": 2160 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1004 + }, + { + "quality": { + "id": 19, + "name": "Bluray-2160p", + "source": "bluray", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 21, + "name": "Bluray-2160p Remux", + "source": "blurayRaw", + "resolution": 2160 + }, + "items": [], + "allowed": false + } + ], + "id": 1 +} diff --git a/tests/fixtures/common/qualityprofileall.json b/tests/fixtures/common/qualityprofileall.json new file mode 100644 index 0000000..5f3d2fb --- /dev/null +++ b/tests/fixtures/common/qualityprofileall.json @@ -0,0 +1,1014 @@ +[ + { + "name": "Any", + "upgradeAllowed": false, + "cutoff": 4, + "items": [ + { + "quality": { + "id": 0, + "name": "Unknown", + "source": "unknown", + "resolution": 0 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 1, + "name": "SDTV", + "source": "television", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 480p", + "items": [ + { + "quality": { + "id": 12, + "name": "WEBRip-480p", + "source": "webRip", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 8, + "name": "WEBDL-480p", + "source": "web", + "resolution": 480 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1000 + }, + { + "name": "DVD", + "items": [ + { + "quality": { + "id": 2, + "name": "DVD", + "source": "dvd", + "resolution": 480 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 13, + "name": "Bluray-480p", + "source": "bluray", + "resolution": 480 + }, + "items": [], + "allowed": true + } + ], + "allowed": true, + "id": 1001 + }, + { + "quality": { + "id": 4, + "name": "HDTV-720p", + "source": "television", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 9, + "name": "HDTV-1080p", + "source": "television", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 10, + "name": "Raw-HD", + "source": "televisionRaw", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 720p", + "items": [ + { + "quality": { + "id": 14, + "name": "WEBRip-720p", + "source": "webRip", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 5, + "name": "WEBDL-720p", + "source": "web", + "resolution": 720 + }, + "items": [], + "allowed": true + } + ], + "allowed": true, + "id": 1002 + }, + { + "quality": { + "id": 6, + "name": "Bluray-720p", + "source": "bluray", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "name": "WEB 1080p", + "items": [ + { + "quality": { + "id": 15, + "name": "WEBRip-1080p", + "source": "webRip", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "web", + "resolution": 1080 + }, + "items": [], + "allowed": true + } + ], + "allowed": true, + "id": 1003 + }, + { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 20, + "name": "Bluray-1080p Remux", + "source": "blurayRaw", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 16, + "name": "HDTV-2160p", + "source": "television", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 2160p", + "items": [ + { + "quality": { + "id": 17, + "name": "WEBRip-2160p", + "source": "webRip", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 18, + "name": "WEBDL-2160p", + "source": "web", + "resolution": 2160 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1004 + }, + { + "quality": { + "id": 19, + "name": "Bluray-2160p", + "source": "bluray", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 21, + "name": "Bluray-2160p Remux", + "source": "blurayRaw", + "resolution": 2160 + }, + "items": [], + "allowed": false + } + ], + "id": 1 + }, + { + "name": "HD-720p", + "upgradeAllowed": true, + "cutoff": 4, + "items": [ + { + "quality": { + "id": 0, + "name": "Unknown", + "source": "unknown", + "resolution": 0 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 1, + "name": "SDTV", + "source": "television", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 480p", + "items": [ + { + "quality": { + "id": 12, + "name": "WEBRip-480p", + "source": "webRip", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 8, + "name": "WEBDL-480p", + "source": "web", + "resolution": 480 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1000 + }, + { + "name": "DVD", + "items": [ + { + "quality": { + "id": 2, + "name": "DVD", + "source": "dvd", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 13, + "name": "Bluray-480p", + "source": "bluray", + "resolution": 480 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1001 + }, + { + "quality": { + "id": 4, + "name": "HDTV-720p", + "source": "television", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 9, + "name": "HDTV-1080p", + "source": "television", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 10, + "name": "Raw-HD", + "source": "televisionRaw", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 720p", + "items": [ + { + "quality": { + "id": 14, + "name": "WEBRip-720p", + "source": "webRip", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 5, + "name": "WEBDL-720p", + "source": "web", + "resolution": 720 + }, + "items": [], + "allowed": true + } + ], + "allowed": true, + "id": 1002 + }, + { + "quality": { + "id": 6, + "name": "Bluray-720p", + "source": "bluray", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "name": "WEB 1080p", + "items": [ + { + "quality": { + "id": 15, + "name": "WEBRip-1080p", + "source": "webRip", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "web", + "resolution": 1080 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1003 + }, + { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 20, + "name": "Bluray-1080p Remux", + "source": "blurayRaw", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 16, + "name": "HDTV-2160p", + "source": "television", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 2160p", + "items": [ + { + "quality": { + "id": 17, + "name": "WEBRip-2160p", + "source": "webRip", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 18, + "name": "WEBDL-2160p", + "source": "web", + "resolution": 2160 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1004 + }, + { + "quality": { + "id": 19, + "name": "Bluray-2160p", + "source": "bluray", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 21, + "name": "Bluray-2160p Remux", + "source": "blurayRaw", + "resolution": 2160 + }, + "items": [], + "allowed": false + } + ], + "id": 3 + }, + { + "name": "HD-1080p", + "upgradeAllowed": true, + "cutoff": 9, + "items": [ + { + "quality": { + "id": 0, + "name": "Unknown", + "source": "unknown", + "resolution": 0 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 1, + "name": "SDTV", + "source": "television", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 480p", + "items": [ + { + "quality": { + "id": 12, + "name": "WEBRip-480p", + "source": "webRip", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 8, + "name": "WEBDL-480p", + "source": "web", + "resolution": 480 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1000 + }, + { + "name": "DVD", + "items": [ + { + "quality": { + "id": 2, + "name": "DVD", + "source": "dvd", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 13, + "name": "Bluray-480p", + "source": "bluray", + "resolution": 480 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1001 + }, + { + "quality": { + "id": 4, + "name": "HDTV-720p", + "source": "television", + "resolution": 720 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 9, + "name": "HDTV-1080p", + "source": "television", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 10, + "name": "Raw-HD", + "source": "televisionRaw", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 720p", + "items": [ + { + "quality": { + "id": 14, + "name": "WEBRip-720p", + "source": "webRip", + "resolution": 720 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 5, + "name": "WEBDL-720p", + "source": "web", + "resolution": 720 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1002 + }, + { + "quality": { + "id": 6, + "name": "Bluray-720p", + "source": "bluray", + "resolution": 720 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 1080p", + "items": [ + { + "quality": { + "id": 15, + "name": "WEBRip-1080p", + "source": "webRip", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "web", + "resolution": 1080 + }, + "items": [], + "allowed": true + } + ], + "allowed": true, + "id": 1003 + }, + { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 20, + "name": "Bluray-1080p Remux", + "source": "blurayRaw", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 16, + "name": "HDTV-2160p", + "source": "television", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 2160p", + "items": [ + { + "quality": { + "id": 17, + "name": "WEBRip-2160p", + "source": "webRip", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 18, + "name": "WEBDL-2160p", + "source": "web", + "resolution": 2160 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1004 + }, + { + "quality": { + "id": 19, + "name": "Bluray-2160p", + "source": "bluray", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 21, + "name": "Bluray-2160p Remux", + "source": "blurayRaw", + "resolution": 2160 + }, + "items": [], + "allowed": false + } + ], + "id": 4 + }, + { + "name": "HD - All", + "upgradeAllowed": true, + "cutoff": 4, + "items": [ + { + "quality": { + "id": 0, + "name": "Unknown", + "source": "unknown", + "resolution": 0 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 1, + "name": "SDTV", + "source": "television", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 480p", + "items": [ + { + "quality": { + "id": 12, + "name": "WEBRip-480p", + "source": "webRip", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 8, + "name": "WEBDL-480p", + "source": "web", + "resolution": 480 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1000 + }, + { + "name": "DVD", + "items": [ + { + "quality": { + "id": 2, + "name": "DVD", + "source": "dvd", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 13, + "name": "Bluray-480p", + "source": "bluray", + "resolution": 480 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1001 + }, + { + "quality": { + "id": 4, + "name": "HDTV-720p", + "source": "television", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 9, + "name": "HDTV-1080p", + "source": "television", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 10, + "name": "Raw-HD", + "source": "televisionRaw", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 720p", + "items": [ + { + "quality": { + "id": 14, + "name": "WEBRip-720p", + "source": "webRip", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 5, + "name": "WEBDL-720p", + "source": "web", + "resolution": 720 + }, + "items": [], + "allowed": true + } + ], + "allowed": true, + "id": 1002 + }, + { + "quality": { + "id": 6, + "name": "Bluray-720p", + "source": "bluray", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "name": "WEB 1080p", + "items": [ + { + "quality": { + "id": 15, + "name": "WEBRip-1080p", + "source": "webRip", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "web", + "resolution": 1080 + }, + "items": [], + "allowed": true + } + ], + "allowed": true, + "id": 1003 + }, + { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 20, + "name": "Bluray-1080p Remux", + "source": "blurayRaw", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 16, + "name": "HDTV-2160p", + "source": "television", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 2160p", + "items": [ + { + "quality": { + "id": 17, + "name": "WEBRip-2160p", + "source": "webRip", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 18, + "name": "WEBDL-2160p", + "source": "web", + "resolution": 2160 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1004 + }, + { + "quality": { + "id": 19, + "name": "Bluray-2160p", + "source": "bluray", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 21, + "name": "Bluray-2160p Remux", + "source": "blurayRaw", + "resolution": 2160 + }, + "items": [], + "allowed": false + } + ], + "id": 6 + } +] diff --git a/tests/fixtures/sonarr/delete.json b/tests/fixtures/sonarr/delete.json new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/tests/fixtures/sonarr/delete.json @@ -0,0 +1 @@ +{} diff --git a/tests/fixtures/sonarr/series.json b/tests/fixtures/sonarr/episode_series.json similarity index 100% rename from tests/fixtures/sonarr/series.json rename to tests/fixtures/sonarr/episode_series.json diff --git a/tests/fixtures/sonarr/updated_episode.json b/tests/fixtures/sonarr/episode_update.json similarity index 100% rename from tests/fixtures/sonarr/updated_episode.json rename to tests/fixtures/sonarr/episode_update.json diff --git a/tests/fixtures/sonarr/episodefile.json b/tests/fixtures/sonarr/episodefile.json new file mode 100644 index 0000000..88c14f2 --- /dev/null +++ b/tests/fixtures/sonarr/episodefile.json @@ -0,0 +1,44 @@ +{ + "seriesId": 0, + "seasonNumber": 0, + "relativePath": "string", + "path": "string", + "size": 0, + "dateAdded": "2019-05-19T05:33:25.295709Z", + "releaseGroup": "string", + "language": { + "id": 0, + "name": "string" + }, + "quality": { + "quality": { + "id": 0, + "name": "string", + "source": "string", + "resolution": 0 + }, + "revision": { + "version": 0, + "real": 0, + "isRepack": false + } + }, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 0.0, + "audioCodec": "string", + "audioLanguages": "string", + "audioStreamCount": 0, + "videoBitDepth": 0, + "videoBitrate": 0, + "videoCodec": "string", + "videoFps": 0.0, + "resolution": "string", + "runTime": "00:00", + "scanType": "string", + "subtitles": "string" + }, + "qualityCutoffNotMet": true, + "languageCutoffNotMet": false, + "id": 0 +} diff --git a/tests/fixtures/sonarr/episodefile_series.json b/tests/fixtures/sonarr/episodefile_series.json new file mode 100644 index 0000000..2c16dbf --- /dev/null +++ b/tests/fixtures/sonarr/episodefile_series.json @@ -0,0 +1,88 @@ +[ + { + "seriesId": 1, + "seasonNumber": 1, + "relativePath": "file.mkv", + "path": "/tv/folder/file.mkv", + "size": 1844044894, + "dateAdded": "2017-01-16T21:09:06.070997Z", + "language": { + "id": 1, + "name": "English" + }, + "quality": { + "quality": { + "id": 4, + "name": "HDTV-720p", + "source": "television", + "resolution": 720 + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "mediaInfo": { + "audioBitrate": 384000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "English", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 7381526, + "videoCodec": "x264", + "videoFps": 23.976, + "resolution": "1280x720", + "runTime": "31:01", + "scanType": "Progressive", + "subtitles": "" + }, + "qualityCutoffNotMet": false, + "languageCutoffNotMet": false, + "id": 1 + }, + { + "seriesId": 1, + "seasonNumber": 1, + "relativePath": "file.mkv", + "path": "/tv/folder/file.mkv", + "size": 1844044894, + "dateAdded": "2017-01-16T21:09:06.070997Z", + "language": { + "id": 1, + "name": "English" + }, + "quality": { + "quality": { + "id": 4, + "name": "HDTV-720p", + "source": "television", + "resolution": 720 + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "mediaInfo": { + "audioBitrate": 384000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "English", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 7381526, + "videoCodec": "x264", + "videoFps": 23.976, + "resolution": "1280x720", + "runTime": "31:01", + "scanType": "Progressive", + "subtitles": "" + }, + "qualityCutoffNotMet": false, + "languageCutoffNotMet": false, + "id": 2 + } +] diff --git a/tests/fixtures/sonarr/wanted_missing.json b/tests/fixtures/sonarr/wanted_missing.json new file mode 100644 index 0000000..8936d96 --- /dev/null +++ b/tests/fixtures/sonarr/wanted_missing.json @@ -0,0 +1,24 @@ +{ + "page": 1, + "pageSize": 10, + "sortKey": "airDateUtc", + "sortDirection": "default", + "totalRecords": 1, + "records": [ + { + "seriesId": 0, + "episodeFileId": 0, + "seasonNumber": 0, + "episodeNumber": 0, + "title": "string", + "airDate": "2010-03-07", + "airDateUtc": "2010-03-07T05:00:00Z", + "overview": "string", + "hasFile": false, + "monitored": true, + "absoluteEpisodeNumber": 0, + "unverifiedSceneNumbering": false, + "id": 0 + } + ] +} diff --git a/tests/fixtures/sonarr/wanted_missing_extended.json b/tests/fixtures/sonarr/wanted_missing_extended.json new file mode 100644 index 0000000..03b7815 --- /dev/null +++ b/tests/fixtures/sonarr/wanted_missing_extended.json @@ -0,0 +1,74 @@ +{ + "page": 1, + "pageSize": 10, + "sortKey": "airDateUtc", + "sortDirection": "default", + "totalRecords": 1, + "records": [ + { + "seriesId": 0, + "episodeFileId": 0, + "seasonNumber": 0, + "episodeNumber": 0, + "title": "string", + "airDate": "2010-03-07", + "airDateUtc": "2010-03-07T05:00:00Z", + "overview": "string", + "hasFile": false, + "monitored": true, + "absoluteEpisodeNumber": 0, + "unverifiedSceneNumbering": false, + "series": { + "title": "string", + "sortTitle": "string", + "status": "string", + "ended": true, + "overview": "string", + "network": "string", + "airTime": "00:00", + "images": [ + { + "coverType": "poster", + "url": "string" + } + ], + "seasons": [ + { + "seasonNumber": 0, + "monitored": false + } + ], + "year": 0, + "path": "string", + "qualityProfileId": 0, + "languageProfileId": 0, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 0, + "tvdbId": 0, + "tvRageId": 0, + "tvMazeId": 0, + "firstAired": "2017-04-05T00:00:00Z", + "seriesType": "string", + "cleanTitle": "string", + "imdbId": "string", + "titleSlug": "0", + "certification": "string", + "genres": [ + "string" + ], + "tags": [ + 0 + ], + "added": "2019-05-19T05:33:42.24392Z", + "ratings": { + "votes": 0, + "value": 0.0 + }, + "id": 0 + }, + "id": 0 + } + ] +} diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index 9d3203c..243cf05 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -2,6 +2,9 @@ import pytest +from pyarr.models.common import PyarrSortDirection +from pyarr.models.sonarr import SonarrSortKeys + from tests import load_fixture @@ -23,7 +26,7 @@ def test_get_episode(responses, sonarr_client): responses.GET, "https://127.0.0.1:8989/api/v3/episode?seriesId=1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/series.json"), + body=load_fixture("sonarr/episode_series.json"), status=200, ) data = sonarr_client.get_episode(1, True) @@ -36,16 +39,11 @@ def test_get_episodes_by_series_id(responses, sonarr_client): responses.GET, "https://127.0.0.1:8989/api/v3/episode?seriesId=1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/series.json"), + body=load_fixture("sonarr/episode_series.json"), status=200, ) data = sonarr_client.get_episodes_by_series_id(1) - with pytest.warns(DeprecationWarning): - warn( - "This method is deprecated and will be removed in a future release. Please use get_episode()", - DeprecationWarning, - stacklevel=2, - ) + assert isinstance(data, list) @@ -59,12 +57,7 @@ def test_get_episode_by_episode_id(responses, sonarr_client): status=200, ) data = sonarr_client.get_episode_by_episode_id(0) - with pytest.warns(DeprecationWarning): - warn( - "This method is deprecated and will be removed in a future release. Please use get_episode()", - DeprecationWarning, - stacklevel=2, - ) + assert isinstance(data, dict) @@ -74,7 +67,7 @@ def test_upd_episode(responses, sonarr_client): responses.PUT, "https://127.0.0.1:8989/api/v3/episode/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/updated_episode.json"), + body=load_fixture("sonarr/episode_update.json"), status=200, ) payload = {"monitored": True} @@ -82,3 +75,130 @@ def test_upd_episode(responses, sonarr_client): assert isinstance(data, dict) assert data["monitored"] == True + + +@pytest.mark.usefixtures +def test_get_episode_files_by_series_id(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/episodefile?seriesId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/episodefile_series.json"), + status=200, + ) + data = sonarr_client.get_episode_files_by_series_id(1) + + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_get_episode_file(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/episodefile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/episodefile.json"), + status=200, + ) + data = sonarr_client.get_episode_file(1) + + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_episode_file(responses, sonarr_client): + """Test getting episode""" + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/episodefile/0", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/episodefile.json"), + status=200, + ) + data = sonarr_client.get_episode_file(0) + + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/episodefile?seriesId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/episodefile_series.json"), + status=200, + ) + data = sonarr_client.get_episode_file(1, True) + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_del_episode_file(responses, sonarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/episodefile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/delete.json"), + status=200, + ) + data = sonarr_client.del_episode_file(1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_wanted(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/wanted/missing?sortKey=airDateUtc&page=1&pageSize=10&sortDirection=default", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/wanted_missing.json"), + status=200, + ) + data = sonarr_client.get_wanted() + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/wanted/missing?sortKey=airDateUtc&page=1&pageSize=10&sortDirection=default&includeSeries=True", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/wanted_missing_extended.json"), + status=200, + ) + data = sonarr_client.get_wanted(include_series=True) + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/wanted/missing?sortKey=series.sortTitle&page=2&pageSize=20&sortDirection=ascending", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/wanted_missing.json"), + status=200, + ) + data = sonarr_client.get_wanted( + sort_key=SonarrSortKeys.SERIES_TITLE, + page=2, + page_size=20, + sort_direction=PyarrSortDirection.ASC, + ) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_quality_profile(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/qualityprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/qualityprofileall.json"), + status=200, + ) + data = sonarr_client.get_quality_profile() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/qualityprofile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/qualityprofile.json"), + status=200, + ) + data = sonarr_client.get_quality_profile(1) + assert isinstance(data, dict) From 18531f4800227e684504541bf94108e90b45c8b2 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Wed, 29 Jun 2022 10:51:48 +0000 Subject: [PATCH 03/53] feat: added tests and sort to get_queue --- pyarr/sonarr.py | 26 ++++++++++++++--- tests/fixtures/sonarr/queue.json | 50 ++++++++++++++++++++++++++++++++ tests/test_sonarr.py | 13 +++++++++ 3 files changed, 85 insertions(+), 4 deletions(-) create mode 100644 tests/fixtures/sonarr/queue.json diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index 98cf98c..334833c 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -295,10 +295,10 @@ def get_wanted( dict[str, Any]: Dictionary with items """ params = { - "sortKey": sort_key, + "sortKey": sort_key.value, "page": page, "pageSize": page_size, - "sortDirection": sort_direction, + "sortDirection": sort_direction.value, } if include_series: params["includeSeries"] = True @@ -307,13 +307,31 @@ def get_wanted( ## QUEUE # GET /queue - def get_queue(self) -> list[dict[str, Any]]: + def get_queue( + self, + page: int = 1, + page_size: int = 20, + sort_dir: PyarrSortDirection = PyarrSortDirection.DEFAULT, + sort_key: SonarrSortKeys = SonarrSortKeys.TIMELEFT, + include_unknown_series_items: bool = False, + include_series: bool = False, + include_episode: bool = False, + ) -> dict[str, Any]: """Gets currently downloading info Returns: list[dict[str, Any]]: List of dictionaries with items """ - return self.assert_return("queue", self.ver_uri, list) + params = { + "page": page, + "pageSize": page_size, + "sortDirection": sort_dir.value, + "sortKey": sort_key.value, + "includeUnknownSeriesItems": str(include_unknown_series_items), + "includeSeries": str(include_series), + "includeEpisode": str(include_episode), + } + return self.assert_return("queue", self.ver_uri, dict, params) ## PARSE diff --git a/tests/fixtures/sonarr/queue.json b/tests/fixtures/sonarr/queue.json new file mode 100644 index 0000000..51fe7bf --- /dev/null +++ b/tests/fixtures/sonarr/queue.json @@ -0,0 +1,50 @@ +{ + "page": 1, + "pageSize": 10, + "sortKey": "timeleft", + "sortDirection": "ascending", + "totalRecords": 1, + "records": [ + { + "seriesId": 0, + "episodeId": 0, + "language": { + "id": 0, + "name": "string" + }, + "quality": { + "quality": { + "id": 0, + "name": "string", + "source": "string", + "resolution": 0 + }, + "revision": { + "version": 0, + "real": 0, + "isRepack": false + } + }, + "size": 0.0, + "title": "string", + "sizeleft": 0.0, + "timeleft": "00:00:00", + "estimatedCompletionTime": "2020-02-09T13:14:14.379532Z", + "status": "string", + "trackedDownloadStatus": "string", + "trackedDownloadState": "string", + "statusMessages": [ + { + "title": "string", + "messages": ["string"] + } + ], + "downloadId": "string", + "protocol": "unknown", + "downloadClient": "string", + "indexer": "string", + "outputPath": "string", + "id": 0 + } + ] + } diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index 243cf05..817a3be 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -202,3 +202,16 @@ def test_get_quality_profile(responses, sonarr_client): ) data = sonarr_client.get_quality_profile(1) assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_queue(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/queue?page=1&pageSize=20&sortDirection=default&sortKey=timeleft&includeUnknownSeriesItems=False&includeSeries=False&includeEpisode=False", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/queue.json"), + status=200, + ) + data = sonarr_client.get_queue() + assert isinstance(data, dict) From dfbf8a4a64a8a361785440e1cbe817a8bae71b75 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Wed, 29 Jun 2022 12:47:07 +0000 Subject: [PATCH 04/53] test: added tests for parse endpoint --- pyarr/exceptions.py | 4 ++ pyarr/sonarr.py | 63 +++++++++++++---- tests/fixtures/sonarr/parse.json | 118 +++++++++++++++++++++++++++++++ tests/test_sonarr.py | 67 +++++++++++++++++- 4 files changed, 239 insertions(+), 13 deletions(-) create mode 100644 tests/fixtures/sonarr/parse.json diff --git a/pyarr/exceptions.py b/pyarr/exceptions.py index b79a547..2f94bc9 100644 --- a/pyarr/exceptions.py +++ b/pyarr/exceptions.py @@ -32,3 +32,7 @@ class PyarrMethodNotAllowed(PyarrError): class PyarrRecordNotFound(PyarrError): """Pyarr record was not found""" + + +class PyarrMissingArgument(PyarrError): + """Missing one of multiple possible arguments""" diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index 334833c..13ba209 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -4,6 +4,8 @@ from requests import Response +from pyarr.exceptions import PyarrMissingArgument + from .base import BaseArrAPI from .const import PAGE, PAGE_SIZE from .models.common import PyarrSortDirection @@ -279,7 +281,7 @@ def get_wanted( sort_key: SonarrSortKeys = SonarrSortKeys.AIR_DATE_UTC, page: int = PAGE, page_size: int = PAGE_SIZE, - sort_direction: PyarrSortDirection = PyarrSortDirection.DEFAULT, + sort_dir: PyarrSortDirection = PyarrSortDirection.DEFAULT, include_series: bool = False, ) -> dict[str, Any]: """Gets missing episode (episodes without files) @@ -288,17 +290,17 @@ def get_wanted( sort_key (SonarrSortKeys, optional): series.title or airDateUtc. Defaults to SonarrSortKeys.AIR_DATE_UTC. page (int, optional): Page number to return. Defaults to 1. page_size (int, optional): Number of items per page. Defaults to 10. - sort_direction (PyarrSortDirection, optional): Direction to sort the items. Defaults to PyarrSortDirection.DEFAULT. + sort_dir (PyarrSortDirection, optional): Direction to sort the items. Defaults to PyarrSortDirection.DEFAULT. include_series (bool, optional): Include the whole series. Defaults to False Returns: dict[str, Any]: Dictionary with items """ params = { - "sortKey": sort_key.value, + "sortKey": sort_key, "page": page, "pageSize": page_size, - "sortDirection": sort_direction.value, + "sortDirection": sort_dir, } if include_series: params["includeSeries"] = True @@ -325,8 +327,8 @@ def get_queue( params = { "page": page, "pageSize": page_size, - "sortDirection": sort_dir.value, - "sortKey": sort_key.value, + "sortDirection": sort_dir, + "sortKey": sort_key, "includeUnknownSeriesItems": str(include_unknown_series_items), "includeSeries": str(include_series), "includeEpisode": str(include_episode), @@ -335,8 +337,35 @@ def get_queue( ## PARSE + def get_parse_title_path( + self, title: Optional[str] = None, path: Optional[str] = None + ) -> dict[str, Any]: + """Returns the result of parsing a title or path. series and episodes will be + returned only if the parsing matches to a specific series and one or more + episodes. series and episodes will be formatted the same as Series and Episode + responses. + + Args: + title (Optional[str], optional): Title of series or episode. Defaults to None. + path (Optional[str], optional): file path of series or episode. Defaults to None. + + Raises: + PyarrMissingArgument: If no argument is passed, error + + Returns: + dict[str, Any]: Dictionary with items + """ + if title is None and path is None: + raise PyarrMissingArgument("A title or path must be specified") + params = {} + if title is not None: + params["title"] = title + if path is not None: + params["path"] = path + return self.assert_return("parse", self.ver_uri, dict, params) + # GET /parse - def get_parsed_title(self, title: str) -> list[dict[str, Any]]: + def get_parsed_title(self, title: str) -> dict[str, Any]: """Returns the result of parsing a title. series and episodes will be returned only if the parsing matches to a specific series and one or more episodes. series and episodes will be formatted the same as Series and Episode @@ -346,12 +375,17 @@ def get_parsed_title(self, title: str) -> list[dict[str, Any]]: title (str): Title of series / episode Returns: - list[dict[str, Any]]: List of dictionaries with items + dict[str, Any]: List of dictionaries with items """ - return self.assert_return("parse", self.ver_uri, list, {"title": title}) + warn( + "This method is deprecated and will be removed in a future release. Please use get_parse_title_path()", + DeprecationWarning, + stacklevel=2, + ) + return self.assert_return("parse", self.ver_uri, dict, {"title": title}) # GET /parse - def get_parsed_path(self, file_path: str) -> list[dict[str, Any]]: + def get_parsed_path(self, file_path: str) -> dict[str, Any]: """Returns the result of parsing a file path. series and episodes will be returned only if the parsing matches to a specific series and one or more episodes. series and episodes will be formatted the same as Series and Episode @@ -361,9 +395,14 @@ def get_parsed_path(self, file_path: str) -> list[dict[str, Any]]: file_path (str): file path of series / episode Returns: - list[dict[str, Any]]: List of dictionaries with items + dict[str, Any]: List of dictionaries with items """ - return self.assert_return("parse", self.ver_uri, list, {"path": file_path}) + warn( + "This method is deprecated and will be removed in a future release. Please use get_parse_title_path()", + DeprecationWarning, + stacklevel=2, + ) + return self.assert_return("parse", self.ver_uri, dict, {"path": file_path}) ## RELEASE diff --git a/tests/fixtures/sonarr/parse.json b/tests/fixtures/sonarr/parse.json new file mode 100644 index 0000000..f8e1782 --- /dev/null +++ b/tests/fixtures/sonarr/parse.json @@ -0,0 +1,118 @@ +{ + "title": "string", + "parsedEpisodeInfo": { + "releaseTitle": "string", + "seriesTitle": "string", + "seriesTitleInfo": { + "title": "string", + "titleWithoutYear": "string", + "year": 0 + }, + "quality": { + "quality": { + "id": 0, + "name": "string", + "source": "string", + "resolution": 0 + }, + "revision": { + "version": 0, + "real": 0, + "isRepack": false + } + }, + "seasonNumber": 0, + "episodeNumbers": [ + 0 + ], + "absoluteEpisodeNumbers": [ + 0 + ], + "specialAbsoluteEpisodeNumbers": [ + 0 + ], + "language": { + "id": 0, + "name": "string" + }, + "fullSeason": false, + "isPartialSeason": false, + "isMultiSeason": false, + "isSeasonExtra": false, + "special": false, + "releaseHash": "string", + "seasonPart": 0, + "releaseTokens": "string", + "isDaily": false, + "isAbsoluteNumbering": false, + "isPossibleSpecialEpisode": false, + "isPossibleSceneSeasonSpecial": false + }, + "series": { + "title": "string", + "sortTitle": "string", + "status": "string", + "ended": true, + "overview": "string", + "network": "string", + "airTime": "00:00", + "images": [ + { + "coverType": "poster", + "url": "string" + } + ], + "seasons": [ + { + "seasonNumber": 0, + "monitored": false + } + ], + "year": 0, + "path": "string", + "qualityProfileId": 0, + "languageProfileId": 0, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 0, + "tvdbId": 0, + "tvRageId": 0, + "tvMazeId": 0, + "firstAired": "2011-09-26T00:00:00Z", + "seriesType": "string", + "cleanTitle": "string", + "imdbId": "string", + "titleSlug": "0", + "certification": "string", + "genres": [ + "string" + ], + "tags": [ + 0 + ], + "added": "2020-05-19T05:33:31.868402Z", + "ratings": { + "votes": 0, + "value": 0.0 + }, + "id": 0 + }, + "episodes": [ + { + "seriesId": 0, + "episodeFileId": 0, + "seasonNumber": 0, + "episodeNumber": 0, + "title": "string", + "airDate": "2010-08-26", + "airDateUtc": "2006-09-27T00:00:00Z", + "overview": "string", + "hasFile": true, + "monitored": false, + "absoluteEpisodeNumber": 0, + "unverifiedSceneNumbering": false, + "id": 0 + } + ] +} diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index 817a3be..6d5f1ae 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -1,7 +1,9 @@ +import contextlib from warnings import warn import pytest +from pyarr.exceptions import PyarrMissingArgument from pyarr.models.common import PyarrSortDirection from pyarr.models.sonarr import SonarrSortKeys @@ -176,7 +178,7 @@ def test_get_wanted(responses, sonarr_client): sort_key=SonarrSortKeys.SERIES_TITLE, page=2, page_size=20, - sort_direction=PyarrSortDirection.ASC, + sort_dir=PyarrSortDirection.ASC, ) assert isinstance(data, dict) @@ -215,3 +217,66 @@ def test_get_queue(responses, sonarr_client): ) data = sonarr_client.get_queue() assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_parsed_title(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/parse?title=Series.Title.S01E01", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/parse.json"), + status=200, + ) + data = sonarr_client.get_parsed_title("Series.Title.S01E01") + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_parsed_path(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/parse?path=/", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/parse.json"), + status=200, + ) + data = sonarr_client.get_parsed_path("/") + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_parse_title_path(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/parse?title=Series.Title.S01E01&path=/", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/parse.json"), + status=200, + ) + data = sonarr_client.get_parse_title_path(title="Series.Title.S01E01", path="/") + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/parse?title=Series.Title.S01E01", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/parse.json"), + status=200, + ) + data = sonarr_client.get_parse_title_path(title="Series.Title.S01E01") + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/parse", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/parse.json"), + status=200, + ) + data = sonarr_client.get_parse_title_path(path="/") + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_parse_title_path() + assert False From 494fd0db508631dc42a8918ec7e763bbedc2873d Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Wed, 29 Jun 2022 13:12:58 +0000 Subject: [PATCH 05/53] fix: added tests for release and resolved type hint issues --- pyarr/sonarr.py | 10 ++-- pyproject.toml | 2 +- tests/fixtures/sonarr/release.json | 82 ++++++++++++++++++++++++++++++ tests/test_sonarr.py | 23 +++++++++ 4 files changed, 112 insertions(+), 5 deletions(-) create mode 100644 tests/fixtures/sonarr/release.json diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index 13ba209..d135129 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -407,16 +407,18 @@ def get_parsed_path(self, file_path: str) -> dict[str, Any]: ## RELEASE # GET /release - def get_releases(self, id_: int) -> list[dict[str, Any]]: - """Get a release with a specific episode ID. + def get_releases(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + """Query indexers for latest releases. Args: - id_ (int): Database id for episode + id_ (int): Database id for episode to check Returns: list[dict[str, Any]]: List of dictionaries with items """ - return self.assert_return("release", self.ver_uri, list, {"episodeId": id_}) + return self.assert_return( + "release", self.ver_uri, list, {"episodeId": id_} if id_ else None + ) # POST /release # TODO: find response diff --git a/pyproject.toml b/pyproject.toml index aa4bd55..a4ad5e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyarr" -version = "4.1.0" +version = "4.2.0" description = "Synchronous Sonarr, Radarr, Lidarr and Readarr API's for Python" authors = ["Steven Marks "] license = "MIT" diff --git a/tests/fixtures/sonarr/release.json b/tests/fixtures/sonarr/release.json new file mode 100644 index 0000000..a9e5ec0 --- /dev/null +++ b/tests/fixtures/sonarr/release.json @@ -0,0 +1,82 @@ +[ + { + "guid": "string", + "quality": { + "quality": { + "id": 0, + "name": "string", + "source": "string", + "resolution": 0 + }, + "revision": { + "version": 0, + "real": 0, + "isRepack": false + } + }, + "qualityWeight": 0, + "age": 0, + "ageHours": 0.0, + "ageMinutes": 0.0, + "size": 0, + "indexerId": 0, + "indexer": "string", + "releaseGroup": "string", + "releaseHash": "string", + "title": "string", + "fullSeason": false, + "sceneSource": false, + "seasonNumber": 0, + "language": { + "id": 0, + "name": "string" + }, + "languageWeight": 0, + "seriesTitle": "string", + "episodeNumbers": [ + 0 + ], + "absoluteEpisodeNumbers": [ + 0 + ], + "mappedSeasonNumber": 0, + "mappedEpisodeNumbers": [ + 0 + ], + "mappedAbsoluteEpisodeNumbers": [ + 0 + ], + "approved": false, + "temporarilyRejected": false, + "rejected": true, + "tvdbId": 0, + "tvRageId": 0, + "rejections": [ + { + "reason": "string", + "type": "permanent" + } + ], + "publishDate": "2020-01-08T15:31:03Z", + "commentUrl": "string", + "downloadUrl": "string", + "infoUrl": "string", + "episodeRequested": false, + "downloadAllowed": true, + "releaseWeight": 0, + "preferredWordScore": 0, + "sceneMapping": { + "title": "string", + "seasonNumber": 0 + }, + "magnetUrl": "string", + "infoHash": "string", + "seeders": 0, + "leechers": 0, + "protocol": "unknown", + "isDaily": false, + "isAbsoluteNumbering": false, + "isPossibleSpecialEpisode": false, + "special": false + } +] diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index 6d5f1ae..8f8ddf8 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -280,3 +280,26 @@ def test_get_parse_title_path(responses, sonarr_client): with contextlib.suppress(PyarrMissingArgument): data = sonarr_client.get_parse_title_path() assert False + + +@pytest.mark.usefixtures +def test_get_releases(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/release", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/release.json"), + status=200, + ) + data = sonarr_client.get_releases() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/release?episodeId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/release.json"), + status=200, + ) + data = sonarr_client.get_releases(1) + assert isinstance(data, list) From 187cb3f0aff8935938d2f1296a8645cde0b44125 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Wed, 29 Jun 2022 14:01:41 +0000 Subject: [PATCH 06/53] tests: added download_release --- tests/fixtures/sonarr/release_download.json | 28 +++++++++++++++++++++ tests/test_sonarr.py | 13 ++++++++++ 2 files changed, 41 insertions(+) create mode 100644 tests/fixtures/sonarr/release_download.json diff --git a/tests/fixtures/sonarr/release_download.json b/tests/fixtures/sonarr/release_download.json new file mode 100644 index 0000000..6672268 --- /dev/null +++ b/tests/fixtures/sonarr/release_download.json @@ -0,0 +1,28 @@ +{ + "guid": "https://ipt.beelyrics.net/t/1450590", + "qualityWeight": 0, + "age": 0, + "ageHours": 0.0, + "ageMinutes": 0.0, + "size": 0, + "indexerId": 2, + "fullSeason": false, + "sceneSource": false, + "seasonNumber": 0, + "languageWeight": 0, + "approved": false, + "temporarilyRejected": false, + "rejected": false, + "tvdbId": 0, + "tvRageId": 0, + "publishDate": "0001-01-01T00:00:00Z", + "episodeRequested": false, + "downloadAllowed": false, + "releaseWeight": 0, + "preferredWordScore": 0, + "protocol": "unknown", + "isDaily": false, + "isAbsoluteNumbering": false, + "isPossibleSpecialEpisode": false, + "special": false +} diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index 8f8ddf8..0ea65df 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -303,3 +303,16 @@ def test_get_releases(responses, sonarr_client): ) data = sonarr_client.get_releases(1) assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_download_release(responses, sonarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8989/api/v3/release", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/release_download.json"), + status=201, + ) + data = sonarr_client.download_release(guid="1450590", indexer_id=2) + assert isinstance(data, dict) From d154a814108dc09796d9ad88ab8ede86a3868237 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Thu, 30 Jun 2022 12:44:07 +0000 Subject: [PATCH 07/53] fix: resolved assertion error with get_command and added more tests --- pyarr/sonarr.py | 43 ++- tests/fixtures/sonarr/command.json | 27 ++ tests/fixtures/sonarr/command_all.json | 300 ++++++++++++++++++++ tests/fixtures/sonarr/release_download.json | 2 +- tests/fixtures/sonarr/series.json | 75 +++++ tests/fixtures/sonarr/series_all.json | 152 ++++++++++ tests/fixtures/sonarr/series_lookup.json | 63 ++++ tests/test_sonarr.py | 162 +++++++++++ 8 files changed, 810 insertions(+), 14 deletions(-) create mode 100644 tests/fixtures/sonarr/command.json create mode 100644 tests/fixtures/sonarr/command_all.json create mode 100644 tests/fixtures/sonarr/series.json create mode 100644 tests/fixtures/sonarr/series_all.json create mode 100644 tests/fixtures/sonarr/series_lookup.json diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index d135129..68a7967 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -77,7 +77,9 @@ def _series_json( ## COMMAND # GET /command - def get_command(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_command( + self, id_: Optional[int] = None + ) -> Union[list[dict[str, Any]], dict[str, Any]]: """Queries the status of a previously started command, or all currently started commands. Args: @@ -86,8 +88,8 @@ def get_command(self, id_: Optional[int] = None) -> list[dict[str, Any]]: Returns: list[dict[str, Any]]: List of dictionaries with items """ - path = f"command/{id_}" if id_ else "command" - return self.assert_return(path, self.ver_uri, list) + path = f"command{f'/{id_}' if id_ else ''}" + return self.assert_return(path, self.ver_uri, dict if id_ else list) # POST /command # TODO: confirm response, kwargs @@ -421,8 +423,7 @@ def get_releases(self, id_: Optional[int] = None) -> list[dict[str, Any]]: ) # POST /release - # TODO: find response - def download_release(self, guid: str, indexer_id: int) -> Any: + def download_release(self, guid: str, indexer_id: int) -> dict[str, Any]: """Adds a previously searched release to the download client, if the release is still in Sonarr's search cache (30 minute cache). If the release is not found in the cache Sonarr will return a 404. @@ -432,7 +433,7 @@ def download_release(self, guid: str, indexer_id: int) -> Any: indexer_id (int): Database id of indexer to use Returns: - [type]: [description] + dict[str, Any]: Dictionary with download release details """ data = {"guid": guid, "indexerId": indexer_id} return self._post("release", self.ver_uri, data=data) @@ -463,7 +464,9 @@ def push_release( ## SERIES # GET /series and /series/{id} - def get_series(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_series( + self, id_: Optional[int] = None + ) -> Union[list[dict[str, Any]], dict[str, Any]]: """Returns all series in your collection or the series with the matching series ID if one is found. @@ -471,10 +474,11 @@ def get_series(self, id_: Optional[int] = None) -> list[dict[str, Any]]: id_ (Optional[int], optional): Database id for series. Defaults to None. Returns: - list[dict]: List of dictionaries with items + Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items, or a + dictionary with single item """ - path = f"series/{id_}" if id_ else "series" - return self.assert_return(path, self.ver_uri, list) + path = f"series{f'/{id_}' if id_ else ''}" + return self.assert_return(path, self.ver_uri, dict if id_ else list) # POST /series def add_series( @@ -550,16 +554,24 @@ def del_series( return self._delete(f"series/{id_}", self.ver_uri, params=params) # GET /series/lookup - def lookup_series(self, term: str) -> list[dict[str, Any]]: + def lookup_series( + self, term: Optional[str] = None, id_: Optional[int] = None + ) -> list[dict[str, Any]]: """Searches for new shows on TheTVDB.com utilizing sonarr.tv's caching and augmentation proxy. Args: - term (str): Series' Name, using `%20` to signify spaces, as in `The%20Blacklist` + term (Optional[str], optional): Series' Name + id_ (Optional[int], optional): TVDB ID for series Returns: list[dict[str, Any]]: List of dictionaries with items """ - return self.assert_return("series/lookup", self.ver_uri, list, {"term": term}) + if term is None and id_ is None: + raise PyarrMissingArgument("A term or TVDB id must be included") + + return self.assert_return( + "series/lookup", self.ver_uri, list, {"term": term or f"tvdb:{id_}"} + ) # GET /series/lookup def lookup_series_by_tvdb_id(self, id_: int) -> list[dict[str, Any]]: @@ -571,5 +583,10 @@ def lookup_series_by_tvdb_id(self, id_: int) -> list[dict[str, Any]]: Returns: list[dict[str, Any]]: List of dictionaries with items """ + warn( + "This method is deprecated and will be removed in a future release. Please use lookup_series()", + DeprecationWarning, + stacklevel=2, + ) params = {"term": f"tvdb:{id_}"} return self.assert_return("series/lookup", self.ver_uri, list, params) diff --git a/tests/fixtures/sonarr/command.json b/tests/fixtures/sonarr/command.json new file mode 100644 index 0000000..b8de2c5 --- /dev/null +++ b/tests/fixtures/sonarr/command.json @@ -0,0 +1,27 @@ +{ + "name": "RefreshMonitoredDownloads", + "commandName": "Refresh Monitored Downloads", + "body": { + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "requiresDiskAccess": false, + "isExclusive": false, + "name": "RefreshMonitoredDownloads", + "lastExecutionTime": "2022-06-30T12:28:12.936942Z", + "trigger": "scheduled", + "suppressMessages": false + }, + "priority": "high", + "status": "completed", + "queued": "2022-06-30T12:29:42.634933Z", + "started": "2022-06-30T12:29:42.646746Z", + "ended": "2022-06-30T12:29:42.982584Z", + "duration": "00:00:00.3358380", + "trigger": "scheduled", + "stateChangeTime": "2022-06-30T12:29:42.646746Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "lastExecutionTime": "2022-06-30T12:28:12.936942Z", + "id": 4327826 +} diff --git a/tests/fixtures/sonarr/command_all.json b/tests/fixtures/sonarr/command_all.json new file mode 100644 index 0000000..af753bd --- /dev/null +++ b/tests/fixtures/sonarr/command_all.json @@ -0,0 +1,300 @@ +[ + { + "name": "RefreshMonitoredDownloads", + "commandName": "Refresh Monitored Downloads", + "message": "Completed", + "body": { + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "requiresDiskAccess": false, + "isExclusive": false, + "name": "RefreshMonitoredDownloads", + "lastExecutionTime": "2022-06-30T12:28:12.936942Z", + "trigger": "scheduled", + "suppressMessages": false + }, + "priority": "high", + "status": "completed", + "queued": "2022-06-30T12:29:42.634933Z", + "started": "2022-06-30T12:29:42.646746Z", + "ended": "2022-06-30T12:29:42.982584Z", + "duration": "00:00:00.3358380", + "trigger": "scheduled", + "stateChangeTime": "2022-06-30T12:29:42.646746Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "lastExecutionTime": "2022-06-30T12:28:12.936942Z", + "id": 4327826 + }, + { + "name": "ProcessMonitoredDownloads", + "commandName": "Process Monitored Downloads", + "message": "Completed", + "body": { + "requiresDiskAccess": true, + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "isExclusive": false, + "name": "ProcessMonitoredDownloads", + "trigger": "unspecified", + "suppressMessages": false + }, + "priority": "high", + "status": "completed", + "queued": "2022-06-30T12:29:42.965145Z", + "started": "2022-06-30T12:29:42.982669Z", + "ended": "2022-06-30T12:29:42.990583Z", + "duration": "00:00:00.0079140", + "trigger": "unspecified", + "stateChangeTime": "2022-06-30T12:29:42.982669Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "id": 4327827 + }, + { + "name": "RefreshMonitoredDownloads", + "commandName": "Refresh Monitored Downloads", + "message": "Completed", + "body": { + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "requiresDiskAccess": false, + "isExclusive": false, + "name": "RefreshMonitoredDownloads", + "lastExecutionTime": "2022-06-30T12:29:43.001663Z", + "trigger": "scheduled", + "suppressMessages": false + }, + "priority": "high", + "status": "completed", + "queued": "2022-06-30T12:31:12.657939Z", + "started": "2022-06-30T12:31:12.69201Z", + "ended": "2022-06-30T12:31:12.945531Z", + "duration": "00:00:00.2535210", + "trigger": "scheduled", + "stateChangeTime": "2022-06-30T12:31:12.69201Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "lastExecutionTime": "2022-06-30T12:29:43.001663Z", + "id": 4327828 + }, + { + "name": "ProcessMonitoredDownloads", + "commandName": "Process Monitored Downloads", + "message": "Completed", + "body": { + "requiresDiskAccess": true, + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "isExclusive": false, + "name": "ProcessMonitoredDownloads", + "trigger": "unspecified", + "suppressMessages": false + }, + "priority": "high", + "status": "completed", + "queued": "2022-06-30T12:31:12.934345Z", + "started": "2022-06-30T12:31:12.943239Z", + "ended": "2022-06-30T12:31:12.956678Z", + "duration": "00:00:00.0134390", + "trigger": "unspecified", + "stateChangeTime": "2022-06-30T12:31:12.943239Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "id": 4327829 + }, + { + "name": "RefreshMonitoredDownloads", + "commandName": "Refresh Monitored Downloads", + "message": "Completed", + "body": { + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "requiresDiskAccess": false, + "isExclusive": false, + "name": "RefreshMonitoredDownloads", + "lastExecutionTime": "2022-06-30T12:31:13.001671Z", + "trigger": "scheduled", + "suppressMessages": false + }, + "priority": "high", + "status": "completed", + "queued": "2022-06-30T12:32:42.697741Z", + "started": "2022-06-30T12:32:42.727403Z", + "ended": "2022-06-30T12:32:42.955224Z", + "duration": "00:00:00.2278210", + "trigger": "scheduled", + "stateChangeTime": "2022-06-30T12:32:42.727403Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "lastExecutionTime": "2022-06-30T12:31:13.001671Z", + "id": 4327830 + }, + { + "name": "ProcessMonitoredDownloads", + "commandName": "Process Monitored Downloads", + "message": "Completed", + "body": { + "requiresDiskAccess": true, + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "isExclusive": false, + "name": "ProcessMonitoredDownloads", + "trigger": "unspecified", + "suppressMessages": false + }, + "priority": "high", + "status": "completed", + "queued": "2022-06-30T12:32:42.938112Z", + "started": "2022-06-30T12:32:42.955286Z", + "ended": "2022-06-30T12:32:43.118259Z", + "duration": "00:00:00.1629730", + "trigger": "unspecified", + "stateChangeTime": "2022-06-30T12:32:42.955286Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "id": 4327831 + }, + { + "name": "RefreshMonitoredDownloads", + "commandName": "Refresh Monitored Downloads", + "message": "Completed", + "body": { + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "requiresDiskAccess": false, + "isExclusive": false, + "name": "RefreshMonitoredDownloads", + "lastExecutionTime": "2022-06-30T12:32:42.968703Z", + "trigger": "scheduled", + "suppressMessages": false + }, + "priority": "high", + "status": "completed", + "queued": "2022-06-30T12:34:12.763052Z", + "started": "2022-06-30T12:34:12.794455Z", + "ended": "2022-06-30T12:34:12.930054Z", + "duration": "00:00:00.1355990", + "trigger": "scheduled", + "stateChangeTime": "2022-06-30T12:34:12.794455Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "lastExecutionTime": "2022-06-30T12:32:42.968703Z", + "id": 4327833 + }, + { + "name": "ProcessMonitoredDownloads", + "commandName": "Process Monitored Downloads", + "message": "Completed", + "body": { + "requiresDiskAccess": true, + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "isExclusive": false, + "name": "ProcessMonitoredDownloads", + "trigger": "unspecified", + "suppressMessages": false + }, + "priority": "high", + "status": "completed", + "queued": "2022-06-30T12:34:12.925071Z", + "started": "2022-06-30T12:34:12.928994Z", + "ended": "2022-06-30T12:34:12.93933Z", + "duration": "00:00:00.0103360", + "trigger": "unspecified", + "stateChangeTime": "2022-06-30T12:34:12.928994Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "id": 4327834 + }, + { + "name": "RefreshMonitoredDownloads", + "commandName": "Refresh Monitored Downloads", + "message": "Completed", + "body": { + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "requiresDiskAccess": false, + "isExclusive": false, + "name": "RefreshMonitoredDownloads", + "lastExecutionTime": "2022-06-30T12:34:12.948708Z", + "trigger": "scheduled", + "suppressMessages": false + }, + "priority": "high", + "status": "completed", + "queued": "2022-06-30T12:35:42.797902Z", + "started": "2022-06-30T12:35:42.830191Z", + "ended": "2022-06-30T12:35:43.242124Z", + "duration": "00:00:00.4119330", + "trigger": "scheduled", + "stateChangeTime": "2022-06-30T12:35:42.830191Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "lastExecutionTime": "2022-06-30T12:34:12.948708Z", + "id": 4327835 + }, + { + "name": "ProcessMonitoredDownloads", + "commandName": "Process Monitored Downloads", + "message": "Completed", + "body": { + "requiresDiskAccess": true, + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "isExclusive": false, + "name": "ProcessMonitoredDownloads", + "trigger": "unspecified", + "suppressMessages": false + }, + "priority": "high", + "status": "completed", + "queued": "2022-06-30T12:35:43.236271Z", + "started": "2022-06-30T12:35:43.242195Z", + "ended": "2022-06-30T12:35:43.256009Z", + "duration": "00:00:00.0138140", + "trigger": "unspecified", + "stateChangeTime": "2022-06-30T12:35:43.242195Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "id": 4327836 + }, + { + "name": "MessagingCleanup", + "commandName": "Messaging Cleanup", + "message": "Completed", + "body": { + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "requiresDiskAccess": false, + "isExclusive": false, + "name": "MessagingCleanup", + "lastExecutionTime": "2022-06-30T12:28:42.665203Z", + "trigger": "scheduled", + "suppressMessages": false + }, + "priority": "low", + "status": "completed", + "queued": "2022-06-30T12:33:42.737106Z", + "started": "2022-06-30T12:33:42.761555Z", + "ended": "2022-06-30T12:33:42.796973Z", + "duration": "00:00:00.0354180", + "trigger": "scheduled", + "stateChangeTime": "2022-06-30T12:33:42.761555Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "lastExecutionTime": "2022-06-30T12:28:42.665203Z", + "id": 4327832 + } +] diff --git a/tests/fixtures/sonarr/release_download.json b/tests/fixtures/sonarr/release_download.json index 6672268..1339b7c 100644 --- a/tests/fixtures/sonarr/release_download.json +++ b/tests/fixtures/sonarr/release_download.json @@ -15,7 +15,7 @@ "rejected": false, "tvdbId": 0, "tvRageId": 0, - "publishDate": "0001-01-01T00:00:00Z", + "publishDate": "2020-05-17T00:00:00Z", "episodeRequested": false, "downloadAllowed": false, "releaseWeight": 0, diff --git a/tests/fixtures/sonarr/series.json b/tests/fixtures/sonarr/series.json new file mode 100644 index 0000000..5874453 --- /dev/null +++ b/tests/fixtures/sonarr/series.json @@ -0,0 +1,75 @@ +{ + "title": "string", + "alternateTitles": [ + { + "title": "string", + "seasonNumber": 0 + } + ], + "sortTitle": "string", + "status": "string", + "ended": true, + "overview": "string", + "previousAiring": "string", + "network": "string", + "airTime": "00:00", + "images": [ + { + "coverType": "poster", + "url": "string", + "remoteUrl": "string" + } + ], + "seasons": [ + { + "seasonNumber": 0, + "monitored": true, + "statistics": { + "previousAiring": "2019-07-05T07:00:00Z", + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 0, + "sizeOnDisk": 0, + "percentOfEpisodes": 0.0 + } + } + ], + "year": 0, + "path": "string", + "qualityProfileId": 0, + "languageProfileId": 0, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 0, + "tvdbId": 0, + "tvRageId": 0, + "tvMazeId": 0, + "firstAired": "2018-05-31T00:00:00Z", + "seriesType": "string", + "cleanTitle": "string", + "imdbId": "string", + "titleSlug": "0", + "rootFolderPath": "string", + "certification": "string", + "genres": [ + "string" + ], + "tags": [ + 0 + ], + "added": "2018-06-19T05:33:15.99487Z", + "ratings": { + "votes": 0, + "value": 0.0 + }, + "statistics": { + "seasonCount": 0, + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 0, + "sizeOnDisk": 0, + "percentOfEpisodes": 0.0 + }, + "id": 0 +} diff --git a/tests/fixtures/sonarr/series_all.json b/tests/fixtures/sonarr/series_all.json new file mode 100644 index 0000000..ca8a7fd --- /dev/null +++ b/tests/fixtures/sonarr/series_all.json @@ -0,0 +1,152 @@ +[ + { + "title": "string", + "alternateTitles": [ + { + "title": "string", + "seasonNumber": 0 + } + ], + "sortTitle": "string", + "status": "string", + "ended": true, + "overview": "string", + "previousAiring": "string", + "network": "string", + "airTime": "00:00", + "images": [ + { + "coverType": "poster", + "url": "string", + "remoteUrl": "string" + } + ], + "seasons": [ + { + "seasonNumber": 0, + "monitored": true, + "statistics": { + "previousAiring": "2019-07-05T07:00:00Z", + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 0, + "sizeOnDisk": 0, + "percentOfEpisodes": 0.0 + } + } + ], + "year": 0, + "path": "string", + "qualityProfileId": 0, + "languageProfileId": 0, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 0, + "tvdbId": 0, + "tvRageId": 0, + "tvMazeId": 0, + "firstAired": "2018-05-31T00:00:00Z", + "seriesType": "string", + "cleanTitle": "string", + "imdbId": "string", + "titleSlug": "0", + "rootFolderPath": "string", + "certification": "string", + "genres": [ + "string" + ], + "tags": [ + 0 + ], + "added": "2018-06-19T05:33:15.99487Z", + "ratings": { + "votes": 0, + "value": 0.0 + }, + "statistics": { + "seasonCount": 0, + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 0, + "sizeOnDisk": 0, + "percentOfEpisodes": 0.0 + }, + "id": 0 + }, + { + "title": "string", + "alternateTitles": [ + { + "title": "string", + "seasonNumber": 0 + } + ], + "sortTitle": "string", + "status": "string", + "ended": true, + "overview": "string", + "previousAiring": "string", + "network": "string", + "airTime": "00:00", + "images": [ + { + "coverType": "poster", + "url": "string", + "remoteUrl": "string" + } + ], + "seasons": [ + { + "seasonNumber": 0, + "monitored": true, + "statistics": { + "previousAiring": "2019-07-05T07:00:00Z", + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 0, + "sizeOnDisk": 0, + "percentOfEpisodes": 0.0 + } + } + ], + "year": 0, + "path": "string", + "qualityProfileId": 0, + "languageProfileId": 0, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 0, + "tvdbId": 0, + "tvRageId": 0, + "tvMazeId": 0, + "firstAired": "2018-05-31T00:00:00Z", + "seriesType": "string", + "cleanTitle": "string", + "imdbId": "string", + "titleSlug": "0", + "rootFolderPath": "string", + "certification": "string", + "genres": [ + "string" + ], + "tags": [ + 0 + ], + "added": "2018-06-19T05:33:15.99487Z", + "ratings": { + "votes": 0, + "value": 0.0 + }, + "statistics": { + "seasonCount": 0, + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 0, + "sizeOnDisk": 0, + "percentOfEpisodes": 0.0 + }, + "id": 0 + } +] diff --git a/tests/fixtures/sonarr/series_lookup.json b/tests/fixtures/sonarr/series_lookup.json new file mode 100644 index 0000000..e4623c6 --- /dev/null +++ b/tests/fixtures/sonarr/series_lookup.json @@ -0,0 +1,63 @@ +[ + { + "title": "string", + "sortTitle": "string", + "status": "string", + "ended": false, + "overview": "string", + "network": "string", + "airTime": "00:00", + "images": [ + { + "coverType": "poster", + "url": "string", + "remoteUrl": "string" + } + ], + "remotePoster": "string", + "seasons": [ + { + "seasonNumber": 0, + "monitored": true + } + ], + "year": 0, + "path": "string", + "qualityProfileId": 0, + "languageProfileId": 0, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 0, + "tvdbId": 0, + "tvRageId": 0, + "tvMazeId": 0, + "firstAired": "2018-10-12T00:00:00Z", + "seriesType": "string", + "cleanTitle": "string", + "imdbId": "string", + "titleSlug": "0", + "folder": "string", + "certification": "string", + "genres": [ + "string" + ], + "tags": [ + 0 + ], + "added": "2018-10-31T05:49:55.35715Z", + "ratings": { + "votes": 0, + "value": 0.0 + }, + "statistics": { + "seasonCount": 0, + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 0, + "sizeOnDisk": 0, + "percentOfEpisodes": 0.0 + }, + "id": 0 + } +] diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index 0ea65df..a9a657f 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -1,4 +1,5 @@ import contextlib +from datetime import datetime from warnings import warn import pytest @@ -10,6 +11,61 @@ from tests import load_fixture +@pytest.mark.usefixtures +def test__series_json(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/series/lookup?term=tvdb%3A1234567", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/series_lookup.json"), + status=200, + ) + + data = sonarr_client._series_json( + tvdb_id=1234567, + quality_profile_id=1, + root_dir="/", + season_folder=False, + monitored=False, + ignore_episodes_with_files=True, + ignore_episodes_without_files=True, + search_for_missing_episodes=True, + ) + + assert isinstance(data, dict) + assert data["rootFolderPath"] == "/" + assert data["qualityProfileId"] == 1 + assert data["seasonFolder"] == False + assert data["monitored"] == False + assert data["tvdbId"] == 1234567 + assert data["addOptions"]["ignoreEpisodesWithFiles"] == True + assert data["addOptions"]["ignoreEpisodesWithoutFiles"] == True + assert data["addOptions"]["searchForMissingEpisodes"] == True + + +@pytest.mark.usefixtures +def test_get_command(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/command", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/command_all.json"), + status=200, + ) + data = sonarr_client.get_command() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/command/4327826", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/command.json"), + status=200, + ) + data = sonarr_client.get_command(4327826) + assert isinstance(data, dict) + + @pytest.mark.usefixtures def test_get_episode(responses, sonarr_client): """Test getting episode""" @@ -316,3 +372,109 @@ def test_download_release(responses, sonarr_client): ) data = sonarr_client.download_release(guid="1450590", indexer_id=2) assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_push_release(responses, sonarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8989/api/v3/release/push", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/release_download.json"), + status=201, + ) + data = sonarr_client.push_release( + title="test", + download_url="https://ipt.beelyrics.net/t/1450590", + protocol="Torrent", + publish_date=datetime(2020, 5, 17), + ) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_series(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/series", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/series_all.json"), + status=200, + ) + data = sonarr_client.get_series() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/series/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/series.json"), + status=200, + ) + data = sonarr_client.get_series(1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_del_series(responses, sonarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/series/1?deleteFiles=False", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/delete.json"), + status=200, + ) + data = sonarr_client.del_series(1) + assert isinstance(data, dict) + assert data == {} + + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/series/1?deleteFiles=True", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/delete.json"), + status=200, + ) + data = sonarr_client.del_series(1, delete_files=True) + assert isinstance(data, dict) + assert data == {} + + +@pytest.mark.usefixtures +def test_lookup_series(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/series/lookup?term=tvdb:123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/series_lookup.json"), + status=200, + ) + data = sonarr_client.lookup_series(id_=123456) + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/series/lookup?term=test", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/series_lookup.json"), + status=200, + ) + data = sonarr_client.lookup_series(term="test") + assert isinstance(data, list) + + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.lookup_series() + assert False + + +@pytest.mark.usefixtures +def test_lookup_series_by_tvdb_id(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/series/lookup?term=tvdb%3A123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/series_lookup.json"), + status=200, + ) + data = sonarr_client.lookup_series_by_tvdb_id(123456) + assert isinstance(data, list) From afdf17d4033e8091461a39e31d4e00f07d8e3326 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Thu, 30 Jun 2022 21:18:38 +0000 Subject: [PATCH 08/53] fix(sonarr): resolved issues with post_command, updated docs & added mre tests --- .gitignore | 1 + poetry.lock | 447 +++++++++++++++++++++++++- pyarr/base.py | 2 +- pyarr/lidarr.py | 2 +- pyarr/models/sonarr.py | 23 ++ pyarr/sonarr.py | 37 ++- pyproject.toml | 2 + sphinx-docs/conf.py | 1 + sphinx-docs/models/common.rst | 5 + sphinx-docs/models/lidarr.rst | 5 + sphinx-docs/models/radarr.rst | 5 + sphinx-docs/models/readarr.rst | 5 + sphinx-docs/models/sonarr.rst | 5 + sphinx-docs/{ => modules}/lidarr.rst | 0 sphinx-docs/{ => modules}/radarr.rst | 0 sphinx-docs/{ => modules}/readarr.rst | 0 sphinx-docs/{ => modules}/sonarr.rst | 0 sphinx-docs/toc.rst | 17 +- tests/test_sonarr.py | 132 +++++++- 19 files changed, 658 insertions(+), 31 deletions(-) create mode 100644 sphinx-docs/models/common.rst create mode 100644 sphinx-docs/models/lidarr.rst create mode 100644 sphinx-docs/models/radarr.rst create mode 100644 sphinx-docs/models/readarr.rst create mode 100644 sphinx-docs/models/sonarr.rst rename sphinx-docs/{ => modules}/lidarr.rst (100%) rename sphinx-docs/{ => modules}/radarr.rst (100%) rename sphinx-docs/{ => modules}/readarr.rst (100%) rename sphinx-docs/{ => modules}/sonarr.rst (100%) diff --git a/.gitignore b/.gitignore index d8aabac..e001cb2 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,7 @@ build .pytest_cache .coverage coverage.xml +_build .devcontainer/* !.devcontainer/recommended-devcontainer.json diff --git a/poetry.lock b/poetry.lock index 471e8e1..005f70b 100644 --- a/poetry.lock +++ b/poetry.lock @@ -6,6 +6,24 @@ category = "dev" optional = false python-versions = "*" +[[package]] +name = "apeye" +version = "1.2.0" +description = "Handy tools for working with URLs and APIs." +category = "dev" +optional = false +python-versions = ">=3.6.1" + +[package.dependencies] +domdf-python-tools = ">=2.6.0" +idna = ">=2.5" +platformdirs = ">=2.3.0" +requests = ">=2.24.0" + +[package.extras] +all = ["cachecontrol[filecache] (>=0.12.6)", "lockfile (>=0.12.2)"] +limiter = ["cachecontrol[filecache] (>=0.12.6)", "lockfile (>=0.12.2)"] + [[package]] name = "astroid" version = "2.11.6" @@ -41,6 +59,17 @@ docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"] tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "cloudpickle"] tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "cloudpickle"] +[[package]] +name = "autodocsumm" +version = "0.2.8" +description = "Extended sphinx autodoc including automatic autosummaries" +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +Sphinx = ">=2.2,<5.0" + [[package]] name = "babel" version = "2.10.1" @@ -52,6 +81,21 @@ python-versions = ">=3.6" [package.dependencies] pytz = ">=2015.7" +[[package]] +name = "beautifulsoup4" +version = "4.11.1" +description = "Screen-scraping library" +category = "dev" +optional = false +python-versions = ">=3.6.0" + +[package.dependencies] +soupsieve = ">1.2" + +[package.extras] +html5lib = ["html5lib"] +lxml = ["lxml"] + [[package]] name = "black" version = "22.3.0" @@ -74,6 +118,23 @@ d = ["aiohttp (>=3.7.4)"] jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] uvloop = ["uvloop (>=0.15.2)"] +[[package]] +name = "cachecontrol" +version = "0.12.11" +description = "httplib2 caching for requests" +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +lockfile = {version = ">=0.9", optional = true, markers = "extra == \"filecache\""} +msgpack = ">=0.5.2" +requests = "*" + +[package.extras] +filecache = ["lockfile (>=0.9)"] +redis = ["redis (>=2.10.5)"] + [[package]] name = "certifi" version = "2022.5.18.1" @@ -134,6 +195,30 @@ tomli = {version = "*", optional = true, markers = "python_full_version <= \"3.1 [package.extras] toml = ["tomli"] +[[package]] +name = "cssutils" +version = "2.4.2" +description = "A CSS Cascading Style Sheets library for Python" +category = "dev" +optional = false +python-versions = ">=3.7" + +[package.extras] +docs = ["sphinx", "jaraco.packaging (>=9)", "rst.linker (>=1.9)"] +testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "mock", "cssselect", "jaraco.test (>=5.1)", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)", "lxml", "importlib-resources"] + +[[package]] +name = "dict2css" +version = "0.3.0" +description = "A ฮผ-library for constructing cascading style sheets from Python dictionaries." +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +cssutils = ">=2.2.0" +domdf-python-tools = ">=2.2.0" + [[package]] name = "dill" version = "0.3.5.1" @@ -161,6 +246,38 @@ category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +[[package]] +name = "domdf-python-tools" +version = "3.3.0" +description = "Helpful functions for Pythonโ€‚๐Ÿโ€‚๐Ÿ› ๏ธ" +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +natsort = ">=7.0.1" +typing-extensions = ">=3.7.4.1" + +[package.extras] +all = ["pytz (>=2019.1)"] +dates = ["pytz (>=2019.1)"] + +[[package]] +name = "enum-tools" +version = "0.9.0.post1" +description = "Tools to expand Python's enum module." +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +pygments = ">=2.6.1" +typing-extensions = ">=3.7.4.3" + +[package.extras] +sphinx = ["sphinx (>=3.2.0)", "sphinx-toolbox (>=2.16.0)"] +all = ["sphinx (>=3.2.0)", "sphinx-toolbox (>=2.16.0)"] + [[package]] name = "filelock" version = "3.7.0" @@ -186,6 +303,24 @@ mccabe = ">=0.6.0,<0.7.0" pycodestyle = ">=2.7.0,<2.8.0" pyflakes = ">=2.3.0,<2.4.0" +[[package]] +name = "html5lib" +version = "1.1" +description = "HTML parser based on the WHATWG HTML specification" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[package.dependencies] +six = ">=1.9" +webencodings = "*" + +[package.extras] +all = ["genshi", "chardet (>=2.2)", "lxml"] +chardet = ["chardet (>=2.2)"] +genshi = ["genshi"] +lxml = ["lxml"] + [[package]] name = "identify" version = "2.5.1" @@ -307,6 +442,14 @@ python-versions = "*" six = "*" tornado = {version = "*", markers = "python_version > \"2.7\""} +[[package]] +name = "lockfile" +version = "0.12.2" +description = "Platform-independent file locking module" +category = "dev" +optional = false +python-versions = "*" + [[package]] name = "markupsafe" version = "2.1.1" @@ -323,6 +466,14 @@ category = "dev" optional = false python-versions = "*" +[[package]] +name = "msgpack" +version = "1.0.4" +description = "MessagePack serializer" +category = "dev" +optional = false +python-versions = "*" + [[package]] name = "mypy" version = "0.910" @@ -348,6 +499,18 @@ category = "dev" optional = false python-versions = "*" +[[package]] +name = "natsort" +version = "8.1.0" +description = "Simple yet flexible natural sorting in Python." +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.extras] +fast = ["fastnumbers (>=2.0.0)"] +icu = ["PyICU (>=1.0.0)"] + [[package]] name = "nodeenv" version = "1.6.0" @@ -581,6 +744,29 @@ urllib3 = ">=1.25.10" [package.extras] tests = ["pytest (>=7.0.0)", "coverage (>=6.0.0)", "pytest-cov", "pytest-asyncio", "pytest-localserver", "flake8", "types-mock", "types-requests", "mypy"] +[[package]] +name = "ruamel.yaml" +version = "0.17.21" +description = "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order" +category = "dev" +optional = false +python-versions = ">=3" + +[package.dependencies] +"ruamel.yaml.clib" = {version = ">=0.2.6", markers = "platform_python_implementation == \"CPython\" and python_version < \"3.11\""} + +[package.extras] +docs = ["ryd"] +jinja2 = ["ruamel.yaml.jinja2 (>=0.2)"] + +[[package]] +name = "ruamel.yaml.clib" +version = "0.2.6" +description = "C version of reader, parser and emitter for ruamel.yaml derived from libyaml" +category = "dev" +optional = false +python-versions = ">=3.5" + [[package]] name = "six" version = "1.16.0" @@ -597,6 +783,14 @@ category = "dev" optional = false python-versions = "*" +[[package]] +name = "soupsieve" +version = "2.3.2.post1" +description = "A modern CSS selector implementation for Beautiful Soup." +category = "dev" +optional = false +python-versions = ">=3.6" + [[package]] name = "sphinx" version = "4.5.0" @@ -659,6 +853,45 @@ sphinx = "*" [package.extras] test = ["pytest", "pytest-cov"] +[[package]] +name = "sphinx-autodoc-typehints" +version = "1.18.3" +description = "Type hints (PEP 484) support for the Sphinx autodoc extension" +category = "dev" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +Sphinx = ">=4.5" + +[package.extras] +testing = ["covdefaults (>=2.2)", "coverage (>=6.3)", "diff-cover (>=6.4)", "nptyping (>=2.1.2)", "pytest (>=7.1)", "pytest-cov (>=3)", "sphobjinv (>=2)", "typing-extensions (>=4.1)"] +type_comments = ["typed-ast (>=1.5.2)"] + +[[package]] +name = "sphinx-jinja2-compat" +version = "0.1.2" +description = "Patches Jinja2 v3 to restore compatibility with earlier Sphinx versions." +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +jinja2 = ">=2.10" +markupsafe = ">=1" + +[[package]] +name = "sphinx-prompt" +version = "1.5.0" +description = "Sphinx directive to add unselectable prompt" +category = "dev" +optional = false +python-versions = "*" + +[package.dependencies] +pygments = "*" +Sphinx = "*" + [[package]] name = "sphinx-rtd-theme" version = "1.0.0" @@ -674,6 +907,54 @@ sphinx = ">=1.6" [package.extras] dev = ["transifex-client", "sphinxcontrib-httpdomain", "bump2version"] +[[package]] +name = "sphinx-tabs" +version = "3.3.1" +description = "Tabbed views for Sphinx" +category = "dev" +optional = false +python-versions = "~=3.6" + +[package.dependencies] +docutils = ">=0.17.0,<0.18.0" +pygments = "*" +sphinx = ">=2,<5" + +[package.extras] +code_style = ["pre-commit (==2.13.0)"] +testing = ["coverage", "pytest (>=3.6,<4)", "pytest-cov", "pytest-regressions", "pygments", "sphinx-testing", "bs4", "rinohtype"] + +[[package]] +name = "sphinx-toolbox" +version = "3.1.2" +description = "Box of handy tools for Sphinx ๐Ÿงฐ ๐Ÿ“”" +category = "dev" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +apeye = ">=0.4.0" +autodocsumm = ">=0.2.0" +beautifulsoup4 = ">=4.9.1" +cachecontrol = {version = ">=0.12.6", extras = ["filecache"]} +dict2css = ">=0.2.3" +docutils = ">=0.16,<0.18" +domdf-python-tools = ">=2.9.0" +html5lib = ">=1.1" +lockfile = ">=0.12.2" +"ruamel.yaml" = ">=0.16.12" +sphinx = ">=3.2.0" +sphinx-autodoc-typehints = ">=1.11.1" +sphinx-jinja2-compat = ">=0.1.0" +sphinx-prompt = ">=1.1.0" +sphinx-tabs = ">=1.2.1,<3.5.0" +tabulate = ">=0.8.7" +typing-extensions = ">=3.7.4.3,<3.10.0.1 || >3.10.0.1" + +[package.extras] +testing = ["coincidence (>=0.4.3)", "pygments (>=2.7.4)"] +all = ["coincidence (>=0.4.3)", "pygments (>=2.7.4)"] + [[package]] name = "sphinxcontrib-applehelp" version = "1.0.2" @@ -846,6 +1127,14 @@ six = ">=1.9.0,<2" docs = ["proselint (>=0.10.2)", "sphinx (>=3)", "sphinx-argparse (>=0.2.5)", "sphinx-rtd-theme (>=0.4.3)", "towncrier (>=21.3)"] testing = ["coverage (>=4)", "coverage-enable-subprocess (>=1)", "flaky (>=3)", "pytest (>=4)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.1)", "pytest-mock (>=2)", "pytest-randomly (>=1)", "pytest-timeout (>=1)", "packaging (>=20.0)"] +[[package]] +name = "webencodings" +version = "0.5.1" +description = "Character encoding aliases for legacy web content" +category = "dev" +optional = false +python-versions = "*" + [[package]] name = "wrapt" version = "1.14.1" @@ -869,13 +1158,17 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest- [metadata] lock-version = "1.1" python-versions = "^3.9" -content-hash = "db4d8fa133ec6e7dde2fe5968067409cbca372a1a5bbd67f4e951ffcd9b6859e" +content-hash = "fb9620c5d302288fb23b065ca548a897c45c727b661adc4325b8f1843b71b94a" [metadata.files] alabaster = [ {file = "alabaster-0.7.12-py2.py3-none-any.whl", hash = "sha256:446438bdcca0e05bd45ea2de1668c1d9b032e1a9154c2c259092d77031ddd359"}, {file = "alabaster-0.7.12.tar.gz", hash = "sha256:a661d72d58e6ea8a57f7a86e37d86716863ee5e92788398526d58b26a4e4dc02"}, ] +apeye = [ + {file = "apeye-1.2.0-py3-none-any.whl", hash = "sha256:d6b08c96457e4e0457088c247417fc336ebf83ab88645c508562aaeaf3077954"}, + {file = "apeye-1.2.0.tar.gz", hash = "sha256:0bb0f5b037730f149d3ab3697bc30ccccd60407cf16218d8ffa8f78462239e1e"}, +] astroid = [ {file = "astroid-2.11.6-py3-none-any.whl", hash = "sha256:ba33a82a9a9c06a5ceed98180c5aab16e29c285b828d94696bf32d6015ea82a9"}, {file = "astroid-2.11.6.tar.gz", hash = "sha256:4f933d0bf5e408b03a6feb5d23793740c27e07340605f236496cd6ce552043d6"}, @@ -888,10 +1181,18 @@ attrs = [ {file = "attrs-21.4.0-py2.py3-none-any.whl", hash = "sha256:2d27e3784d7a565d36ab851fe94887c5eccd6a463168875832a1be79c82828b4"}, {file = "attrs-21.4.0.tar.gz", hash = "sha256:626ba8234211db98e869df76230a137c4c40a12d72445c45d5f5b716f076e2fd"}, ] +autodocsumm = [ + {file = "autodocsumm-0.2.8-py3-none-any.whl", hash = "sha256:08f0401bb2c6f2bc92848ebd200c53a3966d1d23658e7d70c52f12b088941f79"}, + {file = "autodocsumm-0.2.8.tar.gz", hash = "sha256:e67ebf6bb50a627d43f2ea3fcedfe31744eb7bfecd690e748a393248511ac6c5"}, +] babel = [ {file = "Babel-2.10.1-py3-none-any.whl", hash = "sha256:3f349e85ad3154559ac4930c3918247d319f21910d5ce4b25d439ed8693b98d2"}, {file = "Babel-2.10.1.tar.gz", hash = "sha256:98aeaca086133efb3e1e2aad0396987490c8425929ddbcfe0550184fdc54cd13"}, ] +beautifulsoup4 = [ + {file = "beautifulsoup4-4.11.1-py3-none-any.whl", hash = "sha256:58d5c3d29f5a36ffeb94f02f0d786cd53014cf9b3b3951d42e0080d8a9498d30"}, + {file = "beautifulsoup4-4.11.1.tar.gz", hash = "sha256:ad9aa55b65ef2808eb405f46cf74df7fcb7044d5cbc26487f96eb2ef2e436693"}, +] black = [ {file = "black-22.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2497f9c2386572e28921fa8bec7be3e51de6801f7459dffd6e62492531c47e09"}, {file = "black-22.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5795a0375eb87bfe902e80e0c8cfaedf8af4d49694d69161e5bd3206c18618bb"}, @@ -917,6 +1218,10 @@ black = [ {file = "black-22.3.0-py3-none-any.whl", hash = "sha256:bc58025940a896d7e5356952228b68f793cf5fcb342be703c3a2669a1488cb72"}, {file = "black-22.3.0.tar.gz", hash = "sha256:35020b8886c022ced9282b51b5a875b6d1ab0c387b31a065b84db7c33085ca79"}, ] +cachecontrol = [ + {file = "CacheControl-0.12.11-py2.py3-none-any.whl", hash = "sha256:2c75d6a8938cb1933c75c50184549ad42728a27e9f6b92fd677c3151aa72555b"}, + {file = "CacheControl-0.12.11.tar.gz", hash = "sha256:a5b9fcc986b184db101aa280b42ecdcdfc524892596f606858e0b7a8b4d9e144"}, +] certifi = [ {file = "certifi-2022.5.18.1-py3-none-any.whl", hash = "sha256:f1d53542ee8cbedbe2118b5686372fb33c297fcd6379b050cca0ef13a597382a"}, {file = "certifi-2022.5.18.1.tar.gz", hash = "sha256:9c5705e395cd70084351dd8ad5c41e65655e08ce46f2ec9cf6c2c08390f71eb7"}, @@ -980,6 +1285,14 @@ coverage = [ {file = "coverage-6.4.1-pp36.pp37.pp38-none-any.whl", hash = "sha256:4803e7ccf93230accb928f3a68f00ffa80a88213af98ed338a57ad021ef06815"}, {file = "coverage-6.4.1.tar.gz", hash = "sha256:4321f075095a096e70aff1d002030ee612b65a205a0a0f5b815280d5dc58100c"}, ] +cssutils = [ + {file = "cssutils-2.4.2-py3-none-any.whl", hash = "sha256:17e5ba0de70a672cd1cd2de47fd756bd6bce12585acd91447bde7be1d7a6c5c2"}, + {file = "cssutils-2.4.2.tar.gz", hash = "sha256:877818bfa9668cc535773f46e6b6a46de28436191211741b3f7b4aaa64d9afbb"}, +] +dict2css = [ + {file = "dict2css-0.3.0-py3-none-any.whl", hash = "sha256:ef934ce73a225fdd5f811b484fe9e2dd768f7ef14a89fc8f4eb5672597131d00"}, + {file = "dict2css-0.3.0.tar.gz", hash = "sha256:1e8b1bf580dca2083198f88a60ec88c878a8829d760dfe45483ef80fe2905117"}, +] dill = [ {file = "dill-0.3.5.1-py2.py3-none-any.whl", hash = "sha256:33501d03270bbe410c72639b350e941882a8b0fd55357580fbc873fba0c59302"}, {file = "dill-0.3.5.1.tar.gz", hash = "sha256:d75e41f3eff1eee599d738e76ba8f4ad98ea229db8b085318aa2b3333a208c86"}, @@ -992,6 +1305,14 @@ docutils = [ {file = "docutils-0.17.1-py2.py3-none-any.whl", hash = "sha256:cf316c8370a737a022b72b56874f6602acf974a37a9fba42ec2876387549fc61"}, {file = "docutils-0.17.1.tar.gz", hash = "sha256:686577d2e4c32380bb50cbb22f575ed742d58168cee37e99117a854bcd88f125"}, ] +domdf-python-tools = [ + {file = "domdf_python_tools-3.3.0-py3-none-any.whl", hash = "sha256:692a33cfc4bc4270a30f18b95beb8f65bf56935d122a4bdb0af7f7760452d41c"}, + {file = "domdf_python_tools-3.3.0.tar.gz", hash = "sha256:7c588cdfa3e8bfd9617efbb4fa42652b7010c0f158c81844c862fbda5d86d9cc"}, +] +enum-tools = [ + {file = "enum_tools-0.9.0.post1-py3-none-any.whl", hash = "sha256:d8fd962054e7e400fa7f0a196f7607f19ef78aca4b288543ecb330f890edb60d"}, + {file = "enum_tools-0.9.0.post1.tar.gz", hash = "sha256:e59eb1c16667400b185f8a61ac427029919be2ec48b9ca04aa1b388a42fb14d5"}, +] filelock = [ {file = "filelock-3.7.0-py3-none-any.whl", hash = "sha256:c7b5fdb219b398a5b28c8e4c1893ef5f98ece6a38c6ab2c22e26ec161556fed6"}, {file = "filelock-3.7.0.tar.gz", hash = "sha256:b795f1b42a61bbf8ec7113c341dad679d772567b936fbd1bf43c9a238e673e20"}, @@ -1000,6 +1321,10 @@ flake8 = [ {file = "flake8-3.9.2-py2.py3-none-any.whl", hash = "sha256:bf8fd333346d844f616e8d47905ef3a3384edae6b4e9beb0c5101e25e3110907"}, {file = "flake8-3.9.2.tar.gz", hash = "sha256:07528381786f2a6237b061f6e96610a4167b226cb926e2aa2b6b1d78057c576b"}, ] +html5lib = [ + {file = "html5lib-1.1-py2.py3-none-any.whl", hash = "sha256:0d78f8fde1c230e99fe37986a60526d7049ed4bf8a9fadbad5f00e22e58e041d"}, + {file = "html5lib-1.1.tar.gz", hash = "sha256:b2e5b40261e20f354d198eae92afc10d750afb487ed5e50f9c4eaf07c184146f"}, +] identify = [ {file = "identify-2.5.1-py2.py3-none-any.whl", hash = "sha256:0dca2ea3e4381c435ef9c33ba100a78a9b40c0bab11189c7cf121f75815efeaa"}, {file = "identify-2.5.1.tar.gz", hash = "sha256:3d11b16f3fe19f52039fb7e39c9c884b21cb1b586988114fbe42671f03de3e82"}, @@ -1074,6 +1399,10 @@ lazy-object-proxy = [ livereload = [ {file = "livereload-2.6.3.tar.gz", hash = "sha256:776f2f865e59fde56490a56bcc6773b6917366bce0c267c60ee8aaf1a0959869"}, ] +lockfile = [ + {file = "lockfile-0.12.2-py2.py3-none-any.whl", hash = "sha256:6c3cb24f344923d30b2785d5ad75182c8ea7ac1b6171b08657258ec7429d50fa"}, + {file = "lockfile-0.12.2.tar.gz", hash = "sha256:6aed02de03cba24efabcd600b30540140634fc06cfa603822d508d5361e9f799"}, +] markupsafe = [ {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812"}, {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a"}, @@ -1120,6 +1449,60 @@ mccabe = [ {file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"}, {file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"}, ] +msgpack = [ + {file = "msgpack-1.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4ab251d229d10498e9a2f3b1e68ef64cb393394ec477e3370c457f9430ce9250"}, + {file = "msgpack-1.0.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:112b0f93202d7c0fef0b7810d465fde23c746a2d482e1e2de2aafd2ce1492c88"}, + {file = "msgpack-1.0.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:002b5c72b6cd9b4bafd790f364b8480e859b4712e91f43014fe01e4f957b8467"}, + {file = "msgpack-1.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35bc0faa494b0f1d851fd29129b2575b2e26d41d177caacd4206d81502d4c6a6"}, + {file = "msgpack-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4733359808c56d5d7756628736061c432ded018e7a1dff2d35a02439043321aa"}, + {file = "msgpack-1.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb514ad14edf07a1dbe63761fd30f89ae79b42625731e1ccf5e1f1092950eaa6"}, + {file = "msgpack-1.0.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:c23080fdeec4716aede32b4e0ef7e213c7b1093eede9ee010949f2a418ced6ba"}, + {file = "msgpack-1.0.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:49565b0e3d7896d9ea71d9095df15b7f75a035c49be733051c34762ca95bbf7e"}, + {file = "msgpack-1.0.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:aca0f1644d6b5a73eb3e74d4d64d5d8c6c3d577e753a04c9e9c87d07692c58db"}, + {file = "msgpack-1.0.4-cp310-cp310-win32.whl", hash = "sha256:0dfe3947db5fb9ce52aaea6ca28112a170db9eae75adf9339a1aec434dc954ef"}, + {file = "msgpack-1.0.4-cp310-cp310-win_amd64.whl", hash = "sha256:4dea20515f660aa6b7e964433b1808d098dcfcabbebeaaad240d11f909298075"}, + {file = "msgpack-1.0.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e83f80a7fec1a62cf4e6c9a660e39c7f878f603737a0cdac8c13131d11d97f52"}, + {file = "msgpack-1.0.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3c11a48cf5e59026ad7cb0dc29e29a01b5a66a3e333dc11c04f7e991fc5510a9"}, + {file = "msgpack-1.0.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1276e8f34e139aeff1c77a3cefb295598b504ac5314d32c8c3d54d24fadb94c9"}, + {file = "msgpack-1.0.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6c9566f2c39ccced0a38d37c26cc3570983b97833c365a6044edef3574a00c08"}, + {file = "msgpack-1.0.4-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:fcb8a47f43acc113e24e910399376f7277cf8508b27e5b88499f053de6b115a8"}, + {file = "msgpack-1.0.4-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:76ee788122de3a68a02ed6f3a16bbcd97bc7c2e39bd4d94be2f1821e7c4a64e6"}, + {file = "msgpack-1.0.4-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:0a68d3ac0104e2d3510de90a1091720157c319ceeb90d74f7b5295a6bee51bae"}, + {file = "msgpack-1.0.4-cp36-cp36m-win32.whl", hash = "sha256:85f279d88d8e833ec015650fd15ae5eddce0791e1e8a59165318f371158efec6"}, + {file = "msgpack-1.0.4-cp36-cp36m-win_amd64.whl", hash = "sha256:c1683841cd4fa45ac427c18854c3ec3cd9b681694caf5bff04edb9387602d661"}, + {file = "msgpack-1.0.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a75dfb03f8b06f4ab093dafe3ddcc2d633259e6c3f74bb1b01996f5d8aa5868c"}, + {file = "msgpack-1.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9667bdfdf523c40d2511f0e98a6c9d3603be6b371ae9a238b7ef2dc4e7a427b0"}, + {file = "msgpack-1.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11184bc7e56fd74c00ead4f9cc9a3091d62ecb96e97653add7a879a14b003227"}, + {file = "msgpack-1.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ac5bd7901487c4a1dd51a8c58f2632b15d838d07ceedaa5e4c080f7190925bff"}, + {file = "msgpack-1.0.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:1e91d641d2bfe91ba4c52039adc5bccf27c335356055825c7f88742c8bb900dd"}, + {file = "msgpack-1.0.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2a2df1b55a78eb5f5b7d2a4bb221cd8363913830145fad05374a80bf0877cb1e"}, + {file = "msgpack-1.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:545e3cf0cf74f3e48b470f68ed19551ae6f9722814ea969305794645da091236"}, + {file = "msgpack-1.0.4-cp37-cp37m-win32.whl", hash = "sha256:2cc5ca2712ac0003bcb625c96368fd08a0f86bbc1a5578802512d87bc592fe44"}, + {file = "msgpack-1.0.4-cp37-cp37m-win_amd64.whl", hash = "sha256:eba96145051ccec0ec86611fe9cf693ce55f2a3ce89c06ed307de0e085730ec1"}, + {file = "msgpack-1.0.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:7760f85956c415578c17edb39eed99f9181a48375b0d4a94076d84148cf67b2d"}, + {file = "msgpack-1.0.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:449e57cc1ff18d3b444eb554e44613cffcccb32805d16726a5494038c3b93dab"}, + {file = "msgpack-1.0.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d603de2b8d2ea3f3bcb2efe286849aa7a81531abc52d8454da12f46235092bcb"}, + {file = "msgpack-1.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48f5d88c99f64c456413d74a975bd605a9b0526293218a3b77220a2c15458ba9"}, + {file = "msgpack-1.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6916c78f33602ecf0509cc40379271ba0f9ab572b066bd4bdafd7434dee4bc6e"}, + {file = "msgpack-1.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81fc7ba725464651190b196f3cd848e8553d4d510114a954681fd0b9c479d7e1"}, + {file = "msgpack-1.0.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:d5b5b962221fa2c5d3a7f8133f9abffc114fe218eb4365e40f17732ade576c8e"}, + {file = "msgpack-1.0.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:77ccd2af37f3db0ea59fb280fa2165bf1b096510ba9fe0cc2bf8fa92a22fdb43"}, + {file = "msgpack-1.0.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b17be2478b622939e39b816e0aa8242611cc8d3583d1cd8ec31b249f04623243"}, + {file = "msgpack-1.0.4-cp38-cp38-win32.whl", hash = "sha256:2bb8cdf50dd623392fa75525cce44a65a12a00c98e1e37bf0fb08ddce2ff60d2"}, + {file = "msgpack-1.0.4-cp38-cp38-win_amd64.whl", hash = "sha256:26b8feaca40a90cbe031b03d82b2898bf560027160d3eae1423f4a67654ec5d6"}, + {file = "msgpack-1.0.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:462497af5fd4e0edbb1559c352ad84f6c577ffbbb708566a0abaaa84acd9f3ae"}, + {file = "msgpack-1.0.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2999623886c5c02deefe156e8f869c3b0aaeba14bfc50aa2486a0415178fce55"}, + {file = "msgpack-1.0.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f0029245c51fd9473dc1aede1160b0a29f4a912e6b1dd353fa6d317085b219da"}, + {file = "msgpack-1.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed6f7b854a823ea44cf94919ba3f727e230da29feb4a99711433f25800cf747f"}, + {file = "msgpack-1.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0df96d6eaf45ceca04b3f3b4b111b86b33785683d682c655063ef8057d61fd92"}, + {file = "msgpack-1.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6a4192b1ab40f8dca3f2877b70e63799d95c62c068c84dc028b40a6cb03ccd0f"}, + {file = "msgpack-1.0.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0e3590f9fb9f7fbc36df366267870e77269c03172d086fa76bb4eba8b2b46624"}, + {file = "msgpack-1.0.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:1576bd97527a93c44fa856770197dec00d223b0b9f36ef03f65bac60197cedf8"}, + {file = "msgpack-1.0.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:63e29d6e8c9ca22b21846234913c3466b7e4ee6e422f205a2988083de3b08cae"}, + {file = "msgpack-1.0.4-cp39-cp39-win32.whl", hash = "sha256:fb62ea4b62bfcb0b380d5680f9a4b3f9a2d166d9394e9bbd9666c0ee09a3645c"}, + {file = "msgpack-1.0.4-cp39-cp39-win_amd64.whl", hash = "sha256:4d5834a2a48965a349da1c5a79760d94a1a0172fbb5ab6b5b33cbf8447e109ce"}, + {file = "msgpack-1.0.4.tar.gz", hash = "sha256:f5d869c18f030202eb412f08b28d2afeea553d6613aee89e200d7aca7ef01f5f"}, +] mypy = [ {file = "mypy-0.910-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:a155d80ea6cee511a3694b108c4494a39f42de11ee4e61e72bc424c490e46457"}, {file = "mypy-0.910-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:b94e4b785e304a04ea0828759172a15add27088520dc7e49ceade7834275bedb"}, @@ -1149,6 +1532,10 @@ mypy-extensions = [ {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"}, {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"}, ] +natsort = [ + {file = "natsort-8.1.0-py3-none-any.whl", hash = "sha256:f59988d2f24e77b6b56f8a8f882d5df6b3b637e09e075abc67b486d59fba1a4b"}, + {file = "natsort-8.1.0.tar.gz", hash = "sha256:c7c1f3f27c375719a4dfcab353909fe39f26c2032a062a8c80cc844eaaca0445"}, +] nodeenv = [ {file = "nodeenv-1.6.0-py2.py3-none-any.whl", hash = "sha256:621e6b7076565ddcacd2db0294c0381e01fd28945ab36bcf00f41c5daf63bef7"}, {file = "nodeenv-1.6.0.tar.gz", hash = "sha256:3ef13ff90291ba2a4a7a4ff9a979b63ffdd00a464dbe04acf0ea6471517a4c2b"}, @@ -1255,6 +1642,37 @@ responses = [ {file = "responses-0.21.0-py3-none-any.whl", hash = "sha256:2dcc863ba63963c0c3d9ee3fa9507cbe36b7d7b0fccb4f0bdfd9e96c539b1487"}, {file = "responses-0.21.0.tar.gz", hash = "sha256:b82502eb5f09a0289d8e209e7bad71ef3978334f56d09b444253d5ad67bf5253"}, ] +"ruamel.yaml" = [ + {file = "ruamel.yaml-0.17.21-py3-none-any.whl", hash = "sha256:742b35d3d665023981bd6d16b3d24248ce5df75fdb4e2924e93a05c1f8b61ca7"}, + {file = "ruamel.yaml-0.17.21.tar.gz", hash = "sha256:8b7ce697a2f212752a35c1ac414471dc16c424c9573be4926b56ff3f5d23b7af"}, +] +"ruamel.yaml.clib" = [ + {file = "ruamel.yaml.clib-0.2.6-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6e7be2c5bcb297f5b82fee9c665eb2eb7001d1050deaba8471842979293a80b0"}, + {file = "ruamel.yaml.clib-0.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:221eca6f35076c6ae472a531afa1c223b9c29377e62936f61bc8e6e8bdc5f9e7"}, + {file = "ruamel.yaml.clib-0.2.6-cp310-cp310-win32.whl", hash = "sha256:1070ba9dd7f9370d0513d649420c3b362ac2d687fe78c6e888f5b12bf8bc7bee"}, + {file = "ruamel.yaml.clib-0.2.6-cp310-cp310-win_amd64.whl", hash = "sha256:77df077d32921ad46f34816a9a16e6356d8100374579bc35e15bab5d4e9377de"}, + {file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-macosx_10_6_intel.whl", hash = "sha256:cfdb9389d888c5b74af297e51ce357b800dd844898af9d4a547ffc143fa56751"}, + {file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:7b2927e92feb51d830f531de4ccb11b320255ee95e791022555971c466af4527"}, + {file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-win32.whl", hash = "sha256:ada3f400d9923a190ea8b59c8f60680c4ef8a4b0dfae134d2f2ff68429adfab5"}, + {file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-win_amd64.whl", hash = "sha256:de9c6b8a1ba52919ae919f3ae96abb72b994dd0350226e28f3686cb4f142165c"}, + {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d67f273097c368265a7b81e152e07fb90ed395df6e552b9fa858c6d2c9f42502"}, + {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:72a2b8b2ff0a627496aad76f37a652bcef400fd861721744201ef1b45199ab78"}, + {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-win32.whl", hash = "sha256:9efef4aab5353387b07f6b22ace0867032b900d8e91674b5d8ea9150db5cae94"}, + {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-win_amd64.whl", hash = "sha256:846fc8336443106fe23f9b6d6b8c14a53d38cef9a375149d61f99d78782ea468"}, + {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0847201b767447fc33b9c235780d3aa90357d20dd6108b92be544427bea197dd"}, + {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:78988ed190206672da0f5d50c61afef8f67daa718d614377dcd5e3ed85ab4a99"}, + {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-win32.whl", hash = "sha256:a49e0161897901d1ac9c4a79984b8410f450565bbad64dbfcbf76152743a0cdb"}, + {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-win_amd64.whl", hash = "sha256:bf75d28fa071645c529b5474a550a44686821decebdd00e21127ef1fd566eabe"}, + {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a32f8d81ea0c6173ab1b3da956869114cae53ba1e9f72374032e33ba3118c233"}, + {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7f7ecb53ae6848f959db6ae93bdff1740e651809780822270eab111500842a84"}, + {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-win32.whl", hash = "sha256:89221ec6d6026f8ae859c09b9718799fea22c0e8da8b766b0b2c9a9ba2db326b"}, + {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-win_amd64.whl", hash = "sha256:31ea73e564a7b5fbbe8188ab8b334393e06d997914a4e184975348f204790277"}, + {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dc6a613d6c74eef5a14a214d433d06291526145431c3b964f5e16529b1842bed"}, + {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:1866cf2c284a03b9524a5cc00daca56d80057c5ce3cdc86a52020f4c720856f0"}, + {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-win32.whl", hash = "sha256:3fb9575a5acd13031c57a62cc7823e5d2ff8bc3835ba4d94b921b4e6ee664104"}, + {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-win_amd64.whl", hash = "sha256:825d5fccef6da42f3c8eccd4281af399f21c02b32d98e113dbc631ea6a6ecbc7"}, + {file = "ruamel.yaml.clib-0.2.6.tar.gz", hash = "sha256:4ff604ce439abb20794f05613c374759ce10e3595d1867764dd1ae675b85acbd"}, +] six = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, @@ -1263,6 +1681,10 @@ snowballstemmer = [ {file = "snowballstemmer-2.2.0-py2.py3-none-any.whl", hash = "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a"}, {file = "snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1"}, ] +soupsieve = [ + {file = "soupsieve-2.3.2.post1-py3-none-any.whl", hash = "sha256:3b2503d3c7084a42b1ebd08116e5f81aadfaea95863628c80a3b774a11b7c759"}, + {file = "soupsieve-2.3.2.post1.tar.gz", hash = "sha256:fc53893b3da2c33de295667a0e19f078c14bf86544af307354de5fcf12a3f30d"}, +] sphinx = [ {file = "Sphinx-4.5.0-py3-none-any.whl", hash = "sha256:ebf612653238bcc8f4359627a9b7ce44ede6fdd75d9d30f68255c7383d3a6226"}, {file = "Sphinx-4.5.0.tar.gz", hash = "sha256:7bf8ca9637a4ee15af412d1a1d9689fec70523a68ca9bb9127c2f3eeb344e2e6"}, @@ -1275,10 +1697,29 @@ sphinx-autobuild = [ {file = "sphinx-autobuild-2021.3.14.tar.gz", hash = "sha256:de1ca3b66e271d2b5b5140c35034c89e47f263f2cd5db302c9217065f7443f05"}, {file = "sphinx_autobuild-2021.3.14-py3-none-any.whl", hash = "sha256:8fe8cbfdb75db04475232f05187c776f46f6e9e04cacf1e49ce81bdac649ccac"}, ] +sphinx-autodoc-typehints = [ + {file = "sphinx_autodoc_typehints-1.18.3-py3-none-any.whl", hash = "sha256:20294de2a818bda04953c5cb302ec5af46138c81980ad9efa6d8fc1fc4242518"}, + {file = "sphinx_autodoc_typehints-1.18.3.tar.gz", hash = "sha256:c04d8f8d70e988960e25b206af39a90df84e7e2c085bb24e123bc3684021b313"}, +] +sphinx-jinja2-compat = [ + {file = "sphinx_jinja2_compat-0.1.2-py3-none-any.whl", hash = "sha256:6fd822875a3b6850657423ecd496ed578c124e078169442f2c6d0908124dbd38"}, + {file = "sphinx_jinja2_compat-0.1.2.tar.gz", hash = "sha256:6848882c1841a182c9cb41cfddb2f711b308fe088991cee349d1aad527a96956"}, +] +sphinx-prompt = [ + {file = "sphinx_prompt-1.5.0-py3-none-any.whl", hash = "sha256:fa4e90d8088b5a996c76087d701fc7e31175f8b9dc4aab03a507e45051067162"}, +] sphinx-rtd-theme = [ {file = "sphinx_rtd_theme-1.0.0-py2.py3-none-any.whl", hash = "sha256:4d35a56f4508cfee4c4fb604373ede6feae2a306731d533f409ef5c3496fdbd8"}, {file = "sphinx_rtd_theme-1.0.0.tar.gz", hash = "sha256:eec6d497e4c2195fa0e8b2016b337532b8a699a68bcb22a512870e16925c6a5c"}, ] +sphinx-tabs = [ + {file = "sphinx-tabs-3.3.1.tar.gz", hash = "sha256:d10dd7fb2700329b8e5948ab9f8e3ef54fff30f79d2e42cfd1b0089ae26e8c5e"}, + {file = "sphinx_tabs-3.3.1-py3-none-any.whl", hash = "sha256:73209aa769246501f6de9e33051cfd2d54f5900e0cc28a63367d8e4af4c0db5d"}, +] +sphinx-toolbox = [ + {file = "sphinx_toolbox-3.1.2-py3-none-any.whl", hash = "sha256:71b615c135ac993dd8cc4b7d291888ad2f5437049071f2299152dbae69a1db41"}, + {file = "sphinx_toolbox-3.1.2.tar.gz", hash = "sha256:c05860b44e9ad17d16df52a594736839190ded72e55bb38e80f4972afea47b74"}, +] sphinxcontrib-applehelp = [ {file = "sphinxcontrib-applehelp-1.0.2.tar.gz", hash = "sha256:a072735ec80e7675e3f432fcae8610ecf509c5f1869d17e2eecff44389cdbc58"}, {file = "sphinxcontrib_applehelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:806111e5e962be97c29ec4c1e7fe277bfd19e9652fb1a4392105b43e01af885a"}, @@ -1382,6 +1823,10 @@ virtualenv = [ {file = "virtualenv-20.14.1-py2.py3-none-any.whl", hash = "sha256:e617f16e25b42eb4f6e74096b9c9e37713cf10bf30168fb4a739f3fa8f898a3a"}, {file = "virtualenv-20.14.1.tar.gz", hash = "sha256:ef589a79795589aada0c1c5b319486797c03b67ac3984c48c669c0e4f50df3a5"}, ] +webencodings = [ + {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, + {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, +] wrapt = [ {file = "wrapt-1.14.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:1b376b3f4896e7930f1f772ac4b064ac12598d1c38d04907e696cc4d794b43d3"}, {file = "wrapt-1.14.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:903500616422a40a98a5a3c4ff4ed9d0066f3b4c951fa286018ecdf0750194ef"}, diff --git a/pyarr/base.py b/pyarr/base.py index 71e142e..1abd958 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -292,7 +292,7 @@ def del_blocklist_bulk( def get_quality_profile( self, id_: Optional[int] = None ) -> Union[list[dict[str, Any]], dict[Any, Any]]: - """Gets all quality profiles or specific one with id_ + """Gets all quality profiles or specific one with id Args: id_ (Optional[int], optional): Quality profile id from database. Defaults to None. diff --git a/pyarr/lidarr.py b/pyarr/lidarr.py index a53b1be..cc11324 100644 --- a/pyarr/lidarr.py +++ b/pyarr/lidarr.py @@ -547,7 +547,7 @@ def delete_track_file( # GET /metadataprofile/{id} def get_metadata_profile(self, id_: Optional[int] = None) -> list[dict[str, Any]]: - """Gets all metadata profiles or specific one with id_ + """Gets all metadata profiles or specific one with id Args: id_ (Optional[int], optional): Metadata profile id from database. Defaults to None. diff --git a/pyarr/models/sonarr.py b/pyarr/models/sonarr.py index 76a83a0..6072c8a 100644 --- a/pyarr/models/sonarr.py +++ b/pyarr/models/sonarr.py @@ -1,18 +1,41 @@ from enum import Enum +import enum_tools.documentation +enum_tools.documentation.INTERACTIVE = True + + +@enum_tools.documentation.document_enum class SonarrCommands(str, Enum): """Sonarr commands.""" + BACKUP = "Backup" + """No parameters required""" DOWNLOADED_EPISODES_SCAN = "DownloadedEpisodesScan" + """TBC Still need to test required parameters""" EPISODE_SEARCH = "EpisodeSearch" + """episodeIds (lsit[int], optional) - One or more episodeIds in a list""" + MISSING_EPISODE_SEARCH = "missingEpisodeSearch" + """No parameters required""" REFRESH_SERIES = "RefreshSeries" + """ + seriesId (int, optional) - If not set, all series will be refreshed and scanned + """ RENAME_SERIES = "RenameSeries" + """seriesIds (list[int]) - List of Series IDs to rename""" + RENAME_FILES = "RenameFiles" + """files (list[int]) - List of File IDs to rename""" RESCAN_SERIES = "RescanSeries" + """seriesId (int, optional) - If not set all series will be scanned""" + RSS_SYNC = "RssSync" + """No parameters required""" SEASON_SEARCH = "SeasonSearch" + """seriesId (int), seasonNumber (int) both are required""" SERIES_SEARCH = "SeriesSearch" + """seriesId (int) required""" +@enum_tools.documentation.document_enum class SonarrSortKeys(str, Enum): """Sonarr sort keys.""" diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index 68a7967..f8c2388 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -92,27 +92,40 @@ def get_command( return self.assert_return(path, self.ver_uri, dict if id_ else list) # POST /command - # TODO: confirm response, kwargs - def post_command(self, name: SonarrCommands, **kwargs) -> Any: + # TODO: Add more logic to ensure correct kwargs for a command + # TODO: look into DownloadedEpisodesScan and how to use it + def post_command( + self, name: SonarrCommands, **kwargs: Optional[Union[int, list[int]]] + ) -> dict[str, Any]: """Performs any of the predetermined Sonarr command routines - Note: - For additional kwargs: - See https://github.com/Sonarr/Sonarr/wiki/Command - Args: - name (SonarrCommands): command name that should be execured - **kwargs: additional parameters for specific commands - + name (SonarrCommands): Command that should be executed + **kwargs: Additional parameters for specific commands. See note. + Note: + Required Kwargs: + RefreshSeries: seriesId (int, optional) - If not set, all series will be refreshed and scanned + RescanSeries: seriesId (int, optional) - If not set all series will be scanned + EpisodeSearch: episodeIds (lsit[int], optional) - One or more episodeIds in a list + SeasonSearch: seriesId (int) seasonNumber (int) + SeriesSearch: seriesId (int) + DownloadedEpisodesScan: + RssSync: None + RenameFiles: files (list[int]) - List of File IDs to rename + RenameSeries: seriesIds (list[int]) List of Series IDs to rename + Backup: None + missingEpisodeSearch: None Returns: - JSON: Array + dict[str, Any]: Dictionary containing job """ - data = { + data: dict[str, Any] = { "name": name, - **kwargs, } + if kwargs: + data |= kwargs + print(data) return self._post("command", self.ver_uri, data=data) ## EPISODE diff --git a/pyproject.toml b/pyproject.toml index a4ad5e6..05fbf53 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,6 +46,8 @@ pytest-cov = "^3.0.0" pylint = "^2.14.3" responses = "^0.21.0" pytest-responses = "^0.5.0" +enum-tools = "^0.9.0" +sphinx-toolbox = "^3.1.2" [tool.black] line-length = 88 diff --git a/sphinx-docs/conf.py b/sphinx-docs/conf.py index de4226f..d916087 100644 --- a/sphinx-docs/conf.py +++ b/sphinx-docs/conf.py @@ -25,6 +25,7 @@ "sphinx_rtd_theme", "sphinx.ext.napoleon", "sphinx.ext.autosectionlabel", + "enum_tools.autoenum", ] # -- Napoleon Settings ----------------------------------------------------- diff --git a/sphinx-docs/models/common.rst b/sphinx-docs/models/common.rst new file mode 100644 index 0000000..9cc6054 --- /dev/null +++ b/sphinx-docs/models/common.rst @@ -0,0 +1,5 @@ +Common +---------------------------------------- +.. automodule:: pyarr.models.common + :members: + :inherited-members: diff --git a/sphinx-docs/models/lidarr.rst b/sphinx-docs/models/lidarr.rst new file mode 100644 index 0000000..5dfe72a --- /dev/null +++ b/sphinx-docs/models/lidarr.rst @@ -0,0 +1,5 @@ +Lidarr +---------------------------------------- +.. automodule:: pyarr.models.lidarr + :members: + :inherited-members: diff --git a/sphinx-docs/models/radarr.rst b/sphinx-docs/models/radarr.rst new file mode 100644 index 0000000..ce7ff71 --- /dev/null +++ b/sphinx-docs/models/radarr.rst @@ -0,0 +1,5 @@ +Radarr +---------------------------------------- +.. automodule:: pyarr.models.radarr + :members: + :inherited-members: diff --git a/sphinx-docs/models/readarr.rst b/sphinx-docs/models/readarr.rst new file mode 100644 index 0000000..b64f466 --- /dev/null +++ b/sphinx-docs/models/readarr.rst @@ -0,0 +1,5 @@ +Readarr +---------------------------------------- +.. automodule:: pyarr.models.readarr + :members: + :inherited-members: diff --git a/sphinx-docs/models/sonarr.rst b/sphinx-docs/models/sonarr.rst new file mode 100644 index 0000000..3bc3d3e --- /dev/null +++ b/sphinx-docs/models/sonarr.rst @@ -0,0 +1,5 @@ +Sonarr +---------------------------------------- +.. automodule:: pyarr.models.sonarr + :members: + :inherited-members: diff --git a/sphinx-docs/lidarr.rst b/sphinx-docs/modules/lidarr.rst similarity index 100% rename from sphinx-docs/lidarr.rst rename to sphinx-docs/modules/lidarr.rst diff --git a/sphinx-docs/radarr.rst b/sphinx-docs/modules/radarr.rst similarity index 100% rename from sphinx-docs/radarr.rst rename to sphinx-docs/modules/radarr.rst diff --git a/sphinx-docs/readarr.rst b/sphinx-docs/modules/readarr.rst similarity index 100% rename from sphinx-docs/readarr.rst rename to sphinx-docs/modules/readarr.rst diff --git a/sphinx-docs/sonarr.rst b/sphinx-docs/modules/sonarr.rst similarity index 100% rename from sphinx-docs/sonarr.rst rename to sphinx-docs/modules/sonarr.rst diff --git a/sphinx-docs/toc.rst b/sphinx-docs/toc.rst index 6d2169e..df64e3a 100644 --- a/sphinx-docs/toc.rst +++ b/sphinx-docs/toc.rst @@ -10,7 +10,16 @@ :caption: Modules :titlesonly: - sonarr - radarr - readarr - lidarr + modules/sonarr + modules/radarr + modules/readarr + modules/lidarr + +.. toctree:: + :caption: Models + + models/common + models/sonarr + models/radarr + models/readarr + models/lidarr diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index a9a657f..864b2f1 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -4,9 +4,13 @@ import pytest -from pyarr.exceptions import PyarrMissingArgument +from pyarr.exceptions import ( + PyarrMissingArgument, + PyarrRecordNotFound, + PyarrResourceNotFound, +) from pyarr.models.common import PyarrSortDirection -from pyarr.models.sonarr import SonarrSortKeys +from pyarr.models.sonarr import SonarrCommands, SonarrSortKeys from tests import load_fixture @@ -45,6 +49,9 @@ def test__series_json(responses, sonarr_client): @pytest.mark.usefixtures def test_get_command(responses, sonarr_client): + """Check get_command()""" + + # No args responses.add( responses.GET, "https://127.0.0.1:8989/api/v3/command", @@ -55,6 +62,7 @@ def test_get_command(responses, sonarr_client): data = sonarr_client.get_command() assert isinstance(data, list) + # When an ID is supplied responses.add( responses.GET, "https://127.0.0.1:8989/api/v3/command/4327826", @@ -65,6 +73,59 @@ def test_get_command(responses, sonarr_client): data = sonarr_client.get_command(4327826) assert isinstance(data, dict) + # when an incorrect ID is supplied, not found response + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/command/4321", + headers={"Content-Type": "application/json"}, + status=404, + ) + with contextlib.suppress(PyarrResourceNotFound): + data = sonarr_client.get_command(4321) + assert False + + +@pytest.mark.usefixtures +def test_post_command(responses, sonarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8989/api/v3/command", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/command.json"), + status=201, + ) + + data = sonarr_client.post_command(name=SonarrCommands.REFRESH_SERIES) + assert isinstance(data, dict) + data = sonarr_client.post_command(SonarrCommands.REFRESH_SERIES, seriesId=1) + assert isinstance(data, dict) + data = sonarr_client.post_command(SonarrCommands.RESCAN_SERIES) + assert isinstance(data, dict) + data = sonarr_client.post_command(SonarrCommands.RESCAN_SERIES, seriesId=1) + assert isinstance(data, dict) + data = sonarr_client.post_command( + SonarrCommands.EPISODE_SEARCH, episodeIds=[1, 2, 3] + ) + assert isinstance(data, dict) + data = sonarr_client.post_command( + SonarrCommands.SEASON_SEARCH, seriesId=1, seasonNumber=1 + ) + assert isinstance(data, dict) + data = sonarr_client.post_command(SonarrCommands.SERIES_SEARCH, seriesId=1) + assert isinstance(data, dict) + data = sonarr_client.post_command(SonarrCommands.DOWNLOADED_EPISODES_SCAN) + assert isinstance(data, dict) + data = sonarr_client.post_command(SonarrCommands.RSS_SYNC) + assert isinstance(data, dict) + data = sonarr_client.post_command(SonarrCommands.RENAME_FILES, files=[1, 2, 3]) + assert isinstance(data, dict) + data = sonarr_client.post_command(SonarrCommands.RENAME_SERIES, seriesIds=[1, 2, 3]) + assert isinstance(data, dict) + data = sonarr_client.post_command(SonarrCommands.BACKUP) + assert isinstance(data, dict) + + data = sonarr_client.post_command(SonarrCommands.MISSING_EPISODE_SEARCH) + @pytest.mark.usefixtures def test_get_episode(responses, sonarr_client): @@ -90,6 +151,16 @@ def test_get_episode(responses, sonarr_client): data = sonarr_client.get_episode(1, True) assert isinstance(data, list) + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/episode/999", + headers={"Content-Type": "application/json"}, + status=404, + ) + with contextlib.suppress(PyarrResourceNotFound): + data = sonarr_client.get_episode(999) + assert False + @pytest.mark.usefixtures def test_get_episodes_by_series_id(responses, sonarr_client): @@ -104,6 +175,16 @@ def test_get_episodes_by_series_id(responses, sonarr_client): assert isinstance(data, list) + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/episode?seriesId=999", + headers={"Content-Type": "application/json"}, + status=404, + ) + with contextlib.suppress(PyarrResourceNotFound): + data = sonarr_client.get_episodes_by_series_id(999) + assert False + @pytest.mark.usefixtures def test_get_episode_by_episode_id(responses, sonarr_client): @@ -118,6 +199,16 @@ def test_get_episode_by_episode_id(responses, sonarr_client): assert isinstance(data, dict) + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/episode/999", + headers={"Content-Type": "application/json"}, + status=404, + ) + with contextlib.suppress(PyarrResourceNotFound): + data = sonarr_client.get_episode_by_episode_id(999) + assert False + @pytest.mark.usefixtures def test_upd_episode(responses, sonarr_client): @@ -134,6 +225,8 @@ def test_upd_episode(responses, sonarr_client): assert isinstance(data, dict) assert data["monitored"] == True + # TODO: Add test if incorrect data provided + @pytest.mark.usefixtures def test_get_episode_files_by_series_id(responses, sonarr_client): @@ -145,22 +238,17 @@ def test_get_episode_files_by_series_id(responses, sonarr_client): status=200, ) data = sonarr_client.get_episode_files_by_series_id(1) - assert isinstance(data, list) - -@pytest.mark.usefixtures -def test_get_episode_file(responses, sonarr_client): responses.add( responses.GET, - "https://127.0.0.1:8989/api/v3/episodefile/1", + "https://127.0.0.1:8989/api/v3/episodefile?seriesId=999", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/episodefile.json"), - status=200, + status=404, ) - data = sonarr_client.get_episode_file(1) - - assert isinstance(data, dict) + with contextlib.suppress(PyarrResourceNotFound): + data = sonarr_client.get_episode_files_by_series_id(999) + assert False @pytest.mark.usefixtures @@ -187,6 +275,16 @@ def test_get_episode_file(responses, sonarr_client): data = sonarr_client.get_episode_file(1, True) assert isinstance(data, list) + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/episodefile/999", + headers={"Content-Type": "application/json"}, + status=404, + ) + with contextlib.suppress(PyarrResourceNotFound): + data = sonarr_client.get_episode_file(999) + assert False + @pytest.mark.usefixtures def test_del_episode_file(responses, sonarr_client): @@ -200,6 +298,16 @@ def test_del_episode_file(responses, sonarr_client): data = sonarr_client.del_episode_file(1) assert isinstance(data, dict) + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/episodefile/999", + headers={"Content-Type": "application/json"}, + status=404, + ) + with contextlib.suppress(PyarrResourceNotFound): + data = sonarr_client.del_episode_file(999) + assert False + @pytest.mark.usefixtures def test_get_wanted(responses, sonarr_client): From 932ef07bdbbb7b17d3b723cef3313628149fe417 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Sat, 2 Jul 2022 19:20:57 +0000 Subject: [PATCH 09/53] test: Added final tests for Sonarr --- tests/fixtures/sonarr/file_quality.json | 11 +++++ tests/test_sonarr.py | 56 +++++++++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100644 tests/fixtures/sonarr/file_quality.json diff --git a/tests/fixtures/sonarr/file_quality.json b/tests/fixtures/sonarr/file_quality.json new file mode 100644 index 0000000..32cc5be --- /dev/null +++ b/tests/fixtures/sonarr/file_quality.json @@ -0,0 +1,11 @@ +{ + "quality": { + "quality": { + "id": 8 + }, + "revision": { + "version": 1, + "real": 0 + } + }, +} diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index 864b2f1..425b243 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -1,5 +1,6 @@ import contextlib from datetime import datetime +import json from warnings import warn import pytest @@ -309,6 +310,21 @@ def test_del_episode_file(responses, sonarr_client): assert False +@pytest.mark.usefixtures +def test_upd_episode_file_quality(responses, sonarr_client): + responses.add( + responses.PUT, + "https://127.0.0.1:8989/api/v3/episodefile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/episodefile.json"), + status=202, + ) + data = sonarr_client.upd_episode_file_quality( + 1, load_fixture("sonarr/file_quality.json") + ) + assert isinstance(data, dict) + + @pytest.mark.usefixtures def test_get_wanted(responses, sonarr_client): responses.add( @@ -523,6 +539,46 @@ def test_get_series(responses, sonarr_client): assert isinstance(data, dict) +def test_add_series(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/series/lookup?term=tvdb:123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/series_lookup.json"), + status=200, + ) + responses.add( + responses.POST, + "https://127.0.0.1:8989/api/v3/series", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/series.json"), + status=200, + ) + data = sonarr_client.add_series(tvdb_id=123456, quality_profile_id=0, root_dir="/") + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_upd_series(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/series/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/series.json"), + status=200, + ) + series = sonarr_client.get_series(1) + responses.add( + responses.PUT, + "https://127.0.0.1:8989/api/v3/series", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/series.json"), + status=202, + ) + data = sonarr_client.upd_series(data=series) + assert isinstance(data, dict) + + @pytest.mark.usefixtures def test_del_series(responses, sonarr_client): responses.add( From bda4e515a194fefaf4655e4d8bb855757954e517 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Sun, 3 Jul 2022 21:02:35 +0000 Subject: [PATCH 10/53] test: Adding base tests for Sonarr --- pyarr/base.py | 42 +++-- tests/fixtures/sonarr/calendar.json | 17 ++ tests/fixtures/sonarr/health.json | 1 + tests/fixtures/sonarr/metadata.json | 72 ++++++++ tests/fixtures/sonarr/metadata_all.json | 178 ++++++++++++++++++ tests/fixtures/sonarr/rootfolder.json | 12 ++ tests/fixtures/sonarr/rootfolder_all.json | 14 ++ tests/fixtures/sonarr/system_status.json | 29 +++ tests/fixtures/sonarr/update.json | 216 ++++++++++++++++++++++ tests/test_radarr.py | 0 tests/test_sonarr.py | 102 ++++++++++ 11 files changed, 668 insertions(+), 15 deletions(-) create mode 100644 tests/fixtures/sonarr/calendar.json create mode 100644 tests/fixtures/sonarr/health.json create mode 100644 tests/fixtures/sonarr/metadata.json create mode 100644 tests/fixtures/sonarr/metadata_all.json create mode 100644 tests/fixtures/sonarr/rootfolder.json create mode 100644 tests/fixtures/sonarr/rootfolder_all.json create mode 100644 tests/fixtures/sonarr/system_status.json create mode 100644 tests/fixtures/sonarr/update.json create mode 100644 tests/test_radarr.py diff --git a/pyarr/base.py b/pyarr/base.py index 1abd958..3868b12 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -52,8 +52,8 @@ def assert_return( # GET /calendar/ def get_calendar( self, - start_date: Optional[str] = None, - end_date: Optional[str] = None, + start_date: Optional[datetime] = None, + end_date: Optional[datetime] = None, unmonitored: bool = True, ) -> list[dict[str, Any]]: """Gets upcoming releases by monitored, if start/end are not @@ -69,11 +69,9 @@ def get_calendar( """ params: dict[str, Any] = {} if start_date: - params["start"] = datetime.strptime(start_date, "%Y-%m-%d").strftime( - "%Y-%m-%d" - ) + params["start"] = start_date.strftime("%Y-%m-%d") if end_date: - params["end"] = datetime.strptime(end_date, "%Y-%m-%d").strftime("%Y-%m-%d") + params["end"] = end_date.strftime("%Y-%m-%d") params["unmonitored"] = unmonitored return self.assert_return("calendar", self.ver_uri, list, params) @@ -81,13 +79,13 @@ def get_calendar( # SYSTEM # GET /system/status - def get_system_status(self) -> list[dict[str, Any]]: + def get_system_status(self) -> dict[str, Any]: """Gets system status Returns: - list[dict[str, Any]]: List of dictionaries with items + dict[str, Any]: Dictionary with items """ - return self.assert_return("system/status", self.ver_uri, list) + return self.assert_return("system/status", self.ver_uri, dict) # GET /health def get_health(self) -> list[dict[str, Any]]: @@ -99,13 +97,20 @@ def get_health(self) -> list[dict[str, Any]]: return self.assert_return("health", self.ver_uri, list) # GET /metadata - def get_metadata(self) -> list[dict[str, Any]]: + def get_metadata( + self, id_: Optional[int] = None + ) -> Union[list[dict[str, Any]], dict[str, Any]]: """Get all metadata consumer settings + Args: + id_ (Optional[int], optional): ID for specific metadata record + Returns: - list[dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items """ - return self.assert_return("metadata", self.ver_uri, list) + return self.assert_return( + f"metadata{f'/{id_}' if id_ else ''}", self.ver_uri, dict if id_ else list + ) # GET /update def get_update(self) -> list[dict[str, Any]]: @@ -117,13 +122,20 @@ def get_update(self) -> list[dict[str, Any]]: return self.assert_return("update", self.ver_uri, list) # GET /rootfolder - def get_root_folder(self) -> list[dict[str, Any]]: + def get_root_folder( + self, id_: Optional[int] = None + ) -> Union[list[dict[str, Any]], dict[str, Any]]: """Get list of root folders, free space and any unmappedFolders + Args: + id_ (Optional[int], optional): ID of the folder to return. Defaults to None. + Returns: - list[dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items """ - return self.assert_return("rootfolder", self.ver_uri, list) + return self.assert_return( + f"rootfolder{f'/{id_}' if id_ else ''}", self.ver_uri, dict if id_ else list + ) # DELETE /rootfolder def del_root_folder( diff --git a/tests/fixtures/sonarr/calendar.json b/tests/fixtures/sonarr/calendar.json new file mode 100644 index 0000000..83d16f8 --- /dev/null +++ b/tests/fixtures/sonarr/calendar.json @@ -0,0 +1,17 @@ +[ + { + "seriesId": 1, + "tvdbId": 1234567, + "episodeFileId": 0, + "seasonNumber": 4, + "episodeNumber": 2, + "title": "string", + "airDate": "2022-07-03", + "airDateUtc": "2022-07-04T01:00:00Z", + "overview": "string", + "hasFile": false, + "monitored": true, + "unverifiedSceneNumbering": false, + "id": 1 + } +] diff --git a/tests/fixtures/sonarr/health.json b/tests/fixtures/sonarr/health.json new file mode 100644 index 0000000..fe51488 --- /dev/null +++ b/tests/fixtures/sonarr/health.json @@ -0,0 +1 @@ +[] diff --git a/tests/fixtures/sonarr/metadata.json b/tests/fixtures/sonarr/metadata.json new file mode 100644 index 0000000..79117a8 --- /dev/null +++ b/tests/fixtures/sonarr/metadata.json @@ -0,0 +1,72 @@ +{ + "enable": true, + "name": "Kodi (XBMC) / Emby", + "fields": [ + { + "order": 0, + "name": "seriesMetadata", + "label": "Series Metadata", + "helpText": "tvshow.nfo with full series metadata", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "metadata" + }, + { + "order": 1, + "name": "seriesMetadataUrl", + "label": "Series Metadata URL", + "helpText": "tvshow.nfo with TheTVDB show URL (can be combined with 'Series Metadata')", + "value": false, + "type": "checkbox", + "advanced": true, + "section": "metadata" + }, + { + "order": 2, + "name": "episodeMetadata", + "label": "Episode Metadata", + "helpText": ".nfo", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "metadata" + }, + { + "order": 3, + "name": "seriesImages", + "label": "Series Images", + "helpText": "fanart.jpg, poster.jpg, banner.jpg", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "image" + }, + { + "order": 4, + "name": "seasonImages", + "label": "Season Images", + "helpText": "season##-poster.jpg, season##-banner.jpg, season-specials-poster.jpg, season-specials-banner.jpg", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "image" + }, + { + "order": 5, + "name": "episodeImages", + "label": "Episode Images", + "helpText": "-thumb.jpg", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "image" + } + ], + "implementationName": "Kodi (XBMC) / Emby", + "implementation": "XbmcMetadata", + "configContract": "XbmcMetadataSettings", + "infoLink": "https://wiki.servarr.com/sonarr/supported#xbmcmetadata", + "tags": [], + "id": 1 +} diff --git a/tests/fixtures/sonarr/metadata_all.json b/tests/fixtures/sonarr/metadata_all.json new file mode 100644 index 0000000..d1b4a7f --- /dev/null +++ b/tests/fixtures/sonarr/metadata_all.json @@ -0,0 +1,178 @@ +[ + { + "enable": true, + "name": "Kodi (XBMC) / Emby", + "fields": [ + { + "order": 0, + "name": "seriesMetadata", + "label": "Series Metadata", + "helpText": "tvshow.nfo with full series metadata", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "metadata" + }, + { + "order": 1, + "name": "seriesMetadataUrl", + "label": "Series Metadata URL", + "helpText": "tvshow.nfo with TheTVDB show URL (can be combined with 'Series Metadata')", + "value": false, + "type": "checkbox", + "advanced": true, + "section": "metadata" + }, + { + "order": 2, + "name": "episodeMetadata", + "label": "Episode Metadata", + "helpText": ".nfo", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "metadata" + }, + { + "order": 3, + "name": "seriesImages", + "label": "Series Images", + "helpText": "fanart.jpg, poster.jpg, banner.jpg", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "image" + }, + { + "order": 4, + "name": "seasonImages", + "label": "Season Images", + "helpText": "season##-poster.jpg, season##-banner.jpg, season-specials-poster.jpg, season-specials-banner.jpg", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "image" + }, + { + "order": 5, + "name": "episodeImages", + "label": "Episode Images", + "helpText": "-thumb.jpg", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "image" + } + ], + "implementationName": "Kodi (XBMC) / Emby", + "implementation": "XbmcMetadata", + "configContract": "XbmcMetadataSettings", + "infoLink": "https://wiki.servarr.com/sonarr/supported#xbmcmetadata", + "tags": [], + "id": 1 + }, + { + "enable": true, + "name": "Roksbox", + "fields": [ + { + "order": 0, + "name": "episodeMetadata", + "label": "Episode Metadata", + "helpText": "Season##\\filename.xml", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "metadata" + }, + { + "order": 1, + "name": "seriesImages", + "label": "Series Images", + "helpText": "Series Title.jpg", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "image" + }, + { + "order": 2, + "name": "seasonImages", + "label": "Season Images", + "helpText": "Season ##.jpg", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "image" + }, + { + "order": 3, + "name": "episodeImages", + "label": "Episode Images", + "helpText": "Season##\\filename.jpg", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "image" + } + ], + "implementationName": "Roksbox", + "implementation": "RoksboxMetadata", + "configContract": "RoksboxMetadataSettings", + "infoLink": "https://wiki.servarr.com/sonarr/supported#roksboxmetadata", + "tags": [], + "id": 3 + }, + { + "enable": true, + "name": "WDTV", + "fields": [ + { + "order": 0, + "name": "episodeMetadata", + "label": "Episode Metadata", + "helpText": "Season##\\filename.xml", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "metadata" + }, + { + "order": 1, + "name": "seriesImages", + "label": "Series Images", + "helpText": "folder.jpg", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "image" + }, + { + "order": 2, + "name": "seasonImages", + "label": "Season Images", + "helpText": "Season##\\folder.jpg", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "image" + }, + { + "order": 3, + "name": "episodeImages", + "label": "Episode Images", + "helpText": "Season##\\filename.metathumb", + "value": true, + "type": "checkbox", + "advanced": false, + "section": "image" + } + ], + "implementationName": "WDTV", + "implementation": "WdtvMetadata", + "configContract": "WdtvMetadataSettings", + "infoLink": "https://wiki.servarr.com/sonarr/supported#wdtvmetadata", + "tags": [], + "id": 2 + } +] diff --git a/tests/fixtures/sonarr/rootfolder.json b/tests/fixtures/sonarr/rootfolder.json new file mode 100644 index 0000000..4457797 --- /dev/null +++ b/tests/fixtures/sonarr/rootfolder.json @@ -0,0 +1,12 @@ +{ + "path": "/tv", + "accessible": true, + "freeSpace": 6172692185088, + "unmappedFolders": [ + { + "name": "string", + "path": "/tv/string" + } + ], + "id": 3 +} diff --git a/tests/fixtures/sonarr/rootfolder_all.json b/tests/fixtures/sonarr/rootfolder_all.json new file mode 100644 index 0000000..720dd56 --- /dev/null +++ b/tests/fixtures/sonarr/rootfolder_all.json @@ -0,0 +1,14 @@ +[ + { + "path": "/tv", + "accessible": true, + "freeSpace": 6172693233664, + "unmappedFolders": [ + { + "name": "string", + "path": "/tv/string" + } + ], + "id": 3 + } +] diff --git a/tests/fixtures/sonarr/system_status.json b/tests/fixtures/sonarr/system_status.json new file mode 100644 index 0000000..369e4de --- /dev/null +++ b/tests/fixtures/sonarr/system_status.json @@ -0,0 +1,29 @@ +{ + "appName": "Sonarr", + "version": "3.0.8.1507", + "buildTime": "2022-04-23T21:40:53Z", + "isDebug": false, + "isProduction": true, + "isAdmin": false, + "isUserInteractive": false, + "startupPath": "/app/sonarr/bin", + "appData": "/config", + "osName": "ubuntu", + "osVersion": "20.04", + "isMonoRuntime": true, + "isMono": true, + "isLinux": true, + "isOsx": false, + "isWindows": false, + "mode": "console", + "branch": "main", + "authentication": "forms", + "sqliteVersion": "3.31.1", + "urlBase": "", + "runtimeVersion": "6.12.0.122", + "runtimeName": "mono", + "startTime": "2022-05-23T09:49:13.983201Z", + "packageVersion": "3.0.8.1507-ls147", + "packageAuthor": "[linuxserver.io](https://linuxserver.io)", + "packageUpdateMechanism": "docker" +} diff --git a/tests/fixtures/sonarr/update.json b/tests/fixtures/sonarr/update.json new file mode 100644 index 0000000..da8c1f1 --- /dev/null +++ b/tests/fixtures/sonarr/update.json @@ -0,0 +1,216 @@ +[ + { + "version": "3.0.8.1507", + "branch": "main", + "releaseDate": "2022-04-24T04:41:49.037Z", + "fileName": "Sonarr.main.3.0.8.1507.linux.tar.gz", + "url": "https://download.sonarr.tv/v3/main/3.0.8.1507/Sonarr.main.3.0.8.1507.linux.tar.gz", + "installed": true, + "installedOn": "2022-04-25T16:40:47.585016Z", + "installable": false, + "latest": true, + "changes": { + "new": [ + "Added additional terms for matching French language releases", + "Update Monotorrent", + "Natural Sorting Manual Import Relative Paths", + "Add date picker for custom filter dates", + "Support for new Nyaa RSS Feed format", + "Add optional Source Title column to history", + "Support for parsing some releases from Spanish trackers" + ], + "fixed": [ + "QBittorrent unknown download state: forcedMetaDL", + "UI hiding search results with duplicate GUIDs", + "Interactive Search Filter not filtering multiple qualities in the same filter row", + "Typo in Connection Lost modal", + "A potential issue when extra files for multiple series have the same relative path", + "Importing file from UNC shared folder without job folder", + "Plex Library Updates", + "Skip extras in 'Extras' subfolder", + "Use Manage Episodes instead of Manual Import for title when managing episodes for a series", + "Manage Episodes button grayed out if there are no episodes", + "Escape Characters as needed for *znab queries", + "Clarify Qbit Content Path Error", + "API error when sending payload without optional parameters", + "Properly handle 119 error code from Synology Download Station", + "Error when trying to import an empty Plex Watchlist", + "Re-assigning file that was mapped to multiple episodes to only one of those episodes", + "Don't recursively add the current file name to new file name when '{Original Title}' is used in addition to other naming tokens", + "Validation when testing indexers, import lists, connections and download clients", + "Default sort key for wanted/missing API endpoint", + "Clean API request path before authentication", + "Twitter link", + "Delay health check notifications on startup", + "Automatic import of releases when file is not matched to series", + "Newznab requests for anime using season/episode numbers", + "Scrolling in Firefox in small window (requires refresh)", + "Releases without a job folder importing extra files from another release" + ] + }, + "hash": "3b652f5358ee3b9e206fd2d59c4b885e14f4531dab108ab659d9aca16543875c" + }, + { + "version": "3.0.7.1477", + "branch": "main", + "releaseDate": "2022-03-05T02:59:11.573Z", + "fileName": "Sonarr.main.3.0.7.1477.linux.tar.gz", + "url": "https://download.sonarr.tv/v3/main/3.0.7.1477/Sonarr.main.3.0.7.1477.linux.tar.gz", + "installed": false, + "installedOn": "2022-03-25T20:28:46.588946Z", + "installable": false, + "latest": false, + "changes": { + "new": [ + "Import subtitles from sub folders", + "Option to show audio/subtitle language on series details (first two unique languages will be shown)", + "TvdbId added to episode response from API", + "Option to show release group column on series list", + "Use TVDB's Episode ID as default uniqueid for Kodi metadata", + "Update Cert Validation Help Text", + "Auto focus input when editing release group during manual import", + "Schedule refresh and process monitored download tasks at high priority", + "Add qBittorrent sequential order and first and last piece priority options(#4870)", + "Add more groups that do not follow -Group format", + "Add backup size information", + "End Jackett 'all' endpoint support", + "Show filter indicator when filter is applied to a view", + "Add Release group to history for all events", + "OnApplicationUpdate Notifications", + "Add option to search for anime using standard episode numbers", + "Support various Anime Release Groups with spaces and dashes", + "Correctly Parse Groups D-Z0N3 and Fight-BB", + "Parse Select Groups that do not follow -Group Format", + "Parse Release Groups with a `-` in their name", + "Link indexer to specific download client", + "Implement OnDelete notification for Emby/Jellyfin", + "Add AppName to system status response", + "Gracefully handle broken release profiles when ppl swapped to older sonarr versions and back again", + "Added \"Season Pack\" to Interactive Search custom filters", + "Updated MediaInfo to 21.09, Sqlite to 3.32.1.0 and added support for mac osx arm64 arch. Deprecated osx x86.", + "Use https for thexem.info", + "Display Unknown Items in Activity Queue by default", + "Add {MediaInfo VideoDynamicRangeType} token for renaming", + "Updated naming examples", + "/ping endpoint for verifying that Sonarr is running and able to access it's DB", + "Show genres on series details page", + "Handle missingFiles status from qBit", + "Parse 960p as 720p instead of 480p", + "Manage episodes through Manual Import modal", + "Trakt Connection", + "Time column is first column on events page", + "Increase width of preferred word keys when editing", + "Add logging is release is rejected because no download URL is available", + "Release group column on series details", + "Set release group during Manual Import", + "Show preferred words in release profiles for tag details", + "Use filename without extension if SceneName is unavailable for preferred words", + "Allow Sonarr List Sync by Source Tag", + "Log which DB is being migrated", + "Import from Plex Watchlist", + "Show limited matching for aliases that are limited to specific formats/release groups" + ], + "fixed": [ + "Parsing of 540p season packs", + "Assume SABnzbd develop version is 3.0.0 if not specified", + "Clearing logs not updating UI once complete", + "Negative preferred word scores being trumped by 0 scores without any matches", + "On Import notifications for webhooks", + "favion.ico request does not require AuthenticationService", + "Don't automatically import if release title doesn't match series title", + "Parsing of quality in DP.WEB releases", + "Send download client name instead of type for grab events", + "Schedule refresh and process monitored download tasks at high priority", + "Recycle bin log message", + "Improve help text for download client Category", + "IPv4 instead of IP4", + "Sorting of some titles with acronyms or common words at the start", + "Profiles with upgrades disabled incorrectly allowing upgrades in some cases", + "Parsing of 4-digit absolute episode number with Exx in CRC", + "Updated ruTorrent stopped state helptext", + "Parsing episodes when full series does not have XEM mappings", + "Help text for Release Profile tags", + "Manual import not removing unparseable items from queue", + "Improved Indexer test failure message when no results are returned", + "Don't parse -EN, -ES, -CAT as Group", + "Better Cleansing of Tracker Announce Keys", + "Better Parsing of 4k Releases", + "Parse 4k H265 releases as 4k", + "Parse 3840x2160 as 4k", + "Mass Editor Footer on Smaller Screens", + "Clarify Indexer Priority Helptext", + "Parsing of numeric only titles that include a year", + "Avoid download path check false positives for Flood", + "Jump bar on series page not showing when window is made wider", + "Skip Flat Extra Files (Plex Naming) on Import", + "Skip various Extras directories during scan", + "Add missing MediaInfo VideoDynamicRangeType token to help modal", + "Re-added xem scene number verification warning to calendar.", + "Cleanse Notifiarr secret from URL in logs", + "Overflowing release profile terms", + "Convert Trakt list name to URL slug", + "Don't show absolute episode number in Manual Import if not available", + "Some manually imported episodes not being marked as imported and remove from queue", + "Sorting series without a Previous Airing", + "Parsing of 2160p BDRips", + "Download client name in history details", + "Grammar in tooltip of download button", + "Bad wiki fragment for mono health check", + "Improved messaging when episode file was detected as deleted from disk", + "Improve WEBDL detection of Netflix Rips", + "Report certificate validation failures when configuring Plex Media Server connection", + "Parsing of even more poorly named full season regexes", + "Deleting from Manage Episodes modal", + "Parsing of 4 digit episode number with 4 digit season number", + "Parsing of some multi-season release names", + "Increase width and truncate long titles on Import List Exclusions", + "Parsing of Ger.Dub releases as German", + "Parsing of more anime releases with Chinese and English titles", + "More restrictive repeated multi-episode parsing to avoid false positives", + "Don't attempt to import downloads that cannot be parsed", + "Parsing of poorly named anime above 1000 episodes", + "Get full path for download station instead of shared folder", + "Images for Connections using old branch name", + "Only blocklist pending releases when option is checked", + "api/v3/history/series \"includeSeries\" and \"includeEpisode\" query parameters", + "Quality Profile and Tag Import List filtering", + "Error message when RSS feed items lack a pubData element", + "Prowl notifications priority", + "Parsing of special episodes that lack a series title", + "On Delete events for Custom Scripts not being executed", + "Saving release profile when removing an item from Must (Not) Contain", + "Viewing tag details in settings", + "Use unmodified titles when searching Nyaa", + "Release profiles not saving if Must (Not) Contain is empty", + "Bad migration resulting Must Not Contain being overwritten by Must Contain", + "Qbit torrents treated as failed after error", + "Restoring scroll position when going back to index page", + "Parsing of Plex DVR date-based recordings", + "Commas in Must (Not) Contain regex" + ] + }, + "hash": "c41ee4596c71fb2981c72c41cf063b8197f0f643078b6312b2b529f0620e8b0b" + }, + { + "version": "3.0.6.1342", + "branch": "main", + "releaseDate": "2021-09-30T19:41:12.832Z", + "fileName": "Sonarr.main.3.0.6.1342.linux.tar.gz", + "url": "https://download.sonarr.tv/v3/main/3.0.6.1342/Sonarr.main.3.0.6.1342.linux.tar.gz", + "installed": false, + "installedOn": "2021-10-26T19:27:40.515346Z", + "installable": false, + "latest": false, + "changes": { + "new": [ + "Disable autocomplete of port number", + "Change Today color in calendar for better visibility" + ], + "fixed": [ + "Bumped mono workaround version from 6.10 to 7.x for btls trust chain coz they still haven't fixed it after over a year", + "Parsing of quality when release group contains Remux" + ] + }, + "hash": "e9132d86c7fad0524b0c707bd902643de17bbd79a306072a2ae8ced083a35489" + } +] diff --git a/tests/test_radarr.py b/tests/test_radarr.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index 425b243..fa2aea3 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -642,3 +642,105 @@ def test_lookup_series_by_tvdb_id(responses, sonarr_client): ) data = sonarr_client.lookup_series_by_tvdb_id(123456) assert isinstance(data, list) + + +#### BASE TESTS #### +# These tests are to make sure the base functions work as +# expected for each api + + +@pytest.mark.usefixtures +def test_get_calendar(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/calendar?start=2020-11-30&end=2020-12-01&unmonitored=True", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/calendar.json"), + status=200, + ) + start = datetime.strptime("Nov 30 2020 1:33PM", "%b %d %Y %I:%M%p") + end = datetime.strptime("Dec 1 2020 1:33PM", "%b %d %Y %I:%M%p") + data = sonarr_client.get_calendar(start_date=start, end_date=end) + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/calendar?start=2020-11-30&end=2020-12-01&unmonitored=False", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/calendar.json"), + status=200, + ) + start = datetime.strptime("Nov 30 2020 1:33PM", "%b %d %Y %I:%M%p") + end = datetime.strptime("Dec 1 2020 1:33PM", "%b %d %Y %I:%M%p") + data = sonarr_client.get_calendar(start_date=start, end_date=end, unmonitored=False) + assert isinstance(data, list) + + +def test_get_system_status(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/system/status", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/system_status.json"), + status=200, + ) + data = sonarr_client.get_system_status() + assert isinstance(data, dict) + + +def test_get_health(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/health", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/health.json"), + status=200, + ) + data = sonarr_client.get_health() + assert isinstance(data, list) + + +def test_get_metadata(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/metadata", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/metadata_all.json"), + status=200, + ) + data = sonarr_client.get_metadata() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/metadata/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/metadata.json"), + status=200, + ) + data = sonarr_client.get_metadata(1) + assert isinstance(data, dict) + + +def test_get_update(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/update", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/metadata_all.json"), + status=200, + ) + data = sonarr_client.get_update() + assert isinstance(data, list) + + +def test_get_root_folder(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/rootfolder/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/rootfolder.json"), + status=200, + ) + data = sonarr_client.get_root_folder(1) + assert isinstance(data, dict) From af1fed25aa745b70bf28e34b4a9d66586f3fdc23 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Tue, 5 Jul 2022 19:51:18 +0000 Subject: [PATCH 11/53] tests: updated tests for Sonarr & resolved issues with get_log --- pyarr/base.py | 79 +++++++++++++------- pyarr/models/common.py | 35 +++++++++ tests/fixtures/sonarr/backup.json | 18 +++++ tests/fixtures/sonarr/diskspace.json | 14 ++++ tests/fixtures/sonarr/log.json | 79 ++++++++++++++++++++ tests/test_sonarr.py | 104 ++++++++++++++++++++++++++- 6 files changed, 303 insertions(+), 26 deletions(-) create mode 100644 tests/fixtures/sonarr/backup.json create mode 100644 tests/fixtures/sonarr/diskspace.json create mode 100644 tests/fixtures/sonarr/log.json diff --git a/pyarr/base.py b/pyarr/base.py index 3868b12..d19fbeb 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -3,6 +3,14 @@ from requests import Response +from pyarr.exceptions import PyarrMissingArgument +from pyarr.models.common import ( + PyarrLogFilterKey, + PyarrLogFilterValue, + PyarrLogSortKey, + PyarrSortDirection, +) + from .const import PAGE, PAGE_SIZE from .request_handler import RequestHandler @@ -151,8 +159,7 @@ def del_root_folder( Returns: Response: HTTP Response """ - params = {"id": id_} - return self._delete("rootfolder", self.ver_uri, params=params) + return self._delete(f"rootfolder/{id_}", self.ver_uri) # GET /diskspace def get_disk_space(self) -> list[dict[str, Any]]: @@ -178,35 +185,57 @@ def get_backup(self) -> list[dict[str, Any]]: # GET /log def get_log( self, - page: int = PAGE, - page_size: int = PAGE_SIZE, - sort_key: str = "time", - sort_dir: str = "desc", - filter_key: Optional[str] = None, - filter_value: str = "All", - ) -> list[dict[str, Any]]: + page: Optional[int] = None, + page_size: Optional[int] = None, + sort_key: Optional[PyarrLogSortKey] = None, + sort_dir: Optional[PyarrSortDirection] = None, + filter_key: Optional[PyarrLogFilterKey] = None, + filter_value: Optional[PyarrLogFilterValue] = None, + ) -> dict[str, Any]: """Gets logs from instance Args: - page (int, optional): Specifiy page to return. Defaults to PAGE. - page_size (int, optional): Number of items per page. Defaults to PAGE_SIZE. - sort_key (str, optional): Field to sort by. Defaults to "time". - sort_dir (str, optional): Direction to sort. Defaults to "desc". - filter_key (Optional[str], optional): Key to filter by. Defaults to None. - filter_value (str, optional): Value of the filter. Defaults to "All". + page (Optional[int], optional): Specifiy page to return. Defaults to None. + page_size (Optional[int], optional): Number of items per page. Defaults to None. + sort_key (Optional[PyarrLogSortKey], optional): Field to sort by. Defaults to None. + sort_dir (Optional[PyarrSortDirection], optional): Direction to sort. Defaults to None. + filter_key (Optional[PyarrLogFilterKey], optional): Key to filter by. Defaults to None. + filter_value (Optional[PyarrLogFilterValue], optional): Value of the filter. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + dict[str, Any]: List of dictionaries with items """ - params = { - "page": page, - "pageSize": page_size, - "sortKey": sort_key, - "sortDir": sort_dir, - "filterKey": filter_key, - "filterValue": filter_value, - } - return self.assert_return("log", self.ver_uri, list, params) + params: dict[ + str, + Union[ + int, + PyarrLogSortKey, + PyarrSortDirection, + PyarrLogFilterKey, + PyarrLogFilterValue, + ], + ] = {} + if page: + params["page"] = page + + if page_size: + params["pageSize"] = page_size + + if sort_key and sort_dir: + params["sortKey"] = sort_key + params["sortDirection"] = sort_dir + elif sort_key or sort_dir: + raise PyarrMissingArgument("sort_key and sort_dir must be used together") + + if filter_key and filter_value: + params["filterKey"] = filter_key + params["filterValue"] = filter_value + elif filter_key or filter_value: + raise PyarrMissingArgument( + "filter_key and filter_value must be used together" + ) + + return self.assert_return("log", self.ver_uri, dict, params) # GET /history # TODO: check the ID on this method may need to move to specific APIs diff --git a/pyarr/models/common.py b/pyarr/models/common.py index 42e105b..bfd80ab 100644 --- a/pyarr/models/common.py +++ b/pyarr/models/common.py @@ -7,3 +7,38 @@ class PyarrSortDirection(str, Enum): ASC = "ascending" DEFAULT = "default" DESC = "descending" + + +class PyarrLogSortKey(str, Enum): + """Log Sort Keys""" + + ID = "Id" + LEVEL = "level" + TIME = "time" + LOGGER = "logger" + MESSAGE = "message" + EXCEPTION = "exception" + EXCEPTION_TYPE = "exceptionType" + + +class PyarrLogFilterKey(str, Enum): + """Log filter keys + + Note: + There may be more, however these are yet to be identified + """ + + LEVEL = "level" + + +class PyarrLogFilterValue(str, Enum): + """Log filter values + + Note: + There may be more, however these are yet to be identified + """ + + ALL = "all" + INFO = "info" + WARN = "warn" + ERROR = "error" diff --git a/tests/fixtures/sonarr/backup.json b/tests/fixtures/sonarr/backup.json new file mode 100644 index 0000000..b76fe7f --- /dev/null +++ b/tests/fixtures/sonarr/backup.json @@ -0,0 +1,18 @@ +[ + { + "name": "sonarr_backup_v3.0.8.1507_2022.07.04_11.38.40.zip", + "path": "/backup/scheduled/sonarr_backup_v3.0.8.1507_2022.07.04_11.38.40.zip", + "type": "scheduled", + "size": 4337535, + "time": "2022-07-04T10:38:46.1390372Z", + "id": 1009957364 + }, + { + "name": "sonarr_backup_v3.0.8.1507_2022.06.30_20.44.58.zip", + "path": "/backup/manual/sonarr_backup_v3.0.8.1507_2022.06.30_20.44.58.zip", + "type": "manual", + "size": 4364309, + "time": "2022-06-30T19:45:03.6922108Z", + "id": 246171971 + } +] diff --git a/tests/fixtures/sonarr/diskspace.json b/tests/fixtures/sonarr/diskspace.json new file mode 100644 index 0000000..51cd6bc --- /dev/null +++ b/tests/fixtures/sonarr/diskspace.json @@ -0,0 +1,14 @@ +[ + { + "path": "/", + "label": "", + "freeSpace": 12423028736, + "totalSpace": 42924511232 + }, + { + "path": "/config", + "label": "", + "freeSpace": 12423028736, + "totalSpace": 42924511232 + } +] diff --git a/tests/fixtures/sonarr/log.json b/tests/fixtures/sonarr/log.json new file mode 100644 index 0000000..9afef4d --- /dev/null +++ b/tests/fixtures/sonarr/log.json @@ -0,0 +1,79 @@ +{ + "page": 1, + "pageSize": 10, + "sortKey": "Id", + "sortDirection": "ascending", + "totalRecords": 10948, + "records": [ + { + "time": "2022-06-28T00:56:28.556828Z", + "level": "info", + "logger": "RssSyncService", + "message": "Starting RSS Sync", + "id": 502687 + }, + { + "time": "2022-06-28T00:56:29.090777Z", + "level": "info", + "logger": "DownloadDecisionMaker", + "message": "Processing 50 releases", + "id": 502688 + }, + { + "time": "2022-06-28T00:56:29.198058Z", + "level": "info", + "logger": "RssSyncService", + "message": "RSS Sync Completed. Reports found: 50, Reports grabbed: 0", + "id": 502689 + }, + { + "time": "2022-06-28T01:43:59.706292Z", + "level": "info", + "logger": "SceneMappingService", + "message": "Updating Scene mappings", + "id": 502690 + }, + { + "time": "2022-06-28T01:56:29.940573Z", + "level": "info", + "logger": "RssSyncService", + "message": "Starting RSS Sync", + "id": 502691 + }, + { + "time": "2022-06-28T01:56:30.494698Z", + "level": "info", + "logger": "DownloadDecisionMaker", + "message": "Processing 50 releases", + "id": 502692 + }, + { + "time": "2022-06-28T01:56:30.602125Z", + "level": "info", + "logger": "RssSyncService", + "message": "RSS Sync Completed. Reports found: 50, Reports grabbed: 0", + "id": 502693 + }, + { + "time": "2022-06-28T02:56:31.159689Z", + "level": "info", + "logger": "RssSyncService", + "message": "Starting RSS Sync", + "id": 502694 + }, + { + "time": "2022-06-28T02:56:31.84025Z", + "level": "info", + "logger": "DownloadDecisionMaker", + "message": "Processing 50 releases", + "id": 502695 + }, + { + "time": "2022-06-28T02:56:32.126268Z", + "level": "info", + "logger": "RssSyncService", + "message": "RSS Sync Completed. Reports found: 50, Reports grabbed: 0", + "id": 502696 + } + ] +} diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index fa2aea3..e10f1e6 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -10,7 +10,12 @@ PyarrRecordNotFound, PyarrResourceNotFound, ) -from pyarr.models.common import PyarrSortDirection +from pyarr.models.common import ( + PyarrLogFilterKey, + PyarrLogFilterValue, + PyarrLogSortKey, + PyarrSortDirection, +) from pyarr.models.sonarr import SonarrCommands, SonarrSortKeys from tests import load_fixture @@ -735,6 +740,16 @@ def test_get_update(responses, sonarr_client): def test_get_root_folder(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/rootfolder", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/rootfolder_all.json"), + status=200, + ) + data = sonarr_client.get_root_folder() + assert isinstance(data, list) + responses.add( responses.GET, "https://127.0.0.1:8989/api/v3/rootfolder/1", @@ -744,3 +759,90 @@ def test_get_root_folder(responses, sonarr_client): ) data = sonarr_client.get_root_folder(1) assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_del_root_folder(responses, sonarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/rootfolder/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/delete.json"), + status=200, + ) + data = sonarr_client.del_root_folder(1) + assert isinstance(data, dict) + + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/rootfolder/999", + headers={"Content-Type": "application/json"}, + status=404, + ) + with contextlib.suppress(PyarrResourceNotFound): + data = sonarr_client.del_root_folder(999) + assert False + + +def test_get_disk_space(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/diskspace", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/diskspace.json"), + status=200, + ) + data = sonarr_client.get_disk_space() + assert isinstance(data, list) + + +def test_get_backup(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/system/backup", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/backup.json"), + status=200, + ) + data = sonarr_client.get_backup() + assert isinstance(data, list) + + +def test_get_log(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/log", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/log.json"), + status=200, + ) + data = sonarr_client.get_log() + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/log?page=10&pageSize=10&sortKey=time&sortDirection=descending", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/log.json"), + status=200, + ) + data = sonarr_client.get_log( + page=10, + page_size=10, + sort_key=PyarrLogSortKey.TIME, + sort_dir=PyarrSortDirection.DESC, + ) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_log(sort_key=PyarrLogSortKey.TIME) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_log(sort_dir=PyarrSortDirection.DESC) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_log(filter_key=PyarrLogFilterKey.LEVEL) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_log(filter_value=PyarrLogFilterValue.ALL) + assert False From 43bf35188afa1960bdd06cb99c8fa1121d563775 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Thu, 7 Jul 2022 20:29:10 +0000 Subject: [PATCH 12/53] tests: Added more tests and fixed type hint issues --- pyarr/base.py | 96 +++++++++++--------- pyarr/models/common.py | 22 ++++- pyarr/models/sonarr.py | 3 +- pyarr/sonarr.py | 51 +++++++++-- tests/fixtures/sonarr/blocklist.json | 67 ++++++++++++++ tests/fixtures/sonarr/history.json | 83 +++++++++++++++++ tests/test_sonarr.py | 128 +++++++++++++++++++++++++-- 7 files changed, 392 insertions(+), 58 deletions(-) create mode 100644 tests/fixtures/sonarr/blocklist.json create mode 100644 tests/fixtures/sonarr/history.json diff --git a/pyarr/base.py b/pyarr/base.py index d19fbeb..43d2580 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -5,13 +5,14 @@ from pyarr.exceptions import PyarrMissingArgument from pyarr.models.common import ( + PyarrBlocklistSortKey, + PyarrHistorySortKey, PyarrLogFilterKey, PyarrLogFilterValue, PyarrLogSortKey, PyarrSortDirection, ) -from .const import PAGE, PAGE_SIZE from .request_handler import RequestHandler @@ -199,8 +200,8 @@ def get_log( page_size (Optional[int], optional): Number of items per page. Defaults to None. sort_key (Optional[PyarrLogSortKey], optional): Field to sort by. Defaults to None. sort_dir (Optional[PyarrSortDirection], optional): Direction to sort. Defaults to None. - filter_key (Optional[PyarrLogFilterKey], optional): Key to filter by. Defaults to None. - filter_value (Optional[PyarrLogFilterValue], optional): Value of the filter. Defaults to None. + filter_key (Optional[PyarrFilterKey], optional): Key to filter by. Defaults to None. + filter_value (Optional[PyarrFilterValue], optional): Value of the filter. Defaults to None. Returns: dict[str, Any]: List of dictionaries with items @@ -238,65 +239,76 @@ def get_log( return self.assert_return("log", self.ver_uri, dict, params) # GET /history - # TODO: check the ID on this method may need to move to specific APIs def get_history( self, - sort_key: str = "date", - page: int = PAGE, - page_size: int = PAGE_SIZE, - sort_dir: str = "desc", - id_: Optional[int] = None, - ) -> list[dict[str, Any]]: + page: Optional[int] = None, + page_size: Optional[int] = None, + sort_key: Optional[PyarrHistorySortKey] = None, + sort_dir: Optional[PyarrSortDirection] = None, + ) -> dict[str, Any]: """Gets history (grabs/failures/completed) Args: - sort_key (str, optional): Field to sort by. Defaults to "date". - page (int, optional): Page number to return. Defaults to PAGE. - page_size (int, optional): Number of items per page. Defaults to PAGE_SIZE. - sort_dir (str, optional): Direction to sort the items. Defaults to "desc". - id_ (Optional[int], optional): Filter to a specific episode ID. Defaults to None. + page (Optional[int], optional): Page number to return. Defaults to None. + page_size (Optional[int], optional): Number of items per page. Defaults to None. + sort_key (Optional[PyarrSortKey], optional): Field to sort by. Defaults to None. + sort_dir (Optional[PyarrSortDirection], optional): Direction to sort the items. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + dict[str, Any]: Dictionary with items """ - params = { - "sortKey": sort_key, - "page": page, - "pageSize": page_size, - "sortDir": sort_dir, - } - if id_: - params["episodeId"] = id_ - return self.assert_return("history", self.ver_uri, list, params) + params: dict[str, Union[int, PyarrHistorySortKey, PyarrSortDirection]] = {} + + if page: + params["page"] = page + + if page_size: + params["pageSize"] = page_size + + if sort_key and sort_dir: + params["sortKey"] = sort_key + params["sortDirection"] = sort_dir + elif sort_key or sort_dir: + raise PyarrMissingArgument("sort_key and sort_dir must be used together") + + return self.assert_return("history", self.ver_uri, dict, params) # BLOCKLIST # GET /blocklist def get_blocklist( self, - page: int = PAGE, - page_size: int = PAGE_SIZE, - sort_direction: str = "descending", - sort_key: str = "date", - ) -> list[dict[str, Any]]: + page: Optional[int] = None, + page_size: Optional[int] = None, + sort_key: Optional[PyarrBlocklistSortKey] = None, + sort_dir: Optional[PyarrSortDirection] = None, + ) -> dict[str, Any]: """Returns blocked releases. Args: - page (int, optional): Page to be returned. Defaults to PAGE. - page_size (int, optional): Number of results per page. Defaults to PAGE_SIZE. - sort_direction (str, optional): Direction to sort items. Defaults to "descending". - sort_key (str, optional): Field to sort by. Defaults to "date". + page (Optional[int], optional): Page number to return. Defaults to None. + page_size (Optional[int], optional): Number of items per page. Defaults to None. + sort_key (Optional[PyarrBlocklistSortKey], optional): Field to sort by. Defaults to None. + sort_dir (Optional[PyarrSortDirection], optional): Direction to sort the items. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + dict[str, Any]: Dictionary with items """ - params = { - "page": page, - "pageSize": page_size, - "sortDirection": sort_direction, - "sortKey": sort_key, - } - return self.assert_return("blocklist", self.ver_uri, list, params) + params: dict[str, Union[int, PyarrBlocklistSortKey, PyarrSortDirection]] = {} + + if page: + params["page"] = page + + if page_size: + params["pageSize"] = page_size + + if sort_key and sort_dir: + params["sortKey"] = sort_key + params["sortDirection"] = sort_dir + elif sort_key or sort_dir: + raise PyarrMissingArgument("sort_key and sort_dir must be used together") + + return self.assert_return("blocklist", self.ver_uri, dict, params) # DELETE /blocklist def del_blocklist( diff --git a/pyarr/models/common.py b/pyarr/models/common.py index bfd80ab..810ea76 100644 --- a/pyarr/models/common.py +++ b/pyarr/models/common.py @@ -10,7 +10,11 @@ class PyarrSortDirection(str, Enum): class PyarrLogSortKey(str, Enum): - """Log Sort Keys""" + """Log Sort Keys + + Note: + There may be more, however these are yet to be identified + """ ID = "Id" LEVEL = "level" @@ -21,6 +25,22 @@ class PyarrLogSortKey(str, Enum): EXCEPTION_TYPE = "exceptionType" +class PyarrBlocklistSortKey(str, Enum): + """Block list sort keys""" + + DATE = "date" + + +class PyarrHistorySortKey(str, Enum): + """history sort keys + + Note: + There may be more, however these are yet to be identified + """ + + TIME = "time" + + class PyarrLogFilterKey(str, Enum): """Log filter keys diff --git a/pyarr/models/sonarr.py b/pyarr/models/sonarr.py index 6072c8a..df0701f 100644 --- a/pyarr/models/sonarr.py +++ b/pyarr/models/sonarr.py @@ -35,8 +35,7 @@ class SonarrCommands(str, Enum): """seriesId (int) required""" -@enum_tools.documentation.document_enum -class SonarrSortKeys(str, Enum): +class SonarrSortKey(str, Enum): """Sonarr sort keys.""" AIR_DATE_UTC = "airDateUtc" diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index f8c2388..49a52ae 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -8,8 +8,8 @@ from .base import BaseArrAPI from .const import PAGE, PAGE_SIZE -from .models.common import PyarrSortDirection -from .models.sonarr import SonarrCommands, SonarrSortKeys +from .models.common import PyarrHistorySortKey, PyarrSortDirection +from .models.sonarr import SonarrCommands, SonarrSortKey class SonarrAPI(BaseArrAPI): @@ -293,7 +293,7 @@ def upd_episode_file_quality( # GET /wanted/missing def get_wanted( self, - sort_key: SonarrSortKeys = SonarrSortKeys.AIR_DATE_UTC, + sort_key: SonarrSortKey = SonarrSortKey.AIR_DATE_UTC, page: int = PAGE, page_size: int = PAGE_SIZE, sort_dir: PyarrSortDirection = PyarrSortDirection.DEFAULT, @@ -302,7 +302,7 @@ def get_wanted( """Gets missing episode (episodes without files) Args: - sort_key (SonarrSortKeys, optional): series.title or airDateUtc. Defaults to SonarrSortKeys.AIR_DATE_UTC. + sort_key (SonarrSortKey, optional): series.title or airDateUtc. Defaults to SonarrSortKey.AIR_DATE_UTC. page (int, optional): Page number to return. Defaults to 1. page_size (int, optional): Number of items per page. Defaults to 10. sort_dir (PyarrSortDirection, optional): Direction to sort the items. Defaults to PyarrSortDirection.DEFAULT. @@ -329,7 +329,7 @@ def get_queue( page: int = 1, page_size: int = 20, sort_dir: PyarrSortDirection = PyarrSortDirection.DEFAULT, - sort_key: SonarrSortKeys = SonarrSortKeys.TIMELEFT, + sort_key: SonarrSortKey = SonarrSortKey.TIMELEFT, include_unknown_series_items: bool = False, include_series: bool = False, include_episode: bool = False, @@ -603,3 +603,44 @@ def lookup_series_by_tvdb_id(self, id_: int) -> list[dict[str, Any]]: ) params = {"term": f"tvdb:{id_}"} return self.assert_return("series/lookup", self.ver_uri, list, params) + + # GET /history + # Overrides base get history for ID + def get_history( + self, + page: Optional[int] = None, + page_size: Optional[int] = None, + sort_key: Optional[PyarrHistorySortKey] = None, + sort_dir: Optional[PyarrSortDirection] = None, + id_: Optional[int] = None, + ) -> dict[str, Any]: + """Gets history (grabs/failures/completed) + + Args: + page (Optional[int], optional): Page number to return. Defaults to None. + page_size (Optional[int], optional): Number of items per page. Defaults to None. + sort_key (Optional[PyarrHistorySortKey], optional): Field to sort by. Defaults to None. + sort_dir (Optional[PyarrSortDirection], optional): Direction to sort the items. Defaults to None. + id_ (Optional[int], optional): Filter to a specific episode ID. Defaults to None. + + Returns: + dict[str, Any]: Dictionary with items + """ + params: dict[str, Union[int, PyarrHistorySortKey, PyarrSortDirection]] = {} + + if page: + params["page"] = page + + if page_size: + params["pageSize"] = page_size + + if sort_key and sort_dir: + params["sortKey"] = sort_key + params["sortDirection"] = sort_dir + elif sort_key or sort_dir: + raise PyarrMissingArgument("sort_key and sort_dir must be used together") + + if id_: + params["episodeId"] = id_ + + return self.assert_return("history", self.ver_uri, dict, params) diff --git a/tests/fixtures/sonarr/blocklist.json b/tests/fixtures/sonarr/blocklist.json new file mode 100644 index 0000000..c6a7594 --- /dev/null +++ b/tests/fixtures/sonarr/blocklist.json @@ -0,0 +1,67 @@ +{ + "page": 1, + "pageSize": 10, + "sortKey": "date", + "sortDirection": "descending", + "totalRecords": 13, + "records": [ + { + "seriesId": 7, + "episodeIds": [ + 7140 + ], + "sourceTitle": "string", + "language": { + "id": 1, + "name": "English" + }, + "quality": { + "quality": { + "id": 9, + "name": "HDTV-1080p", + "source": "television", + "resolution": 1080 + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "date": "2022-03-23T15:07:27.72336Z", + "protocol": "torrent", + "indexer": "Jackett", + "message": "Manually marked as failed", + "id": 14 + }, + { + "seriesId": 7, + "episodeIds": [ + 7130 + ], + "sourceTitle": "string", + "language": { + "id": 1, + "name": "English" + }, + "quality": { + "quality": { + "id": 4, + "name": "HDTV-720p", + "source": "television", + "resolution": 720 + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "date": "2022-02-28T10:03:33.362734Z", + "protocol": "torrent", + "indexer": "Jackett", + "message": "Manually marked as failed", + "id": 13 + } + ] +} diff --git a/tests/fixtures/sonarr/history.json b/tests/fixtures/sonarr/history.json new file mode 100644 index 0000000..01c84dc --- /dev/null +++ b/tests/fixtures/sonarr/history.json @@ -0,0 +1,83 @@ +{ + "page": 1, + "pageSize": 10, + "sortKey": "date", + "sortDirection": "descending", + "totalRecords": 4815, + "records": [ + { + "episodeId": 7414, + "seriesId": 106, + "sourceTitle": "string", + "language": { + "id": 1, + "name": "English" + }, + "quality": { + "quality": { + "id": 9, + "name": "HDTV-1080p", + "source": "television", + "resolution": 1080 + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "qualityCutoffNotMet": false, + "languageCutoffNotMet": false, + "date": "2022-07-06T13:48:09.330878Z", + "downloadId": "B0DFA7663432B216A08FAB21FC13265464DDA9DA", + "eventType": "downloadFolderImported", + "data": { + "fileId": "16520", + "droppedPath": "/downloads/string.mkv", + "importedPath": "/tv/string.mkv", + "downloadClient": "Deluge", + "downloadClientName": "Deluge", + "preferredWordScore": "0", + "releaseGroup": "MeGusta" + }, + "id": 5207 + }, + { + "episodeId": 7418, + "seriesId": 106, + "sourceTitle": "string", + "language": { + "id": 1, + "name": "English" + }, + "quality": { + "quality": { + "id": 9, + "name": "HDTV-1080p", + "source": "television", + "resolution": 1080 + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "qualityCutoffNotMet": false, + "languageCutoffNotMet": false, + "date": "2022-07-06T13:47:26.914404Z", + "downloadId": "0F5A4E0186ECC9A239A1F51B979CECC718B7DB57", + "eventType": "downloadFolderImported", + "data": { + "fileId": "16519", + "droppedPath": "/downloads/string.mkv", + "importedPath": "/tv/string.mkv", + "downloadClient": "Deluge", + "downloadClientName": "Deluge", + "preferredWordScore": "0", + "releaseGroup": "MeGusta" + }, + "id": 5206 + } + ] +} diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index e10f1e6..5a28031 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -1,7 +1,5 @@ import contextlib from datetime import datetime -import json -from warnings import warn import pytest @@ -11,12 +9,13 @@ PyarrResourceNotFound, ) from pyarr.models.common import ( + PyarrHistorySortKey, PyarrLogFilterKey, PyarrLogFilterValue, PyarrLogSortKey, PyarrSortDirection, ) -from pyarr.models.sonarr import SonarrCommands, SonarrSortKeys +from pyarr.models.sonarr import SonarrCommands, SonarrSortKey from tests import load_fixture @@ -29,6 +28,7 @@ def test__series_json(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/series_lookup.json"), status=200, + match_querystring=True, ) data = sonarr_client._series_json( @@ -64,6 +64,7 @@ def test_get_command(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/command_all.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_command() assert isinstance(data, list) @@ -75,6 +76,7 @@ def test_get_command(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/command.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_command(4327826) assert isinstance(data, dict) @@ -85,6 +87,7 @@ def test_get_command(responses, sonarr_client): "https://127.0.0.1:8989/api/v3/command/4321", headers={"Content-Type": "application/json"}, status=404, + match_querystring=True, ) with contextlib.suppress(PyarrResourceNotFound): data = sonarr_client.get_command(4321) @@ -99,6 +102,7 @@ def test_post_command(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/command.json"), status=201, + match_querystring=True, ) data = sonarr_client.post_command(name=SonarrCommands.REFRESH_SERIES) @@ -142,6 +146,7 @@ def test_get_episode(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/episode.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_episode(0) @@ -153,6 +158,7 @@ def test_get_episode(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/episode_series.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_episode(1, True) assert isinstance(data, list) @@ -162,6 +168,7 @@ def test_get_episode(responses, sonarr_client): "https://127.0.0.1:8989/api/v3/episode/999", headers={"Content-Type": "application/json"}, status=404, + match_querystring=True, ) with contextlib.suppress(PyarrResourceNotFound): data = sonarr_client.get_episode(999) @@ -176,6 +183,7 @@ def test_get_episodes_by_series_id(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/episode_series.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_episodes_by_series_id(1) @@ -186,6 +194,7 @@ def test_get_episodes_by_series_id(responses, sonarr_client): "https://127.0.0.1:8989/api/v3/episode?seriesId=999", headers={"Content-Type": "application/json"}, status=404, + match_querystring=True, ) with contextlib.suppress(PyarrResourceNotFound): data = sonarr_client.get_episodes_by_series_id(999) @@ -200,6 +209,7 @@ def test_get_episode_by_episode_id(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/episode.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_episode_by_episode_id(0) @@ -210,6 +220,7 @@ def test_get_episode_by_episode_id(responses, sonarr_client): "https://127.0.0.1:8989/api/v3/episode/999", headers={"Content-Type": "application/json"}, status=404, + match_querystring=True, ) with contextlib.suppress(PyarrResourceNotFound): data = sonarr_client.get_episode_by_episode_id(999) @@ -224,6 +235,7 @@ def test_upd_episode(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/episode_update.json"), status=200, + match_querystring=True, ) payload = {"monitored": True} data = sonarr_client.upd_episode(1, payload) @@ -242,6 +254,7 @@ def test_get_episode_files_by_series_id(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/episodefile_series.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_episode_files_by_series_id(1) assert isinstance(data, list) @@ -251,6 +264,7 @@ def test_get_episode_files_by_series_id(responses, sonarr_client): "https://127.0.0.1:8989/api/v3/episodefile?seriesId=999", headers={"Content-Type": "application/json"}, status=404, + match_querystring=True, ) with contextlib.suppress(PyarrResourceNotFound): data = sonarr_client.get_episode_files_by_series_id(999) @@ -266,6 +280,7 @@ def test_get_episode_file(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/episodefile.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_episode_file(0) @@ -277,6 +292,7 @@ def test_get_episode_file(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/episodefile_series.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_episode_file(1, True) assert isinstance(data, list) @@ -286,6 +302,7 @@ def test_get_episode_file(responses, sonarr_client): "https://127.0.0.1:8989/api/v3/episodefile/999", headers={"Content-Type": "application/json"}, status=404, + match_querystring=True, ) with contextlib.suppress(PyarrResourceNotFound): data = sonarr_client.get_episode_file(999) @@ -300,6 +317,7 @@ def test_del_episode_file(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/delete.json"), status=200, + match_querystring=True, ) data = sonarr_client.del_episode_file(1) assert isinstance(data, dict) @@ -309,6 +327,7 @@ def test_del_episode_file(responses, sonarr_client): "https://127.0.0.1:8989/api/v3/episodefile/999", headers={"Content-Type": "application/json"}, status=404, + match_querystring=True, ) with contextlib.suppress(PyarrResourceNotFound): data = sonarr_client.del_episode_file(999) @@ -323,6 +342,7 @@ def test_upd_episode_file_quality(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/episodefile.json"), status=202, + match_querystring=True, ) data = sonarr_client.upd_episode_file_quality( 1, load_fixture("sonarr/file_quality.json") @@ -338,6 +358,7 @@ def test_get_wanted(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/wanted_missing.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_wanted() assert isinstance(data, dict) @@ -348,6 +369,7 @@ def test_get_wanted(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/wanted_missing_extended.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_wanted(include_series=True) assert isinstance(data, dict) @@ -358,9 +380,10 @@ def test_get_wanted(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/wanted_missing.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_wanted( - sort_key=SonarrSortKeys.SERIES_TITLE, + sort_key=SonarrSortKey.SERIES_TITLE, page=2, page_size=20, sort_dir=PyarrSortDirection.ASC, @@ -376,6 +399,7 @@ def test_get_quality_profile(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("common/qualityprofileall.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_quality_profile() assert isinstance(data, list) @@ -386,6 +410,7 @@ def test_get_quality_profile(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("common/qualityprofile.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_quality_profile(1) assert isinstance(data, dict) @@ -399,6 +424,7 @@ def test_get_queue(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/queue.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_queue() assert isinstance(data, dict) @@ -412,6 +438,7 @@ def test_get_parsed_title(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/parse.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_parsed_title("Series.Title.S01E01") assert isinstance(data, dict) @@ -425,6 +452,7 @@ def test_get_parsed_path(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/parse.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_parsed_path("/") assert isinstance(data, dict) @@ -438,6 +466,7 @@ def test_get_parse_title_path(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/parse.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_parse_title_path(title="Series.Title.S01E01", path="/") assert isinstance(data, dict) @@ -448,16 +477,18 @@ def test_get_parse_title_path(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/parse.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_parse_title_path(title="Series.Title.S01E01") assert isinstance(data, dict) responses.add( responses.GET, - "https://127.0.0.1:8989/api/v3/parse", + "https://127.0.0.1:8989/api/v3/parse?path=/", headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/parse.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_parse_title_path(path="/") assert isinstance(data, dict) @@ -475,6 +506,7 @@ def test_get_releases(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/release.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_releases() assert isinstance(data, list) @@ -485,6 +517,7 @@ def test_get_releases(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/release.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_releases(1) assert isinstance(data, list) @@ -498,6 +531,7 @@ def test_download_release(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/release_download.json"), status=201, + match_querystring=True, ) data = sonarr_client.download_release(guid="1450590", indexer_id=2) assert isinstance(data, dict) @@ -511,6 +545,7 @@ def test_push_release(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/release_download.json"), status=201, + match_querystring=True, ) data = sonarr_client.push_release( title="test", @@ -529,6 +564,7 @@ def test_get_series(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/series_all.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_series() assert isinstance(data, list) @@ -539,6 +575,7 @@ def test_get_series(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/series.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_series(1) assert isinstance(data, dict) @@ -551,6 +588,7 @@ def test_add_series(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/series_lookup.json"), status=200, + match_querystring=True, ) responses.add( responses.POST, @@ -558,6 +596,7 @@ def test_add_series(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/series.json"), status=200, + match_querystring=True, ) data = sonarr_client.add_series(tvdb_id=123456, quality_profile_id=0, root_dir="/") assert isinstance(data, dict) @@ -571,6 +610,7 @@ def test_upd_series(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/series.json"), status=200, + match_querystring=True, ) series = sonarr_client.get_series(1) responses.add( @@ -579,6 +619,7 @@ def test_upd_series(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/series.json"), status=202, + match_querystring=True, ) data = sonarr_client.upd_series(data=series) assert isinstance(data, dict) @@ -592,6 +633,7 @@ def test_del_series(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/delete.json"), status=200, + match_querystring=True, ) data = sonarr_client.del_series(1) assert isinstance(data, dict) @@ -603,6 +645,7 @@ def test_del_series(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/delete.json"), status=200, + match_querystring=True, ) data = sonarr_client.del_series(1, delete_files=True) assert isinstance(data, dict) @@ -617,6 +660,7 @@ def test_lookup_series(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/series_lookup.json"), status=200, + match_querystring=True, ) data = sonarr_client.lookup_series(id_=123456) assert isinstance(data, list) @@ -627,6 +671,7 @@ def test_lookup_series(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/series_lookup.json"), status=200, + match_querystring=True, ) data = sonarr_client.lookup_series(term="test") assert isinstance(data, list) @@ -644,6 +689,7 @@ def test_lookup_series_by_tvdb_id(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/series_lookup.json"), status=200, + match_querystring=True, ) data = sonarr_client.lookup_series_by_tvdb_id(123456) assert isinstance(data, list) @@ -662,6 +708,7 @@ def test_get_calendar(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/calendar.json"), status=200, + match_querystring=True, ) start = datetime.strptime("Nov 30 2020 1:33PM", "%b %d %Y %I:%M%p") end = datetime.strptime("Dec 1 2020 1:33PM", "%b %d %Y %I:%M%p") @@ -674,6 +721,7 @@ def test_get_calendar(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/calendar.json"), status=200, + match_querystring=True, ) start = datetime.strptime("Nov 30 2020 1:33PM", "%b %d %Y %I:%M%p") end = datetime.strptime("Dec 1 2020 1:33PM", "%b %d %Y %I:%M%p") @@ -688,6 +736,7 @@ def test_get_system_status(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/system_status.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_system_status() assert isinstance(data, dict) @@ -700,6 +749,7 @@ def test_get_health(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/health.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_health() assert isinstance(data, list) @@ -712,6 +762,7 @@ def test_get_metadata(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/metadata_all.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_metadata() assert isinstance(data, list) @@ -722,6 +773,7 @@ def test_get_metadata(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/metadata.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_metadata(1) assert isinstance(data, dict) @@ -734,6 +786,7 @@ def test_get_update(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/metadata_all.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_update() assert isinstance(data, list) @@ -746,6 +799,7 @@ def test_get_root_folder(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/rootfolder_all.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_root_folder() assert isinstance(data, list) @@ -756,6 +810,7 @@ def test_get_root_folder(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/rootfolder.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_root_folder(1) assert isinstance(data, dict) @@ -769,6 +824,7 @@ def test_del_root_folder(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/delete.json"), status=200, + match_querystring=True, ) data = sonarr_client.del_root_folder(1) assert isinstance(data, dict) @@ -791,6 +847,7 @@ def test_get_disk_space(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/diskspace.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_disk_space() assert isinstance(data, list) @@ -803,6 +860,7 @@ def test_get_backup(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/backup.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_backup() assert isinstance(data, list) @@ -815,27 +873,29 @@ def test_get_log(responses, sonarr_client): headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/log.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_log() assert isinstance(data, dict) responses.add( responses.GET, - "https://127.0.0.1:8989/api/v3/log?page=10&pageSize=10&sortKey=time&sortDirection=descending", + "https://127.0.0.1:8989/api/v3/log?page=10&pageSize=10&sortKey=Id&sortDirection=descending", headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/log.json"), status=200, + match_querystring=True, ) data = sonarr_client.get_log( page=10, page_size=10, - sort_key=PyarrLogSortKey.TIME, + sort_key=PyarrLogSortKey.ID, sort_dir=PyarrSortDirection.DESC, ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_log(sort_key=PyarrLogSortKey.TIME) + data = sonarr_client.get_log(sort_key=PyarrLogSortKey.ID) assert False with contextlib.suppress(PyarrMissingArgument): data = sonarr_client.get_log(sort_dir=PyarrSortDirection.DESC) @@ -846,3 +906,55 @@ def test_get_log(responses, sonarr_client): with contextlib.suppress(PyarrMissingArgument): data = sonarr_client.get_log(filter_value=PyarrLogFilterValue.ALL) assert False + + +def test_get_history(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/history", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/history.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_history() + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/history?episodeId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/history.json"), + status=200, + match_querystring=True, + ) + + data = sonarr_client.get_history(id_=1) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_history(sort_key=PyarrHistorySortKey.TIME) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_history(sort_dir=PyarrSortDirection.DESC) + assert False + + +def test_get_blocklist(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/blocklist", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/blocklist.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_blocklist() + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_blocklist(sort_key=PyarrHistorySortKey.TIME) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_blocklist(sort_dir=PyarrSortDirection.DESC) + assert False From ced316a30c9fa43cb1ffc94c8d196d1189842c03 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Fri, 8 Jul 2022 08:37:11 +0000 Subject: [PATCH 13/53] fix: blocklist using incorrect params and added tests --- pyarr/base.py | 3 +-- tests/test_sonarr.py | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/pyarr/base.py b/pyarr/base.py index 43d2580..1b71090 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -322,8 +322,7 @@ def del_blocklist( Returns: Response: HTTP Response """ - params = {"id": id_} - return self._delete("blocklist", self.ver_uri, params=params) + return self._delete(f"blocklist/{id_}", self.ver_uri) # DELETE /blocklist/bulk def del_blocklist_bulk( diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index 5a28031..c73c587 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -840,6 +840,7 @@ def test_del_root_folder(responses, sonarr_client): assert False +@pytest.mark.usefixtures def test_get_disk_space(responses, sonarr_client): responses.add( responses.GET, @@ -853,6 +854,7 @@ def test_get_disk_space(responses, sonarr_client): assert isinstance(data, list) +@pytest.mark.usefixtures def test_get_backup(responses, sonarr_client): responses.add( responses.GET, @@ -866,6 +868,7 @@ def test_get_backup(responses, sonarr_client): assert isinstance(data, list) +@pytest.mark.usefixtures def test_get_log(responses, sonarr_client): responses.add( responses.GET, @@ -908,6 +911,7 @@ def test_get_log(responses, sonarr_client): assert False +@pytest.mark.usefixtures def test_get_history(responses, sonarr_client): responses.add( responses.GET, @@ -940,6 +944,7 @@ def test_get_history(responses, sonarr_client): assert False +@pytest.mark.usefixtures def test_get_blocklist(responses, sonarr_client): responses.add( responses.GET, @@ -958,3 +963,28 @@ def test_get_blocklist(responses, sonarr_client): with contextlib.suppress(PyarrMissingArgument): data = sonarr_client.get_blocklist(sort_dir=PyarrSortDirection.DESC) assert False + + +@pytest.mark.usefixtures +def test_del_blocklist(responses, sonarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/blocklist/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/delete.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.del_blocklist(1) + assert isinstance(data, dict) + + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/blocklist/999", + headers={"Content-Type": "application/json"}, + status=404, + match_querystring=True, + ) + with contextlib.suppress(PyarrResourceNotFound): + data = sonarr_client.del_blocklist(999) + assert False From b005d13ef2a28be14f07ad54e7b878c9025e93ae Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Wed, 13 Jul 2022 09:27:17 +0000 Subject: [PATCH 14/53] fix: get_task missing arguments and incorrect type, added more tests --- pyarr/base.py | 83 ++++-- pyarr/models/common.py | 21 ++ pyarr/models/lidarr.py | 7 + pyarr/models/radarr.py | 6 + pyarr/models/readarr.py | 8 + pyarr/models/sonarr.py | 1 + tests/fixtures/sonarr/indexer.json | 119 ++++++++ tests/fixtures/sonarr/indexer_all.json | 121 ++++++++ tests/fixtures/sonarr/quality_definition.json | 13 + .../sonarr/quality_definition_all.json | 41 +++ tests/fixtures/sonarr/quality_profile.json | 253 +++++++++++++++++ .../fixtures/sonarr/quality_profile_all.json | 255 +++++++++++++++++ tests/fixtures/sonarr/system_task.json | 3 + tests/fixtures/sonarr/system_task_all.json | 8 + tests/test_sonarr.py | 263 ++++++++++++++++++ 15 files changed, 1183 insertions(+), 19 deletions(-) create mode 100644 tests/fixtures/sonarr/indexer.json create mode 100644 tests/fixtures/sonarr/indexer_all.json create mode 100644 tests/fixtures/sonarr/quality_definition.json create mode 100644 tests/fixtures/sonarr/quality_definition_all.json create mode 100644 tests/fixtures/sonarr/quality_profile.json create mode 100644 tests/fixtures/sonarr/quality_profile_all.json create mode 100644 tests/fixtures/sonarr/system_task.json create mode 100644 tests/fixtures/sonarr/system_task_all.json diff --git a/pyarr/base.py b/pyarr/base.py index 1b71090..7a8539d 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -11,6 +11,7 @@ PyarrLogFilterValue, PyarrLogSortKey, PyarrSortDirection, + PyarrTaskSortKey, ) from .request_handler import RequestHandler @@ -326,16 +327,17 @@ def del_blocklist( # DELETE /blocklist/bulk def del_blocklist_bulk( - self, data: dict[str, Any] + self, ids: list[int] ) -> Union[Response, dict[str, Any], dict[Any, Any]]: """Delete blocked releases in bulk Args: - data (dict[str, Any]): Blocklists that should be deleted + ids (list[int]): Blocklists ids that should be deleted Returns: Response: HTTP Response """ + data = {"ids": ids} return self._delete("blocklist/bulk", self.ver_uri, data=data) # PROFILES @@ -384,21 +386,22 @@ def del_quality_profile( Returns: Response: HTTP Response """ - params = {"id": id_} - return self._delete("qualityprofile", self.ver_uri, params=params) + return self._delete(f"qualityprofile/{id_}", self.ver_uri) # GET /qualitydefinition/{id} - def get_quality_definition(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_quality_definition( + self, id_: Optional[int] = None + ) -> Union[list[dict[str, Any]], dict[Any, Any]]: """Gets all quality definitions or specific one by ID Args: id_ (Optional[int], optional): Import list database id. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, Any]], dict[Any, Any]]: List of dictionaries with items """ path = f"qualitydefinition/{id_}" if id_ else "qualitydefinition" - return self.assert_return(path, self.ver_uri, list) + return self.assert_return(path, self.ver_uri, dict if id_ else list) # PUT /qualitydefinition/{id} def upd_quality_definition(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: @@ -419,17 +422,19 @@ def upd_quality_definition(self, id_: int, data: dict[str, Any]) -> dict[str, An # INDEXER # GET /indexer/{id} - def get_indexer(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_indexer( + self, id_: Optional[int] = None + ) -> Union[list[dict[str, Any]], dict[Any, Any]]: """Get all indexers or specific by id Args: id_ (Optional[int], optional): Database if of indexer to return. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, Any]], dict[Any, Any]]: List of dictionaries with items """ path = f"indexer/{id_}" if id_ else "indexer" - return self.assert_return(path, self.ver_uri, list) + return self.assert_return(path, self.ver_uri, dict if id_ else list) # PUT /indexer/{id} def upd_indexer(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: @@ -457,40 +462,80 @@ def del_indexer(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, Any Returns: Response: HTTP Response """ - params = {"id": id_} - return self._delete("indexer", self.ver_uri, params=params) + + return self._delete(f"indexer/{id_}", self.ver_uri) # QUEUE # DELETE /queue/{id} + # TODO: check if blacklist has changed to blocklist def del_queue( - self, id_: int, remove_from_client: bool = True, blacklist: bool = True + self, + id_: int, + remove_from_client: Optional[bool] = None, + blacklist: Optional[bool] = None, ) -> Union[Response, dict[str, Any], dict[Any, Any]]: """Remove an item from the queue and blacklist it Args: id_ (int): ID of the item to be removed - remove_from_client (bool, optional): Remove the item from the client. Defaults to True. - blacklist (bool, optional): Add the item to the blacklist. Defaults to True. + remove_from_client (Optional[bool], optional): Remove the item from the client. Defaults to None. + blacklist (Optional[bool], optional): Add the item to the blacklist. Defaults to None. Returns: Response: HTTP Response """ - params = {"removeFromClient": remove_from_client, "blacklist": blacklist} + params = {} + if remove_from_client: + params["removeFromClient"] = remove_from_client + if blacklist: + params["blacklist"] = blacklist + return self._delete(f"queue/{id_}", self.ver_uri, params=params) # GET /system/task/{id} - def get_task(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_task( + self, + page: Optional[int] = None, + page_size: Optional[int] = None, + sort_key: Optional[PyarrTaskSortKey] = None, + sort_dir: Optional[PyarrSortDirection] = None, + id_: Optional[int] = None, + ) -> dict[Any, Any]: """Return a list of tasks, or specify a task ID to return single task Args: + page (Optional[int], optional): Page number to return. Defaults to None. + page_size (Optional[int], optional): Number of items per page. Defaults to None. + sort_key (Optional[PyarrTaskSortKey], optional): Field to sort by. Defaults to None. + sort_dir (Optional[PyarrSortDirection], optional): Direction to sort the items. Defaults to None. id_ (Optional[int], optional): ID for task. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, Any]], dict[Any, Any]]: List of dictionaries with items """ + params: dict[ + str, + Union[ + int, + PyarrTaskSortKey, + PyarrSortDirection, + ], + ] = {} + if page: + params["page"] = page + + if page_size: + params["pageSize"] = page_size + + if sort_key and sort_dir: + params["sortKey"] = sort_key + params["sortDirection"] = sort_dir + elif sort_key or sort_dir: + raise PyarrMissingArgument("sort_key and sort_dir must be used together") + path = f"system/task/{id_}" if id_ else "system/task" - return self.assert_return(path, self.ver_uri, list) + return self.assert_return(path, self.ver_uri, dict, params) # GET /remotepathmapping def get_remote_path_mapping( diff --git a/pyarr/models/common.py b/pyarr/models/common.py index 810ea76..a9139ef 100644 --- a/pyarr/models/common.py +++ b/pyarr/models/common.py @@ -1,6 +1,11 @@ from enum import Enum +import enum_tools.documentation +enum_tools.documentation.INTERACTIVE = True + + +@enum_tools.documentation.document_enum class PyarrSortDirection(str, Enum): """Pyarr sort direction""" @@ -9,6 +14,7 @@ class PyarrSortDirection(str, Enum): DESC = "descending" +@enum_tools.documentation.document_enum class PyarrLogSortKey(str, Enum): """Log Sort Keys @@ -25,12 +31,14 @@ class PyarrLogSortKey(str, Enum): EXCEPTION_TYPE = "exceptionType" +@enum_tools.documentation.document_enum class PyarrBlocklistSortKey(str, Enum): """Block list sort keys""" DATE = "date" +@enum_tools.documentation.document_enum class PyarrHistorySortKey(str, Enum): """history sort keys @@ -41,6 +49,18 @@ class PyarrHistorySortKey(str, Enum): TIME = "time" +@enum_tools.documentation.document_enum +class PyarrTaskSortKey(str, Enum): + """Task sort keys + + Note: + There may be more, however these are yet to be identified + """ + + TIME_LEFT = "timeleft" + + +@enum_tools.documentation.document_enum class PyarrLogFilterKey(str, Enum): """Log filter keys @@ -51,6 +71,7 @@ class PyarrLogFilterKey(str, Enum): LEVEL = "level" +@enum_tools.documentation.document_enum class PyarrLogFilterValue(str, Enum): """Log filter values diff --git a/pyarr/models/lidarr.py b/pyarr/models/lidarr.py index fb88d40..8438a90 100644 --- a/pyarr/models/lidarr.py +++ b/pyarr/models/lidarr.py @@ -1,6 +1,11 @@ from enum import Enum +import enum_tools.documentation +enum_tools.documentation.INTERACTIVE = True + + +@enum_tools.documentation.document_enum class LidarrSortKeys(str, Enum): """Lidarr sort keys.""" @@ -23,6 +28,7 @@ class LidarrSortKeys(str, Enum): TITLE = "title" +@enum_tools.documentation.document_enum class LidarrArtistMonitor(str, Enum): """Lidarr Monitor types for an artist music""" @@ -34,6 +40,7 @@ class LidarrArtistMonitor(str, Enum): LATEST_ALBUM = "latest" +@enum_tools.documentation.document_enum class LidarrCommands(str, Enum): """Lidarr commands.""" diff --git a/pyarr/models/radarr.py b/pyarr/models/radarr.py index 68d4031..cb4de74 100644 --- a/pyarr/models/radarr.py +++ b/pyarr/models/radarr.py @@ -1,6 +1,11 @@ from enum import Enum +import enum_tools.documentation +enum_tools.documentation.INTERACTIVE = True + + +@enum_tools.documentation.document_enum class RadarrCommands(str, Enum): """Radarr commands.""" @@ -11,6 +16,7 @@ class RadarrCommands(str, Enum): RESCAN_MOVIE = "RescanMovie" +@enum_tools.documentation.document_enum class RadarrSortKeys(str, Enum): """Radarr sort keys.""" diff --git a/pyarr/models/readarr.py b/pyarr/models/readarr.py index 088225a..0f032b9 100644 --- a/pyarr/models/readarr.py +++ b/pyarr/models/readarr.py @@ -1,6 +1,11 @@ from enum import Enum +import enum_tools.documentation +enum_tools.documentation.INTERACTIVE = True + + +@enum_tools.documentation.document_enum class ReadarrCommands(str, Enum): """Readarr commands.""" @@ -13,6 +18,7 @@ class ReadarrCommands(str, Enum): RESCAN_FOLDERS = "RescanFolders" +@enum_tools.documentation.document_enum class ReadarrSortKeys(str, Enum): """Readarr sort keys.""" @@ -35,6 +41,7 @@ class ReadarrSortKeys(str, Enum): TITLE = "title" +@enum_tools.documentation.document_enum class ReadarrBookTypes(str, Enum): """Readarr book types.""" @@ -43,6 +50,7 @@ class ReadarrBookTypes(str, Enum): ISBN = "isbn" +@enum_tools.documentation.document_enum class ReadarrAuthorMonitor(str, Enum): """Readarr author monitor options.""" diff --git a/pyarr/models/sonarr.py b/pyarr/models/sonarr.py index df0701f..ac396a9 100644 --- a/pyarr/models/sonarr.py +++ b/pyarr/models/sonarr.py @@ -35,6 +35,7 @@ class SonarrCommands(str, Enum): """seriesId (int) required""" +@enum_tools.documentation.document_enum class SonarrSortKey(str, Enum): """Sonarr sort keys.""" diff --git a/tests/fixtures/sonarr/indexer.json b/tests/fixtures/sonarr/indexer.json new file mode 100644 index 0000000..184ba6a --- /dev/null +++ b/tests/fixtures/sonarr/indexer.json @@ -0,0 +1,119 @@ +{ + "enableRss": true, + "enableAutomaticSearch": true, + "enableInteractiveSearch": true, + "supportsRss": true, + "supportsSearch": true, + "protocol": "torrent", + "priority": 25, + "downloadClientId": 0, + "name": "string", + "fields": [ + { + "order": 0, + "name": "baseUrl", + "label": "URL", + "value": "string", + "type": "textbox", + "advanced": false + }, + { + "order": 1, + "name": "apiPath", + "label": "API Path", + "helpText": "Path to the api, usually /api", + "value": "/api", + "type": "textbox", + "advanced": true + }, + { + "order": 2, + "name": "apiKey", + "label": "API Key", + "value": "string", + "type": "textbox", + "advanced": false + }, + { + "order": 3, + "name": "categories", + "label": "Categories", + "helpText": "Drop down list, leave blank to disable standard/daily shows", + "value": [ + 5030, + 5040 + ], + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "newznabCategories" + }, + { + "order": 4, + "name": "animeCategories", + "label": "Anime Categories", + "helpText": "Drop down list, leave blank to disable anime", + "value": [], + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "newznabCategories" + }, + { + "order": 5, + "name": "animeStandardFormatSearch", + "label": "Anime Standard Format Search", + "helpText": "Also search for anime using the standard numbering", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 6, + "name": "additionalParameters", + "label": "Additional Parameters", + "helpText": "Additional Newznab parameters", + "type": "textbox", + "advanced": true + }, + { + "order": 7, + "name": "minimumSeeders", + "label": "Minimum Seeders", + "helpText": "Minimum number of seeders required.", + "value": 1, + "type": "number", + "advanced": true + }, + { + "order": 8, + "name": "seedCriteria.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is download client's default", + "type": "textbox", + "advanced": true + }, + { + "order": 9, + "name": "seedCriteria.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is download client's default", + "type": "number", + "advanced": true + }, + { + "order": 10, + "name": "seedCriteria.seasonPackSeedTime", + "label": "Season-Pack Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is download client's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Torznab", + "implementation": "Torznab", + "configContract": "TorznabSettings", + "infoLink": "https://wiki.servarr.com/sonarr/supported#torznab", + "tags": [], + "id": 2 +} diff --git a/tests/fixtures/sonarr/indexer_all.json b/tests/fixtures/sonarr/indexer_all.json new file mode 100644 index 0000000..49814ac --- /dev/null +++ b/tests/fixtures/sonarr/indexer_all.json @@ -0,0 +1,121 @@ +[ + { + "enableRss": true, + "enableAutomaticSearch": true, + "enableInteractiveSearch": true, + "supportsRss": true, + "supportsSearch": true, + "protocol": "torrent", + "priority": 25, + "downloadClientId": 0, + "name": "string", + "fields": [ + { + "order": 0, + "name": "baseUrl", + "label": "URL", + "value": "string", + "type": "textbox", + "advanced": false + }, + { + "order": 1, + "name": "apiPath", + "label": "API Path", + "helpText": "Path to the api, usually /api", + "value": "/api", + "type": "textbox", + "advanced": true + }, + { + "order": 2, + "name": "apiKey", + "label": "API Key", + "value": "string", + "type": "textbox", + "advanced": false + }, + { + "order": 3, + "name": "categories", + "label": "Categories", + "helpText": "Drop down list, leave blank to disable standard/daily shows", + "value": [ + 5030, + 5040 + ], + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "newznabCategories" + }, + { + "order": 4, + "name": "animeCategories", + "label": "Anime Categories", + "helpText": "Drop down list, leave blank to disable anime", + "value": [], + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "newznabCategories" + }, + { + "order": 5, + "name": "animeStandardFormatSearch", + "label": "Anime Standard Format Search", + "helpText": "Also search for anime using the standard numbering", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 6, + "name": "additionalParameters", + "label": "Additional Parameters", + "helpText": "Additional Newznab parameters", + "type": "textbox", + "advanced": true + }, + { + "order": 7, + "name": "minimumSeeders", + "label": "Minimum Seeders", + "helpText": "Minimum number of seeders required.", + "value": 1, + "type": "number", + "advanced": true + }, + { + "order": 8, + "name": "seedCriteria.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is download client's default", + "type": "textbox", + "advanced": true + }, + { + "order": 9, + "name": "seedCriteria.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is download client's default", + "type": "number", + "advanced": true + }, + { + "order": 10, + "name": "seedCriteria.seasonPackSeedTime", + "label": "Season-Pack Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is download client's default", + "type": "number", + "advanced": true + } + ], + "implementationName": "Torznab", + "implementation": "Torznab", + "configContract": "TorznabSettings", + "infoLink": "https://wiki.servarr.com/sonarr/supported#torznab", + "tags": [], + "id": 2 + } +] diff --git a/tests/fixtures/sonarr/quality_definition.json b/tests/fixtures/sonarr/quality_definition.json new file mode 100644 index 0000000..92ea6df --- /dev/null +++ b/tests/fixtures/sonarr/quality_definition.json @@ -0,0 +1,13 @@ +{ + "quality": { + "id": 0, + "name": "Unknown", + "source": "unknown", + "resolution": 0 + }, + "title": "Unknown", + "weight": 1, + "minSize": 0.0, + "maxSize": 42.7, + "id": 1 +} diff --git a/tests/fixtures/sonarr/quality_definition_all.json b/tests/fixtures/sonarr/quality_definition_all.json new file mode 100644 index 0000000..a4214d2 --- /dev/null +++ b/tests/fixtures/sonarr/quality_definition_all.json @@ -0,0 +1,41 @@ +[ + { + "quality": { + "id": 0, + "name": "Unknown", + "source": "unknown", + "resolution": 0 + }, + "title": "Unknown", + "weight": 1, + "minSize": 0.0, + "maxSize": 42.7, + "id": 1 + }, + { + "quality": { + "id": 1, + "name": "SDTV", + "source": "television", + "resolution": 480 + }, + "title": "SDTV", + "weight": 2, + "minSize": 0.0, + "maxSize": 26.0, + "id": 2 + }, + { + "quality": { + "id": 8, + "name": "WEBDL-480p", + "source": "web", + "resolution": 480 + }, + "title": "WEBDL-480p", + "weight": 3, + "minSize": 0.0, + "maxSize": 26.1, + "id": 3 + } +] diff --git a/tests/fixtures/sonarr/quality_profile.json b/tests/fixtures/sonarr/quality_profile.json new file mode 100644 index 0000000..6dbc752 --- /dev/null +++ b/tests/fixtures/sonarr/quality_profile.json @@ -0,0 +1,253 @@ +{ + "name": "Any", + "upgradeAllowed": false, + "cutoff": 4, + "items": [ + { + "quality": { + "id": 0, + "name": "Unknown", + "source": "unknown", + "resolution": 0 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 1, + "name": "SDTV", + "source": "television", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 480p", + "items": [ + { + "quality": { + "id": 12, + "name": "WEBRip-480p", + "source": "webRip", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 8, + "name": "WEBDL-480p", + "source": "web", + "resolution": 480 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1000 + }, + { + "name": "DVD", + "items": [ + { + "quality": { + "id": 2, + "name": "DVD", + "source": "dvd", + "resolution": 480 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 13, + "name": "Bluray-480p", + "source": "bluray", + "resolution": 480 + }, + "items": [], + "allowed": true + } + ], + "allowed": true, + "id": 1001 + }, + { + "quality": { + "id": 4, + "name": "HDTV-720p", + "source": "television", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 9, + "name": "HDTV-1080p", + "source": "television", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 10, + "name": "Raw-HD", + "source": "televisionRaw", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 720p", + "items": [ + { + "quality": { + "id": 14, + "name": "WEBRip-720p", + "source": "webRip", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 5, + "name": "WEBDL-720p", + "source": "web", + "resolution": 720 + }, + "items": [], + "allowed": true + } + ], + "allowed": true, + "id": 1002 + }, + { + "quality": { + "id": 6, + "name": "Bluray-720p", + "source": "bluray", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "name": "WEB 1080p", + "items": [ + { + "quality": { + "id": 15, + "name": "WEBRip-1080p", + "source": "webRip", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "web", + "resolution": 1080 + }, + "items": [], + "allowed": true + } + ], + "allowed": true, + "id": 1003 + }, + { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 20, + "name": "Bluray-1080p Remux", + "source": "blurayRaw", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 16, + "name": "HDTV-2160p", + "source": "television", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 2160p", + "items": [ + { + "quality": { + "id": 17, + "name": "WEBRip-2160p", + "source": "webRip", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 18, + "name": "WEBDL-2160p", + "source": "web", + "resolution": 2160 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1004 + }, + { + "quality": { + "id": 19, + "name": "Bluray-2160p", + "source": "bluray", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 21, + "name": "Bluray-2160p Remux", + "source": "blurayRaw", + "resolution": 2160 + }, + "items": [], + "allowed": false + } + ], + "id": 1 +} diff --git a/tests/fixtures/sonarr/quality_profile_all.json b/tests/fixtures/sonarr/quality_profile_all.json new file mode 100644 index 0000000..365695d --- /dev/null +++ b/tests/fixtures/sonarr/quality_profile_all.json @@ -0,0 +1,255 @@ +[ + { + "name": "Any", + "upgradeAllowed": false, + "cutoff": 4, + "items": [ + { + "quality": { + "id": 0, + "name": "Unknown", + "source": "unknown", + "resolution": 0 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 1, + "name": "SDTV", + "source": "television", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 480p", + "items": [ + { + "quality": { + "id": 12, + "name": "WEBRip-480p", + "source": "webRip", + "resolution": 480 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 8, + "name": "WEBDL-480p", + "source": "web", + "resolution": 480 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1000 + }, + { + "name": "DVD", + "items": [ + { + "quality": { + "id": 2, + "name": "DVD", + "source": "dvd", + "resolution": 480 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 13, + "name": "Bluray-480p", + "source": "bluray", + "resolution": 480 + }, + "items": [], + "allowed": true + } + ], + "allowed": true, + "id": 1001 + }, + { + "quality": { + "id": 4, + "name": "HDTV-720p", + "source": "television", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 9, + "name": "HDTV-1080p", + "source": "television", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 10, + "name": "Raw-HD", + "source": "televisionRaw", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 720p", + "items": [ + { + "quality": { + "id": 14, + "name": "WEBRip-720p", + "source": "webRip", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 5, + "name": "WEBDL-720p", + "source": "web", + "resolution": 720 + }, + "items": [], + "allowed": true + } + ], + "allowed": true, + "id": 1002 + }, + { + "quality": { + "id": 6, + "name": "Bluray-720p", + "source": "bluray", + "resolution": 720 + }, + "items": [], + "allowed": true + }, + { + "name": "WEB 1080p", + "items": [ + { + "quality": { + "id": 15, + "name": "WEBRip-1080p", + "source": "webRip", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "web", + "resolution": 1080 + }, + "items": [], + "allowed": true + } + ], + "allowed": true, + "id": 1003 + }, + { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080 + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 20, + "name": "Bluray-1080p Remux", + "source": "blurayRaw", + "resolution": 1080 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 16, + "name": "HDTV-2160p", + "source": "television", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "name": "WEB 2160p", + "items": [ + { + "quality": { + "id": 17, + "name": "WEBRip-2160p", + "source": "webRip", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 18, + "name": "WEBDL-2160p", + "source": "web", + "resolution": 2160 + }, + "items": [], + "allowed": false + } + ], + "allowed": false, + "id": 1004 + }, + { + "quality": { + "id": 19, + "name": "Bluray-2160p", + "source": "bluray", + "resolution": 2160 + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 21, + "name": "Bluray-2160p Remux", + "source": "blurayRaw", + "resolution": 2160 + }, + "items": [], + "allowed": false + } + ], + "id": 1 + } +] diff --git a/tests/fixtures/sonarr/system_task.json b/tests/fixtures/sonarr/system_task.json new file mode 100644 index 0000000..a7a160d --- /dev/null +++ b/tests/fixtures/sonarr/system_task.json @@ -0,0 +1,3 @@ +{ + "task": "task" +} diff --git a/tests/fixtures/sonarr/system_task_all.json b/tests/fixtures/sonarr/system_task_all.json new file mode 100644 index 0000000..16f1468 --- /dev/null +++ b/tests/fixtures/sonarr/system_task_all.json @@ -0,0 +1,8 @@ +{ + "page": 1, + "pageSize": 10, + "sortKey": "timeleft", + "sortDirection": "ascending", + "totalRecords": 0, + "records": [] +} diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index c73c587..cfa5f81 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -14,6 +14,7 @@ PyarrLogFilterValue, PyarrLogSortKey, PyarrSortDirection, + PyarrTaskSortKey, ) from pyarr.models.sonarr import SonarrCommands, SonarrSortKey @@ -988,3 +989,265 @@ def test_del_blocklist(responses, sonarr_client): with contextlib.suppress(PyarrResourceNotFound): data = sonarr_client.del_blocklist(999) assert False + + +@pytest.mark.usefixtures +def test_del_blocklist_bulk(responses, sonarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/blocklist/bulk", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/delete.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.del_blocklist_bulk(ids=[8]) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_quality_profile(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/qualityprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/quality_profile_all.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_quality_profile() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/qualityprofile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/quality_profile.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_quality_profile(1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_upd_quality_profile(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/qualityprofile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/quality_profile.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_quality_profile(1) + + responses.add( + responses.PUT, + "https://127.0.0.1:8989/api/v3/qualityprofile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/quality_profile.json"), + status=202, + match_querystring=True, + ) + data = sonarr_client.upd_quality_profile(1, data) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_del_quality_profile(responses, sonarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/qualityprofile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/delete.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.del_quality_profile(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_quality_definition(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/qualitydefinition", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/quality_definition_all.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_quality_definition() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/qualitydefinition/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/quality_definition.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_quality_definition(1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_upd_quality_definition(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/qualitydefinition/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/quality_definition.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_quality_definition(1) + + responses.add( + responses.PUT, + "https://127.0.0.1:8989/api/v3/qualitydefinition/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/quality_definition.json"), + status=202, + match_querystring=True, + ) + data = sonarr_client.upd_quality_definition(1, data) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_indexer(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/indexer", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/indexer_all.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_indexer() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/indexer/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/indexer.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_indexer(1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_upd_indexer(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/indexer/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/indexer.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_indexer(1) + + responses.add( + responses.PUT, + "https://127.0.0.1:8989/api/v3/indexer/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/indexer.json"), + status=202, + match_querystring=True, + ) + data = sonarr_client.upd_indexer(1, data) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_del_indexer(responses, sonarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/indexer/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/delete.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.del_indexer(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_del_queue(responses, sonarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/queue/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/delete.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.del_queue(id_=1) + assert isinstance(data, dict) + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/queue/1?removeFromClient=True&blacklist=True", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/delete.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.del_queue(id_=1, remove_from_client=True, blacklist=True) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_task(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/system/task", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/system_task_all.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_task() + assert isinstance(data, dict) + + # TODO: Need an example task, currently using fake dict + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/system/task/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/system_task.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_task(id_=1) + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/system/task?page=1&pageSize=10&sortKey=timeleft&sortDirection=default", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/system_task_all.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_task( + page=1, + page_size=10, + sort_key=PyarrTaskSortKey.TIME_LEFT, + sort_dir=PyarrSortDirection.DEFAULT, + ) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_task(sort_key=PyarrTaskSortKey.TIME_LEFT) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_task(sort_dir=PyarrSortDirection.DESC) + assert False From 925f7f03932bd7e60dbc86731970bdde09966dcb Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Thu, 14 Jul 2022 21:07:26 +0000 Subject: [PATCH 15/53] test: added more tests, refactored some functions --- .github/workflows/pr.yml | 2 + .github/workflows/release.yml | 2 + poetry.lock | 46 +---- pyarr/base.py | 41 +++-- pyarr/models/common.py | 28 +++ pyarr/sonarr.py | 92 +++++---- tests/fixtures/sonarr/config_host.json | 33 ++++ tests/fixtures/sonarr/config_naming.json | 18 ++ tests/fixtures/sonarr/config_ui.json | 10 + tests/fixtures/sonarr/media_management.json | 21 +++ tests/fixtures/sonarr/notification.json | 79 ++++++++ tests/fixtures/sonarr/notification_all.json | 81 ++++++++ .../sonarr/notification_schema_all.json | 91 +++++++++ tests/fixtures/sonarr/remotepathmapping.json | 6 + .../sonarr/remotepathmapping_all.json | 8 + tests/test_sonarr.py | 174 +++++++++++++++++- 16 files changed, 636 insertions(+), 96 deletions(-) create mode 100644 tests/fixtures/sonarr/config_host.json create mode 100644 tests/fixtures/sonarr/config_naming.json create mode 100644 tests/fixtures/sonarr/config_ui.json create mode 100644 tests/fixtures/sonarr/media_management.json create mode 100644 tests/fixtures/sonarr/notification.json create mode 100644 tests/fixtures/sonarr/notification_all.json create mode 100644 tests/fixtures/sonarr/notification_schema_all.json create mode 100644 tests/fixtures/sonarr/remotepathmapping.json create mode 100644 tests/fixtures/sonarr/remotepathmapping_all.json diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 4ff47b4..9742c90 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -54,3 +54,5 @@ jobs: run: poetry run mypy pyarr - name: Check docstrings run: poetry run interrogate pyarr + - name: ๐Ÿงช Check tests are passing + run: poetry run pytest tests diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2f7bd64..122eb18 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,6 +31,8 @@ jobs: run: poetry run mypy pyarr - name: Check docstrings run: poetry run interrogate pyarr + - name: ๐Ÿงช Check tests are passing + run: poetry run pytest tests build-n-publish: name: Create release and publish ๐Ÿ distribution ๐Ÿ“ฆ to PyPI diff --git a/poetry.lock b/poetry.lock index 005f70b..e06cb73 100644 --- a/poetry.lock +++ b/poetry.lock @@ -183,7 +183,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" [[package]] name = "coverage" -version = "6.4.1" +version = "6.4.2" description = "Code coverage measurement for Python" category = "dev" optional = false @@ -1242,49 +1242,7 @@ colorama = [ {file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"}, {file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"}, ] -coverage = [ - {file = "coverage-6.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f1d5aa2703e1dab4ae6cf416eb0095304f49d004c39e9db1d86f57924f43006b"}, - {file = "coverage-6.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4ce1b258493cbf8aec43e9b50d89982346b98e9ffdfaae8ae5793bc112fb0068"}, - {file = "coverage-6.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83c4e737f60c6936460c5be330d296dd5b48b3963f48634c53b3f7deb0f34ec4"}, - {file = "coverage-6.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84e65ef149028516c6d64461b95a8dbcfce95cfd5b9eb634320596173332ea84"}, - {file = "coverage-6.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f69718750eaae75efe506406c490d6fc5a6161d047206cc63ce25527e8a3adad"}, - {file = "coverage-6.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e57816f8ffe46b1df8f12e1b348f06d164fd5219beba7d9433ba79608ef011cc"}, - {file = "coverage-6.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:01c5615d13f3dd3aa8543afc069e5319cfa0c7d712f6e04b920431e5c564a749"}, - {file = "coverage-6.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:75ab269400706fab15981fd4bd5080c56bd5cc07c3bccb86aab5e1d5a88dc8f4"}, - {file = "coverage-6.4.1-cp310-cp310-win32.whl", hash = "sha256:a7f3049243783df2e6cc6deafc49ea123522b59f464831476d3d1448e30d72df"}, - {file = "coverage-6.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:ee2ddcac99b2d2aec413e36d7a429ae9ebcadf912946b13ffa88e7d4c9b712d6"}, - {file = "coverage-6.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:fb73e0011b8793c053bfa85e53129ba5f0250fdc0392c1591fd35d915ec75c46"}, - {file = "coverage-6.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:106c16dfe494de3193ec55cac9640dd039b66e196e4641fa8ac396181578b982"}, - {file = "coverage-6.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:87f4f3df85aa39da00fd3ec4b5abeb7407e82b68c7c5ad181308b0e2526da5d4"}, - {file = "coverage-6.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:961e2fb0680b4f5ad63234e0bf55dfb90d302740ae9c7ed0120677a94a1590cb"}, - {file = "coverage-6.4.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:cec3a0f75c8f1031825e19cd86ee787e87cf03e4fd2865c79c057092e69e3a3b"}, - {file = "coverage-6.4.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:129cd05ba6f0d08a766d942a9ed4b29283aff7b2cccf5b7ce279d50796860bb3"}, - {file = "coverage-6.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:bf5601c33213d3cb19d17a796f8a14a9eaa5e87629a53979a5981e3e3ae166f6"}, - {file = "coverage-6.4.1-cp37-cp37m-win32.whl", hash = "sha256:269eaa2c20a13a5bf17558d4dc91a8d078c4fa1872f25303dddcbba3a813085e"}, - {file = "coverage-6.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:f02cbbf8119db68455b9d763f2f8737bb7db7e43720afa07d8eb1604e5c5ae28"}, - {file = "coverage-6.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ffa9297c3a453fba4717d06df579af42ab9a28022444cae7fa605af4df612d54"}, - {file = "coverage-6.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:145f296d00441ca703a659e8f3eb48ae39fb083baba2d7ce4482fb2723e050d9"}, - {file = "coverage-6.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d44996140af8b84284e5e7d398e589574b376fb4de8ccd28d82ad8e3bea13"}, - {file = "coverage-6.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2bd9a6fc18aab8d2e18f89b7ff91c0f34ff4d5e0ba0b33e989b3cd4194c81fd9"}, - {file = "coverage-6.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3384f2a3652cef289e38100f2d037956194a837221edd520a7ee5b42d00cc605"}, - {file = "coverage-6.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:9b3e07152b4563722be523e8cd0b209e0d1a373022cfbde395ebb6575bf6790d"}, - {file = "coverage-6.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1480ff858b4113db2718848d7b2d1b75bc79895a9c22e76a221b9d8d62496428"}, - {file = "coverage-6.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:865d69ae811a392f4d06bde506d531f6a28a00af36f5c8649684a9e5e4a85c83"}, - {file = "coverage-6.4.1-cp38-cp38-win32.whl", hash = "sha256:664a47ce62fe4bef9e2d2c430306e1428ecea207ffd68649e3b942fa8ea83b0b"}, - {file = "coverage-6.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:26dff09fb0d82693ba9e6231248641d60ba606150d02ed45110f9ec26404ed1c"}, - {file = "coverage-6.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d9c80df769f5ec05ad21ea34be7458d1dc51ff1fb4b2219e77fe24edf462d6df"}, - {file = "coverage-6.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:39ee53946bf009788108b4dd2894bf1349b4e0ca18c2016ffa7d26ce46b8f10d"}, - {file = "coverage-6.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5b66caa62922531059bc5ac04f836860412f7f88d38a476eda0a6f11d4724f4"}, - {file = "coverage-6.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fd180ed867e289964404051a958f7cccabdeed423f91a899829264bb7974d3d3"}, - {file = "coverage-6.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84631e81dd053e8a0d4967cedab6db94345f1c36107c71698f746cb2636c63e3"}, - {file = "coverage-6.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:8c08da0bd238f2970230c2a0d28ff0e99961598cb2e810245d7fc5afcf1254e8"}, - {file = "coverage-6.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:d42c549a8f41dc103a8004b9f0c433e2086add8a719da00e246e17cbe4056f72"}, - {file = "coverage-6.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:309ce4a522ed5fca432af4ebe0f32b21d6d7ccbb0f5fcc99290e71feba67c264"}, - {file = "coverage-6.4.1-cp39-cp39-win32.whl", hash = "sha256:fdb6f7bd51c2d1714cea40718f6149ad9be6a2ee7d93b19e9f00934c0f2a74d9"}, - {file = "coverage-6.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:342d4aefd1c3e7f620a13f4fe563154d808b69cccef415415aece4c786665397"}, - {file = "coverage-6.4.1-pp36.pp37.pp38-none-any.whl", hash = "sha256:4803e7ccf93230accb928f3a68f00ffa80a88213af98ed338a57ad021ef06815"}, - {file = "coverage-6.4.1.tar.gz", hash = "sha256:4321f075095a096e70aff1d002030ee612b65a205a0a0f5b815280d5dc58100c"}, -] +coverage = [] cssutils = [ {file = "cssutils-2.4.2-py3-none-any.whl", hash = "sha256:17e5ba0de70a672cd1cd2de47fd756bd6bce12585acd91447bde7be1d7a6c5c2"}, {file = "cssutils-2.4.2.tar.gz", hash = "sha256:877818bfa9668cc535773f46e6b6a46de28436191211741b3f7b4aaa64d9afbb"}, diff --git a/pyarr/base.py b/pyarr/base.py index 7a8539d..88b8016 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -10,6 +10,7 @@ PyarrLogFilterKey, PyarrLogFilterValue, PyarrLogSortKey, + PyarrNotificationSchema, PyarrSortDirection, PyarrTaskSortKey, ) @@ -524,10 +525,8 @@ def get_task( ] = {} if page: params["page"] = page - if page_size: params["pageSize"] = page_size - if sort_key and sort_dir: params["sortKey"] = sort_key params["sortDirection"] = sort_dir @@ -540,7 +539,7 @@ def get_task( # GET /remotepathmapping def get_remote_path_mapping( self, id_: Optional[int] = None - ) -> list[dict[str, Any]]: + ) -> Union[list[dict[str, Any]], dict[Any, Any]]: """Get remote path mappings for downloads Directory Args: @@ -549,8 +548,11 @@ def get_remote_path_mapping( Returns: list[dict[str, Any]]: List of dictionaries with items """ - _path = "" if isinstance(id_, str) or id_ is None else f"/{id_}" - return self.assert_return(f"remotepathmapping{_path}", self.ver_uri, list) + _path = f"remotepathmapping{'' if id_ is None else f'/{id_}'}" + return self.assert_return(_path, self.ver_uri, dict if id_ else list) + + # TODO: Add Delete remote path mapping + # TODO: Add update remote path mapping # CONFIG @@ -644,26 +646,41 @@ def upd_media_management(self, data: dict[str, Any]) -> dict[str, Any]: # NOTIFICATIONS # GET /notification - def get_notification(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_notification( + self, id_: Optional[int] = None + ) -> Union[list[dict[str, Any]], dict[Any, Any]]: """Get a list of all notification services, or single by ID Args: id_ (Optional[int], optional): Notification ID. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, Any]], dict[Any, Any]]: List of dictionaries with items """ - _path = "" if isinstance(id_, str) or id_ is None else f"/{id_}" - return self.assert_return(f"notification{_path}", self.ver_uri, list) + _path = "" if id_ is None else f"/{id_}" + return self.assert_return( + f"notification{_path}", self.ver_uri, dict if id_ else list + ) # GET /notification/schema - def get_notification_schema(self) -> list[dict[str, Any]]: + def get_notification_schema( + self, implementation: Optional[PyarrNotificationSchema] = None + ) -> Union[list[dict[str, Any]], dict[str, Any]]: """Get possible notification connections + Args: + implementation (Optional[PyarrNotificationSchema], optional): notification system + Returns: - list[dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items """ - return self.assert_return("notification/schema", self.ver_uri, list) + response = self.assert_return("notification/schema", self.ver_uri, list) + if implementation: + response = next( + (item for item in response if item["implementation"] == implementation), + None, + ) + return response # PUT /notification/{id} def upd_notification(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: diff --git a/pyarr/models/common.py b/pyarr/models/common.py index a9139ef..1dbb75a 100644 --- a/pyarr/models/common.py +++ b/pyarr/models/common.py @@ -83,3 +83,31 @@ class PyarrLogFilterValue(str, Enum): INFO = "info" WARN = "warn" ERROR = "error" + + +@enum_tools.documentation.document_enum +class PyarrNotificationSchema(str, Enum): + """Notification schema implementations""" + + BOXCAR = "Boxcar" + CUSTOM = "CustomScript" + DISCORD = "Discord" + EMAIL = "Email" + MEDIA_BROWSER = "MediaBrowser" + GOTIFY = "Gotify" + JOIN = "Join" + XBMC = "Xbmc" + MAILGUN = "MailGun" + PLEX_THEATER = "PlexHomeTheater" + PLEX_CLIENT = "PlexClient" + PLEX_SERVER = "PlexServer" + PROWL = "Prowl" + PUSH_BULLET = "PushBullet" + PUSHOVER = "Pushover" + SAND_GRID = "SendGrid" + SLACK = "Slack" + SYNOLOGY_INDEXER = "SynologyIndexer" + TELEGRAM = "Telegram" + TRAKT = "Trakt" + TWITTER = "Twitter" + WEBHOOK = "Webhook" diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index 49a52ae..9e7b45e 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -7,7 +7,6 @@ from pyarr.exceptions import PyarrMissingArgument from .base import BaseArrAPI -from .const import PAGE, PAGE_SIZE from .models.common import PyarrHistorySortKey, PyarrSortDirection from .models.sonarr import SonarrCommands, SonarrSortKey @@ -293,32 +292,37 @@ def upd_episode_file_quality( # GET /wanted/missing def get_wanted( self, - sort_key: SonarrSortKey = SonarrSortKey.AIR_DATE_UTC, - page: int = PAGE, - page_size: int = PAGE_SIZE, - sort_dir: PyarrSortDirection = PyarrSortDirection.DEFAULT, - include_series: bool = False, + page: Optional[int] = None, + page_size: Optional[int] = None, + sort_key: Optional[SonarrSortKey] = None, + sort_dir: Optional[PyarrSortDirection] = None, + include_series: Optional[bool] = None, ) -> dict[str, Any]: """Gets missing episode (episodes without files) Args: - sort_key (SonarrSortKey, optional): series.title or airDateUtc. Defaults to SonarrSortKey.AIR_DATE_UTC. - page (int, optional): Page number to return. Defaults to 1. - page_size (int, optional): Number of items per page. Defaults to 10. - sort_dir (PyarrSortDirection, optional): Direction to sort the items. Defaults to PyarrSortDirection.DEFAULT. - include_series (bool, optional): Include the whole series. Defaults to False + page (Optional[int], optional): Page number to return. Defaults to None. + page_size (Optional[int], optional): Number of items per page. Defaults to None. + sort_key (Optional[SonarrSortKey], optional): series.title or airDateUtc. Defaults to None. + sort_dir (Optional[PyarrSortDirection], optional): Direction to sort the items. Defaults to None. + include_series (Optional[bool], optional): Include the whole series. Defaults to None Returns: dict[str, Any]: Dictionary with items """ - params = { - "sortKey": sort_key, - "page": page, - "pageSize": page_size, - "sortDirection": sort_dir, - } + params: dict[str, Union[int, SonarrSortKey, PyarrSortDirection, bool]] = {} + if page: + params["page"] = page + if page_size: + params["pageSize"] = page_size + if sort_key and sort_dir: + params["sortKey"] = sort_key + params["sortDirection"] = sort_dir + elif sort_key or sort_dir: + raise PyarrMissingArgument("sort_key and sort_dir must be used together") if include_series: - params["includeSeries"] = True + params["includeSeries"] = include_series + return self.assert_return("wanted/missing", self.ver_uri, dict, params) ## QUEUE @@ -326,28 +330,46 @@ def get_wanted( # GET /queue def get_queue( self, - page: int = 1, - page_size: int = 20, - sort_dir: PyarrSortDirection = PyarrSortDirection.DEFAULT, - sort_key: SonarrSortKey = SonarrSortKey.TIMELEFT, - include_unknown_series_items: bool = False, - include_series: bool = False, - include_episode: bool = False, + page: Optional[int] = None, + page_size: Optional[int] = None, + sort_key: Optional[SonarrSortKey] = None, + sort_dir: Optional[PyarrSortDirection] = None, + include_unknown_series_items: Optional[bool] = None, + include_series: Optional[bool] = None, + include_episode: Optional[bool] = None, ) -> dict[str, Any]: """Gets currently downloading info + Args: + page (Optional[int], optional): Page number to return. Defaults to None. + page_size (Optional[int], optional): Number of items per page. Defaults to None. + sort_key (Optional[SonarrSortKey], optional): Field to sort by. Defaults to None. + sort_dir (Optional[PyarrSortDirection], optional): Direction to sort the items. Defaults to None. + include_unknown_series_items (Optional[bool], optional): Include unknown series items. Defaults to None. + include_series (Optional[bool], optional): Include series. Defaults to None. + include_episode (Optional[bool], optional): Include episodes. Defaults to None. + Returns: - list[dict[str, Any]]: List of dictionaries with items + dict[str, Any]: Dictionary with queue items """ - params = { - "page": page, - "pageSize": page_size, - "sortDirection": sort_dir, - "sortKey": sort_key, - "includeUnknownSeriesItems": str(include_unknown_series_items), - "includeSeries": str(include_series), - "includeEpisode": str(include_episode), - } + params: dict[str, Union[int, bool, SonarrSortKey, PyarrSortDirection]] = {} + + if page: + params["page"] = page + if page_size: + params["pageSize"] = page_size + if sort_key and sort_dir: + params["sortKey"] = sort_key + params["sortDirection"] = sort_dir + elif sort_key or sort_dir: + raise PyarrMissingArgument("sort_key and sort_dir must be used together") + if include_unknown_series_items is not None: + params["includeUnknownSeriesItems"] = include_unknown_series_items + if include_series is not None: + params["includeSeries"] = include_series + if include_episode is not None: + params["includeEpisode"] = include_episode + return self.assert_return("queue", self.ver_uri, dict, params) ## PARSE diff --git a/tests/fixtures/sonarr/config_host.json b/tests/fixtures/sonarr/config_host.json new file mode 100644 index 0000000..771afdd --- /dev/null +++ b/tests/fixtures/sonarr/config_host.json @@ -0,0 +1,33 @@ +{ + "bindAddress": "*", + "port": 8989, + "sslPort": 9898, + "enableSsl": false, + "launchBrowser": true, + "authenticationMethod": "forms", + "analyticsEnabled": true, + "username": "string", + "password": "string", + "logLevel": "Info", + "consoleLogLevel": "", + "branch": "main", + "apiKey": "string", + "sslCertHash": "", + "urlBase": "", + "updateAutomatically": false, + "updateMechanism": "docker", + "updateScriptPath": "", + "proxyEnabled": false, + "proxyType": "http", + "proxyHostname": "string", + "proxyPort": 3128, + "proxyUsername": "", + "proxyPassword": "", + "proxyBypassFilter": "", + "proxyBypassLocalAddresses": true, + "certificateValidation": "enabled", + "backupFolder": "Backups", + "backupInterval": 7, + "backupRetention": 28, + "id": 1 +} diff --git a/tests/fixtures/sonarr/config_naming.json b/tests/fixtures/sonarr/config_naming.json new file mode 100644 index 0000000..96ebba3 --- /dev/null +++ b/tests/fixtures/sonarr/config_naming.json @@ -0,0 +1,18 @@ +{ + "renameEpisodes": true, + "replaceIllegalCharacters": true, + "multiEpisodeStyle": 0, + "standardEpisodeFormat": "{Series Title} - S{season:00}E{episode:00} - {Episode Title} {Quality Full}", + "dailyEpisodeFormat": "{Series Title} - {Air-Date} - {Episode Title} {Quality Full}", + "animeEpisodeFormat": "{Series Title} - S{season:00}E{episode:00} - {Episode Title} {Quality Full}", + "seriesFolderFormat": "{Series Title}", + "seasonFolderFormat": "Season {season}", + "specialsFolderFormat": "Specials", + "includeSeriesTitle": false, + "includeEpisodeTitle": false, + "includeQuality": false, + "replaceSpaces": true, + "separator": " - ", + "numberStyle": "S{season:00}E{episode:00}", + "id": 1 +} diff --git a/tests/fixtures/sonarr/config_ui.json b/tests/fixtures/sonarr/config_ui.json new file mode 100644 index 0000000..fef4a10 --- /dev/null +++ b/tests/fixtures/sonarr/config_ui.json @@ -0,0 +1,10 @@ +{ + "firstDayOfWeek": 0, + "calendarWeekColumnHeader": "ddd M/D", + "shortDateFormat": "DD MMM YYYY", + "longDateFormat": "dddd, D MMMM YYYY", + "timeFormat": "HH:mm", + "showRelativeDates": false, + "enableColorImpairedMode": false, + "id": 1 +} diff --git a/tests/fixtures/sonarr/media_management.json b/tests/fixtures/sonarr/media_management.json new file mode 100644 index 0000000..7760421 --- /dev/null +++ b/tests/fixtures/sonarr/media_management.json @@ -0,0 +1,21 @@ +{ + "autoUnmonitorPreviouslyDownloadedEpisodes": true, + "recycleBin": "", + "recycleBinCleanupDays": 7, + "downloadPropersAndRepacks": "doNotUpgrade", + "createEmptySeriesFolders": true, + "deleteEmptyFolders": false, + "fileDate": "none", + "rescanAfterRefresh": "always", + "setPermissionsLinux": false, + "chmodFolder": "755", + "chownGroup": "", + "episodeTitleRequired": "always", + "skipFreeSpaceCheckWhenImporting": false, + "minimumFreeSpaceWhenImporting": 100, + "copyUsingHardlinks": true, + "importExtraFiles": false, + "extraFileExtensions": "srt", + "enableMediaInfo": true, + "id": 1 +} diff --git a/tests/fixtures/sonarr/notification.json b/tests/fixtures/sonarr/notification.json new file mode 100644 index 0000000..d5bb000 --- /dev/null +++ b/tests/fixtures/sonarr/notification.json @@ -0,0 +1,79 @@ +{ + "onGrab": false, + "onDownload": true, + "onUpgrade": true, + "onRename": true, + "onSeriesDelete": false, + "onEpisodeFileDelete": false, + "onEpisodeFileDeleteForUpgrade": true, + "onHealthIssue": false, + "onApplicationUpdate": false, + "supportsOnGrab": false, + "supportsOnDownload": true, + "supportsOnUpgrade": true, + "supportsOnRename": true, + "supportsOnSeriesDelete": true, + "supportsOnEpisodeFileDelete": true, + "supportsOnEpisodeFileDeleteForUpgrade": true, + "supportsOnHealthIssue": false, + "supportsOnApplicationUpdate": false, + "includeHealthWarnings": false, + "name": "HomePlex", + "fields": [ + { + "order": 0, + "name": "host", + "label": "Host", + "value": "127.0.0.1", + "type": "textbox", + "advanced": false + }, + { + "order": 1, + "name": "port", + "label": "Port", + "value": 32400, + "type": "textbox", + "advanced": false + }, + { + "order": 2, + "name": "useSsl", + "label": "Use SSL", + "helpText": "Connect to Plex over HTTPS instead of HTTP", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 3, + "name": "authToken", + "label": "Auth Token", + "value": "string", + "type": "textbox", + "advanced": true + }, + { + "order": 4, + "name": "signIn", + "label": "Authenticate with Plex.tv", + "value": "startOAuth", + "type": "oAuth", + "advanced": false + }, + { + "order": 5, + "name": "updateLibrary", + "label": "Update Library", + "value": true, + "type": "checkbox", + "advanced": false + } + ], + "implementationName": "Plex Media Server", + "implementation": "PlexServer", + "configContract": "PlexServerSettings", + "infoLink": "https://wiki.servarr.com/sonarr/supported#plexserver", + "tags": [], + "id": 1 +} diff --git a/tests/fixtures/sonarr/notification_all.json b/tests/fixtures/sonarr/notification_all.json new file mode 100644 index 0000000..1a29ef3 --- /dev/null +++ b/tests/fixtures/sonarr/notification_all.json @@ -0,0 +1,81 @@ +[ + { + "onGrab": false, + "onDownload": true, + "onUpgrade": true, + "onRename": true, + "onSeriesDelete": false, + "onEpisodeFileDelete": false, + "onEpisodeFileDeleteForUpgrade": true, + "onHealthIssue": false, + "onApplicationUpdate": false, + "supportsOnGrab": false, + "supportsOnDownload": true, + "supportsOnUpgrade": true, + "supportsOnRename": true, + "supportsOnSeriesDelete": true, + "supportsOnEpisodeFileDelete": true, + "supportsOnEpisodeFileDeleteForUpgrade": true, + "supportsOnHealthIssue": false, + "supportsOnApplicationUpdate": false, + "includeHealthWarnings": false, + "name": "HomePlex", + "fields": [ + { + "order": 0, + "name": "host", + "label": "Host", + "value": "127.0.0.1", + "type": "textbox", + "advanced": false + }, + { + "order": 1, + "name": "port", + "label": "Port", + "value": 32400, + "type": "textbox", + "advanced": false + }, + { + "order": 2, + "name": "useSsl", + "label": "Use SSL", + "helpText": "Connect to Plex over HTTPS instead of HTTP", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 3, + "name": "authToken", + "label": "Auth Token", + "value": "string", + "type": "textbox", + "advanced": true + }, + { + "order": 4, + "name": "signIn", + "label": "Authenticate with Plex.tv", + "value": "startOAuth", + "type": "oAuth", + "advanced": false + }, + { + "order": 5, + "name": "updateLibrary", + "label": "Update Library", + "value": true, + "type": "checkbox", + "advanced": false + } + ], + "implementationName": "Plex Media Server", + "implementation": "PlexServer", + "configContract": "PlexServerSettings", + "infoLink": "https://wiki.servarr.com/sonarr/supported#plexserver", + "tags": [], + "id": 1 + } +] diff --git a/tests/fixtures/sonarr/notification_schema_all.json b/tests/fixtures/sonarr/notification_schema_all.json new file mode 100644 index 0000000..7c57d83 --- /dev/null +++ b/tests/fixtures/sonarr/notification_schema_all.json @@ -0,0 +1,91 @@ +[ + { + "onGrab": false, + "onDownload": false, + "onUpgrade": false, + "onRename": false, + "onSeriesDelete": false, + "onEpisodeFileDelete": false, + "onEpisodeFileDeleteForUpgrade": false, + "onHealthIssue": false, + "onApplicationUpdate": false, + "supportsOnGrab": true, + "supportsOnDownload": true, + "supportsOnUpgrade": true, + "supportsOnRename": false, + "supportsOnSeriesDelete": true, + "supportsOnEpisodeFileDelete": true, + "supportsOnEpisodeFileDeleteForUpgrade": true, + "supportsOnHealthIssue": true, + "supportsOnApplicationUpdate": true, + "includeHealthWarnings": false, + "name": "", + "fields": [ + { + "order": 0, + "name": "token", + "label": "Access Token", + "helpText": "Your Access Token, from your Boxcar account settings: https://new.boxcar.io/account/edit", + "helpLink": "https://new.boxcar.io/account/edit", + "type": "textbox", + "advanced": false + } + ], + "implementationName": "Boxcar", + "implementation": "Boxcar", + "configContract": "BoxcarSettings", + "infoLink": "https://wiki.servarr.com/sonarr/supported#boxcar", + "tags": [], + "presets": [] + }, + { + "onGrab": false, + "onDownload": false, + "onUpgrade": false, + "onRename": false, + "onSeriesDelete": false, + "onEpisodeFileDelete": false, + "onEpisodeFileDeleteForUpgrade": false, + "onHealthIssue": false, + "onApplicationUpdate": false, + "supportsOnGrab": true, + "supportsOnDownload": true, + "supportsOnUpgrade": true, + "supportsOnRename": true, + "supportsOnSeriesDelete": true, + "supportsOnEpisodeFileDelete": true, + "supportsOnEpisodeFileDeleteForUpgrade": true, + "supportsOnHealthIssue": true, + "supportsOnApplicationUpdate": true, + "includeHealthWarnings": false, + "name": "", + "fields": [ + { + "order": 0, + "name": "path", + "label": "Path", + "type": "filePath", + "advanced": false + }, + { + "order": 1, + "name": "arguments", + "label": "Arguments", + "helpText": "Arguments to pass to the script", + "type": "textbox", + "advanced": false, + "hidden": "hiddenIfNotSet" + } + ], + "implementationName": "Custom Script", + "implementation": "CustomScript", + "configContract": "CustomScriptSettings", + "infoLink": "https://wiki.servarr.com/sonarr/supported#customscript", + "message": { + "message": "Testing will execute the script with the EventType set to Test, ensure your script handles this correctly", + "type": "warning" + }, + "tags": [], + "presets": [] + } +] diff --git a/tests/fixtures/sonarr/remotepathmapping.json b/tests/fixtures/sonarr/remotepathmapping.json new file mode 100644 index 0000000..6fc6c7b --- /dev/null +++ b/tests/fixtures/sonarr/remotepathmapping.json @@ -0,0 +1,6 @@ +{ + "host": "192.168.10.2", + "remotePath": "/home/downloads/", + "localPath": "/downloads/", + "id": 1 +} diff --git a/tests/fixtures/sonarr/remotepathmapping_all.json b/tests/fixtures/sonarr/remotepathmapping_all.json new file mode 100644 index 0000000..ed0ce22 --- /dev/null +++ b/tests/fixtures/sonarr/remotepathmapping_all.json @@ -0,0 +1,8 @@ +[ + { + "host": "192.168.10.2", + "remotePath": "/home/downloads/", + "localPath": "/downloads/", + "id": 1 + } +] diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index cfa5f81..ad7cabf 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -13,6 +13,7 @@ PyarrLogFilterKey, PyarrLogFilterValue, PyarrLogSortKey, + PyarrNotificationSchema, PyarrSortDirection, PyarrTaskSortKey, ) @@ -355,7 +356,7 @@ def test_upd_episode_file_quality(responses, sonarr_client): def test_get_wanted(responses, sonarr_client): responses.add( responses.GET, - "https://127.0.0.1:8989/api/v3/wanted/missing?sortKey=airDateUtc&page=1&pageSize=10&sortDirection=default", + "https://127.0.0.1:8989/api/v3/wanted/missing", headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/wanted_missing.json"), status=200, @@ -366,7 +367,7 @@ def test_get_wanted(responses, sonarr_client): responses.add( responses.GET, - "https://127.0.0.1:8989/api/v3/wanted/missing?sortKey=airDateUtc&page=1&pageSize=10&sortDirection=default&includeSeries=True", + "https://127.0.0.1:8989/api/v3/wanted/missing?includeSeries=True", headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/wanted_missing_extended.json"), status=200, @@ -377,16 +378,16 @@ def test_get_wanted(responses, sonarr_client): responses.add( responses.GET, - "https://127.0.0.1:8989/api/v3/wanted/missing?sortKey=series.sortTitle&page=2&pageSize=20&sortDirection=ascending", + "https://127.0.0.1:8989/api/v3/wanted/missing?page=2&pageSize=20&sortKey=series.sortTitle&sortDirection=ascending", headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/wanted_missing.json"), status=200, match_querystring=True, ) data = sonarr_client.get_wanted( - sort_key=SonarrSortKey.SERIES_TITLE, page=2, page_size=20, + sort_key=SonarrSortKey.SERIES_TITLE, sort_dir=PyarrSortDirection.ASC, ) assert isinstance(data, dict) @@ -421,7 +422,7 @@ def test_get_quality_profile(responses, sonarr_client): def test_get_queue(responses, sonarr_client): responses.add( responses.GET, - "https://127.0.0.1:8989/api/v3/queue?page=1&pageSize=20&sortDirection=default&sortKey=timeleft&includeUnknownSeriesItems=False&includeSeries=False&includeEpisode=False", + "https://127.0.0.1:8989/api/v3/queue", headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/queue.json"), status=200, @@ -430,6 +431,32 @@ def test_get_queue(responses, sonarr_client): data = sonarr_client.get_queue() assert isinstance(data, dict) + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/queue?page=1&pageSize=20&sortKey=timeleft&sortDirection=default&includeUnknownSeriesItems=False&includeSeries=False&includeEpisode=False", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/queue.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_queue( + page=1, + page_size=20, + sort_key=SonarrSortKey.TIMELEFT, + sort_dir=PyarrSortDirection.DEFAULT, + include_unknown_series_items=False, + include_series=False, + include_episode=False, + ) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_queue(sort_key=SonarrSortKey.TIMELEFT) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_queue(sort_dir=PyarrSortDirection.DEFAULT) + assert False + @pytest.mark.usefixtures def test_get_parsed_title(responses, sonarr_client): @@ -1251,3 +1278,140 @@ def test_get_task(responses, sonarr_client): with contextlib.suppress(PyarrMissingArgument): data = sonarr_client.get_task(sort_dir=PyarrSortDirection.DESC) assert False + + +@pytest.mark.usefixtures +def test_get_remote_path_mapping(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/remotepathmapping", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/remotepathmapping_all.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_remote_path_mapping() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/remotepathmapping/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/remotepathmapping.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_remote_path_mapping(1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_config_ui(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/config/ui", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/config_ui.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_config_ui() + assert isinstance(data, dict) + + +# TODO: update config ui + + +@pytest.mark.usefixtures +def test_get_config_host(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/config/host", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/config_host.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_config_host() + assert isinstance(data, dict) + + +# TODO: update config host + + +@pytest.mark.usefixtures +def test_get_config_naming(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/config/naming", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/config_naming.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_config_naming() + assert isinstance(data, dict) + + +# TODO: update config naming + + +@pytest.mark.usefixtures +def test_get_media_management(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/config/mediamanagement", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/media_management.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_media_management() + assert isinstance(data, dict) + + +# TODO: update media management + + +@pytest.mark.usefixtures +def test_get_notification(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/notification", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/notification_all.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_notification() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/notification/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/notification.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_notification(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_notification_schema(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/notification/schema", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/notification_schema_all.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_notification_schema() + assert isinstance(data, list) + + data = sonarr_client.get_notification_schema( + implementation=PyarrNotificationSchema.BOXCAR + ) + assert isinstance(data, dict) From 427ebdde0ffc5345e0cc07678c1e2313c0fba58b Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Thu, 14 Jul 2022 21:12:52 +0000 Subject: [PATCH 16/53] fix: added error when no implementation is found --- pyarr/base.py | 6 +++++- tests/test_sonarr.py | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/pyarr/base.py b/pyarr/base.py index 88b8016..7031c51 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -3,7 +3,7 @@ from requests import Response -from pyarr.exceptions import PyarrMissingArgument +from pyarr.exceptions import PyarrMissingArgument, PyarrRecordNotFound from pyarr.models.common import ( PyarrBlocklistSortKey, PyarrHistorySortKey, @@ -680,6 +680,10 @@ def get_notification_schema( (item for item in response if item["implementation"] == implementation), None, ) + if not response: + raise PyarrRecordNotFound( + f"a record with implementation {implementation} was not found" + ) return response # PUT /notification/{id} diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index ad7cabf..1b1b9d8 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -1415,3 +1415,7 @@ def test_get_notification_schema(responses, sonarr_client): implementation=PyarrNotificationSchema.BOXCAR ) assert isinstance(data, dict) + + with contextlib.suppress(PyarrRecordNotFound): + data = sonarr_client.get_notification_schema(implementation="polarbear") + assert False From 44e5afc8feabead18a19aa33bac73233eff2b6a3 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Thu, 14 Jul 2022 21:34:50 +0000 Subject: [PATCH 17/53] tests: added for get_download_client and tags --- pyarr/base.py | 22 +-- tests/fixtures/sonarr/downloadclient.json | 124 ++++++++++++++++ tests/fixtures/sonarr/downloadclient_all.json | 126 ++++++++++++++++ tests/fixtures/sonarr/tag.json | 4 + tests/fixtures/sonarr/tag_all.json | 6 + tests/fixtures/sonarr/tag_detail.json | 14 ++ tests/fixtures/sonarr/tag_detail_all.json | 16 ++ tests/test_sonarr.py | 138 +++++++++++++++++- 8 files changed, 439 insertions(+), 11 deletions(-) create mode 100644 tests/fixtures/sonarr/downloadclient.json create mode 100644 tests/fixtures/sonarr/downloadclient_all.json create mode 100644 tests/fixtures/sonarr/tag.json create mode 100644 tests/fixtures/sonarr/tag_all.json create mode 100644 tests/fixtures/sonarr/tag_detail.json create mode 100644 tests/fixtures/sonarr/tag_detail_all.json diff --git a/pyarr/base.py b/pyarr/base.py index 7031c51..b9d2ee3 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -716,17 +716,19 @@ def del_notification( # TAGS # GET /tag/{id} - def get_tag(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_tag( + self, id_: Optional[int] = None + ) -> Union[list[dict[str, Any]], dict[str, Any]]: """Returns all tags or specific tag by database id Args: id_ (Optional[int], optional): Database id for tag. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items """ path = f"tag/{id_}" if id_ else "tag" - return self.assert_return(path, self.ver_uri, list) + return self.assert_return(path, self.ver_uri, dict if id_ else list) # GET /tag/detail/{id} def get_tag_detail( @@ -738,10 +740,10 @@ def get_tag_detail( id_ (Optional[int], optional): Database id for tag. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items """ path = f"tag/detail/{id_}" if id_ else "tag/detail" - return self.assert_return(path, self.ver_uri, list if id_ is None else dict) + return self.assert_return(path, self.ver_uri, dict if id_ else list) # POST /tag def create_tag(self, label: str) -> dict[str, Any]: @@ -771,7 +773,7 @@ def upd_tag(self, id_: int, label: str) -> dict[str, Any]: dict[str, Any]: Dictionary of updated items """ data = {"id": id_, "label": label} - return self._put(f"tag/{id_}", self.ver_uri, data=data) + return self._put("tag", self.ver_uri, data=data) # DELETE /tag/{id} def del_tag(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, Any]]: @@ -788,17 +790,19 @@ def del_tag(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, Any]]: # DOWNLOAD CLIENT # GET /downloadclient/{id} - def get_download_client(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_download_client( + self, id_: Optional[int] = None + ) -> Union[list[dict[str, Any]], dict[str, Any]]: """Get a list of all the download clients or a single client by its database id Args: id_ (Optional[int], optional): Download client database id. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items """ path = f"downloadclient/{id_}" if id_ else "downloadclient" - return self.assert_return(path, self.ver_uri, list) + return self.assert_return(path, self.ver_uri, dict if id_ else list) # GET /downloadclient/schema def get_download_client_schema( diff --git a/tests/fixtures/sonarr/downloadclient.json b/tests/fixtures/sonarr/downloadclient.json new file mode 100644 index 0000000..903ffae --- /dev/null +++ b/tests/fixtures/sonarr/downloadclient.json @@ -0,0 +1,124 @@ +{ + "enable": true, + "protocol": "string", + "priority": 1, + "removeCompletedDownloads": true, + "removeFailedDownloads": true, + "name": "string", + "fields": [ + { + "order": 0, + "name": "host", + "label": "Host", + "value": "string", + "type": "textbox", + "advanced": false + }, + { + "order": 1, + "name": "port", + "label": "Port", + "value": 8112, + "type": "textbox", + "advanced": false + }, + { + "order": 2, + "name": "useSsl", + "label": "Use SSL", + "helpText": "Use secure connection when connecting to Deluge", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 3, + "name": "urlBase", + "label": "Url Base", + "helpText": "Adds a prefix to the deluge json url, see http://[host]:[port]/[urlBase]/json", + "type": "textbox", + "advanced": true + }, + { + "order": 4, + "name": "password", + "label": "Password", + "value": "string", + "type": "password", + "advanced": false + }, + { + "order": 5, + "name": "tvCategory", + "label": "Category", + "helpText": "Adding a category specific to Sonarr avoids conflicts with unrelated non-Sonarr downloads. Using a category is optional, but strongly recommended.", + "value": "sonarr", + "type": "textbox", + "advanced": false + }, + { + "order": 6, + "name": "tvImportedCategory", + "label": "Post-Import Category", + "helpText": "Category for Sonarr to set after it has imported the download. Sonarr will not remove torrents in that category even if seeding finished. Leave blank to keep same category.", + "type": "textbox", + "advanced": true + }, + { + "order": 7, + "name": "recentTvPriority", + "label": "Recent Priority", + "helpText": "Priority to use when grabbing episodes that aired within the last 14 days", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "Last", + "order": 0 + }, + { + "value": 1, + "name": "First", + "order": 1 + } + ] + }, + { + "order": 8, + "name": "olderTvPriority", + "label": "Older Priority", + "helpText": "Priority to use when grabbing episodes that aired over 14 days ago", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "Last", + "order": 0 + }, + { + "value": 1, + "name": "First", + "order": 1 + } + ] + }, + { + "order": 9, + "name": "addPaused", + "label": "Add Paused", + "value": false, + "type": "checkbox", + "advanced": false + } + ], + "implementationName": "string", + "implementation": "string", + "configContract": "string", + "infoLink": "string", + "tags": [], + "id": 1 +} diff --git a/tests/fixtures/sonarr/downloadclient_all.json b/tests/fixtures/sonarr/downloadclient_all.json new file mode 100644 index 0000000..0e75e7f --- /dev/null +++ b/tests/fixtures/sonarr/downloadclient_all.json @@ -0,0 +1,126 @@ +[ + { + "enable": true, + "protocol": "string", + "priority": 1, + "removeCompletedDownloads": true, + "removeFailedDownloads": true, + "name": "string", + "fields": [ + { + "order": 0, + "name": "host", + "label": "Host", + "value": "string", + "type": "textbox", + "advanced": false + }, + { + "order": 1, + "name": "port", + "label": "Port", + "value": 8112, + "type": "textbox", + "advanced": false + }, + { + "order": 2, + "name": "useSsl", + "label": "Use SSL", + "helpText": "Use secure connection when connecting to Deluge", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 3, + "name": "urlBase", + "label": "Url Base", + "helpText": "Adds a prefix to the deluge json url, see http://[host]:[port]/[urlBase]/json", + "type": "textbox", + "advanced": true + }, + { + "order": 4, + "name": "password", + "label": "Password", + "value": "string", + "type": "password", + "advanced": false + }, + { + "order": 5, + "name": "tvCategory", + "label": "Category", + "helpText": "Adding a category specific to Sonarr avoids conflicts with unrelated non-Sonarr downloads. Using a category is optional, but strongly recommended.", + "value": "sonarr", + "type": "textbox", + "advanced": false + }, + { + "order": 6, + "name": "tvImportedCategory", + "label": "Post-Import Category", + "helpText": "Category for Sonarr to set after it has imported the download. Sonarr will not remove torrents in that category even if seeding finished. Leave blank to keep same category.", + "type": "textbox", + "advanced": true + }, + { + "order": 7, + "name": "recentTvPriority", + "label": "Recent Priority", + "helpText": "Priority to use when grabbing episodes that aired within the last 14 days", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "Last", + "order": 0 + }, + { + "value": 1, + "name": "First", + "order": 1 + } + ] + }, + { + "order": 8, + "name": "olderTvPriority", + "label": "Older Priority", + "helpText": "Priority to use when grabbing episodes that aired over 14 days ago", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "Last", + "order": 0 + }, + { + "value": 1, + "name": "First", + "order": 1 + } + ] + }, + { + "order": 9, + "name": "addPaused", + "label": "Add Paused", + "value": false, + "type": "checkbox", + "advanced": false + } + ], + "implementationName": "string", + "implementation": "string", + "configContract": "string", + "infoLink": "string", + "tags": [], + "id": 1 + } +] diff --git a/tests/fixtures/sonarr/tag.json b/tests/fixtures/sonarr/tag.json new file mode 100644 index 0000000..4f96888 --- /dev/null +++ b/tests/fixtures/sonarr/tag.json @@ -0,0 +1,4 @@ +{ + "label": "megusta", + "id": 2 +} diff --git a/tests/fixtures/sonarr/tag_all.json b/tests/fixtures/sonarr/tag_all.json new file mode 100644 index 0000000..ec97b1f --- /dev/null +++ b/tests/fixtures/sonarr/tag_all.json @@ -0,0 +1,6 @@ +[ + { + "label": "string", + "id": 1 + } +] diff --git a/tests/fixtures/sonarr/tag_detail.json b/tests/fixtures/sonarr/tag_detail.json new file mode 100644 index 0000000..d872d20 --- /dev/null +++ b/tests/fixtures/sonarr/tag_detail.json @@ -0,0 +1,14 @@ +{ + "label": "string", + "delayProfileIds": [], + "importListIds": [], + "notificationIds": [], + "restrictionIds": [ + 3 + ], + "indexerIds": [], + "seriesIds": [ + 17 + ], + "id": 1 +} diff --git a/tests/fixtures/sonarr/tag_detail_all.json b/tests/fixtures/sonarr/tag_detail_all.json new file mode 100644 index 0000000..1113e83 --- /dev/null +++ b/tests/fixtures/sonarr/tag_detail_all.json @@ -0,0 +1,16 @@ +[ + { + "label": "string", + "delayProfileIds": [], + "importListIds": [], + "notificationIds": [], + "restrictionIds": [ + 3 + ], + "indexerIds": [], + "seriesIds": [ + 17 + ], + "id": 1 + } +] diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index 1b1b9d8..f298357 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -236,7 +236,7 @@ def test_upd_episode(responses, sonarr_client): "https://127.0.0.1:8989/api/v3/episode/1", headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/episode_update.json"), - status=200, + status=202, match_querystring=True, ) payload = {"monitored": True} @@ -637,7 +637,7 @@ def test_upd_series(responses, sonarr_client): "https://127.0.0.1:8989/api/v3/series/1", headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/series.json"), - status=200, + status=202, match_querystring=True, ) series = sonarr_client.get_series(1) @@ -1419,3 +1419,137 @@ def test_get_notification_schema(responses, sonarr_client): with contextlib.suppress(PyarrRecordNotFound): data = sonarr_client.get_notification_schema(implementation="polarbear") assert False + + +# TODO: update notification + + +@pytest.mark.usefixtures +def test_del_notification(responses, sonarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/notification/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/delete.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.del_notification(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_tag(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/tag", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/tag_all.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_tag() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/tag/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/tag.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_tag(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_tag_detail(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/tag/detail", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/tag_detail_all.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_tag_detail() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/tag/detail/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/tag_detail.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_tag_detail(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_create_tag(responses, sonarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8989/api/v3/tag", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/tag.json"), + status=201, + match_querystring=True, + ) + data = sonarr_client.create_tag(label="string") + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_upd_tag(responses, sonarr_client): + responses.add( + responses.PUT, + "https://127.0.0.1:8989/api/v3/tag", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/tag.json"), + status=202, + match_querystring=True, + ) + data = sonarr_client.upd_tag(id_=1, label="string") + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_del_tag(responses, sonarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/tag/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/delete.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.del_tag(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_download_client(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/downloadclient", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/downloadclient_all.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_download_client() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/downloadclient/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/downloadclient.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_download_client(id_=1) + assert isinstance(data, dict) From 545a8c59b73e982f33b7e2ab7afae1ff46568ffc Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Fri, 15 Jul 2022 09:21:49 +0000 Subject: [PATCH 18/53] test: added more tests & implemented new methods --- pyarr/base.py | 95 ++++++++-- pyarr/models/common.py | 34 ++++ .../sonarr/config_downloadclient.json | 6 + .../sonarr/download_client_schema_all.json | 58 ++++++ tests/fixtures/sonarr/import_list.json | 142 +++++++++++++++ tests/fixtures/sonarr/import_list_all.json | 144 +++++++++++++++ .../sonarr/import_list_schema_all.json | 37 ++++ tests/test_sonarr.py | 171 +++++++++++++++++- 8 files changed, 665 insertions(+), 22 deletions(-) create mode 100644 tests/fixtures/sonarr/config_downloadclient.json create mode 100644 tests/fixtures/sonarr/download_client_schema_all.json create mode 100644 tests/fixtures/sonarr/import_list.json create mode 100644 tests/fixtures/sonarr/import_list_all.json create mode 100644 tests/fixtures/sonarr/import_list_schema_all.json diff --git a/pyarr/base.py b/pyarr/base.py index b9d2ee3..5e60a23 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -6,7 +6,9 @@ from pyarr.exceptions import PyarrMissingArgument, PyarrRecordNotFound from pyarr.models.common import ( PyarrBlocklistSortKey, + PyarrDownloadClientSchema, PyarrHistorySortKey, + PyarrImportListSchema, PyarrLogFilterKey, PyarrLogFilterValue, PyarrLogSortKey, @@ -686,6 +688,21 @@ def get_notification_schema( ) return response + # POST /notification + def add_notification(self, data: dict[str, Any]) -> dict[str, Any]: + """Add an import list based on the schema information supplied + + Note: + Recommended to be used in conjunction with get_notification_schema() + + Args: + data (dict[str, Any]): dictionary with import list schema and settings + + Returns: + dict[str, Any]: dictionary of added item + """ + return self._post("notification", self.ver_uri, data=data) + # PUT /notification/{id} def upd_notification(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: """Edit notification by database id @@ -806,23 +823,26 @@ def get_download_client( # GET /downloadclient/schema def get_download_client_schema( - self, implementation_: Optional[str] = None + self, implementation: Optional[PyarrDownloadClientSchema] = None ) -> list[dict[str, Any]]: """Gets the schemas for the different download Clients Args: - implementation_ (Optional[str], optional): Client implementation name. Defaults to None. + implementation (Optional[PyarrDownloadClientSchema], optional): Client implementation name. Defaults to None. Returns: list[dict[str, Any]]: List of dictionaries with items """ response = self.assert_return("downloadclient/schema", self.ver_uri, list) - if implementation_: - return [ - schema - for schema in response - if schema["implementation"] == implementation_ - ] + if implementation: + response = next( + (item for item in response if item["implementation"] == implementation), + None, + ) + if not response: + raise PyarrRecordNotFound( + f"a record with implementation {implementation} was not found" + ) return response @@ -881,16 +901,46 @@ def get_import_list(self, id_: Optional[int] = None) -> list[dict[str, Any]]: list[dict[str, Any]]: List of dictionaries with items """ path = f"importlist/{id_}" if id_ else "importlist" - return self.assert_return(path, self.ver_uri, list) + return self.assert_return(path, self.ver_uri, dict if id_ else list) + + def get_import_list_schema( + self, implementation: Optional[PyarrImportListSchema] = None + ) -> list[dict[str, Any]]: + """Gets the schemas for the different import list sources + + Args: + implementation (Optional[PyarrImportListSchema], optional): Client implementation name. Defaults to None. + + Returns: + list[dict[str, Any]]: List of dictionaries with items + """ + response = self.assert_return("importlist/schema", self.ver_uri, list) + if implementation: + response = next( + (item for item in response if item["implementation"] == implementation), + None, + ) + if not response: + raise PyarrRecordNotFound( + f"a record with implementation {implementation} was not found" + ) + + return response # POST /importlist/ - def add_import_list(self) -> Any: - """This is not implemented yet + def add_import_list(self, data: dict[str, Any]) -> dict[str, Any]: + """Add an import list based on the schema information supplied - Raises: - NotImplementedError: Error + Note: + Recommended to be used in conjunction with get_import_list_schema() + + Args: + data (dict[str, Any]): dictionary with import list schema and settings + + Returns: + dict[str, Any]: dictionary of added item """ - raise NotImplementedError() + return self._post("importlist", self.ver_uri, data=data) # PUT /importlist/{id} def upd_import_list(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: @@ -928,11 +978,16 @@ def get_config_download_client(self) -> dict[str, Any]: """ return self.assert_return("config/downloadclient", self.ver_uri, dict) - # POST /notifications - def add_notifications(self) -> Any: - """This is not implemented yet + def upd_config_download_client(self, data: dict[str, Any]) -> dict[str, Any]: + """Update download client page configurations - Raises: - NotImplementedError: Error + Note: + Recommended to be used in conjunction with get_config_download_client() + + Args: + data (dict[str, Any]): data to be updated + + Returns: + dict[str, Any]: dictionary with updated items """ - raise NotImplementedError() + return self._put("config/downloadclient", self.ver_uri, data=data) diff --git a/pyarr/models/common.py b/pyarr/models/common.py index 1dbb75a..023d177 100644 --- a/pyarr/models/common.py +++ b/pyarr/models/common.py @@ -111,3 +111,37 @@ class PyarrNotificationSchema(str, Enum): TRAKT = "Trakt" TWITTER = "Twitter" WEBHOOK = "Webhook" + + +@enum_tools.documentation.document_enum +class PyarrDownloadClientSchema(str, Enum): + """Download client schema implementations""" + + ARIA2 = "Aria2" + DELUGE = "Deluge" + TORRENT_DOWNLOAD_STATION = "TorrentDownloadStation" + USENET_DOWNLOAD_STATION = "UsenetDownloadStation" + FLOOD = "Flood" + HADOUKEN = "Hadouken" + NZB_GET = "Nzbget" + NZB_VORTEX = "NzbVortex" + PNEUMATIC = "Pneumatic" + Q_BITTORRENT = "QBittorrent" + R_TORRENT = "RTorrent" + SABNZBD = "Sabnzbd" + TORRENT_BLACKHOLE = "TorrentBlackhole" + TRANSMISSION = "Transmission" + USENET_BLACKHOLE = "UsenetBlackhole" + U_TORRENT = "UTorrent" + VUZE = "Vuze" + + +@enum_tools.documentation.document_enum +class PyarrImportListSchema(str, Enum): + """Import List schema implementations""" + + PLEX = "PlexImport" + SONARR = "SonarrImport" + TRAKT_LIST = "TraktListImport" + TRAKT_POPULAR = "TraktPopularImport" + TRAKT_USER = "TraktUserImport" diff --git a/tests/fixtures/sonarr/config_downloadclient.json b/tests/fixtures/sonarr/config_downloadclient.json new file mode 100644 index 0000000..420422c --- /dev/null +++ b/tests/fixtures/sonarr/config_downloadclient.json @@ -0,0 +1,6 @@ +{ + "downloadClientWorkingFolders": "_UNPACK_|_FAILED_", + "enableCompletedDownloadHandling": true, + "autoRedownloadFailed": true, + "id": 1 +} diff --git a/tests/fixtures/sonarr/download_client_schema_all.json b/tests/fixtures/sonarr/download_client_schema_all.json new file mode 100644 index 0000000..2486c2d --- /dev/null +++ b/tests/fixtures/sonarr/download_client_schema_all.json @@ -0,0 +1,58 @@ +[ + { + "enable": false, + "protocol": "torrent", + "priority": 1, + "removeCompletedDownloads": true, + "removeFailedDownloads": true, + "name": "", + "fields": [ + { + "order": 0, + "name": "host", + "label": "Host", + "value": "localhost", + "type": "textbox", + "advanced": false + }, + { + "order": 1, + "name": "port", + "label": "Port", + "value": 6800, + "type": "number", + "advanced": false + }, + { + "order": 2, + "name": "rpcPath", + "label": "XML RPC Path", + "value": "/rpc", + "type": "textbox", + "advanced": false + }, + { + "order": 3, + "name": "useSsl", + "label": "Use SSL", + "value": false, + "type": "checkbox", + "advanced": false + }, + { + "order": 4, + "name": "secretToken", + "label": "Secret token", + "value": "MySecretToken", + "type": "password", + "advanced": false + } + ], + "implementationName": "Aria2", + "implementation": "Aria2", + "configContract": "Aria2Settings", + "infoLink": "https://wiki.servarr.com/sonarr/supported#aria2", + "tags": [], + "presets": [] + } +] diff --git a/tests/fixtures/sonarr/import_list.json b/tests/fixtures/sonarr/import_list.json new file mode 100644 index 0000000..2eb09a5 --- /dev/null +++ b/tests/fixtures/sonarr/import_list.json @@ -0,0 +1,142 @@ +{ + "enableAutomaticAdd": false, + "shouldMonitor": "none", + "rootFolderPath": "string", + "qualityProfileId": 1, + "languageProfileId": 1, + "seriesType": "standard", + "seasonFolder": true, + "listType": "trakt", + "listOrder": 2, + "name": "TraktUserImport", + "fields": [ + { + "order": 0, + "name": "accessToken", + "label": "Access Token", + "value": "string", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "refreshToken", + "label": "Refresh Token", + "value": "string", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 2, + "name": "expires", + "label": "Expires", + "value": "2022-10-14T16:17:26.645707Z", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 3, + "name": "authUser", + "label": "Auth User", + "value": "string", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 4, + "name": "traktListType", + "label": "List Type", + "helpText": "Type of list you're seeking to import from", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "UserWatchList", + "order": 0 + }, + { + "value": 1, + "name": "UserWatchedList", + "order": 1 + }, + { + "value": 2, + "name": "UserCollectionList", + "order": 2 + } + ] + }, + { + "order": 5, + "name": "rating", + "label": "Rating", + "helpText": "Filter series by rating range (0-100)", + "value": "0-100", + "type": "textbox", + "advanced": false + }, + { + "order": 6, + "name": "username", + "label": "Username", + "helpText": "Username for the List to import from (empty to use Auth User)", + "type": "textbox", + "advanced": false + }, + { + "order": 7, + "name": "genres", + "label": "Genres", + "helpText": "Filter series by Trakt Genre Slug (Comma Separated)", + "value": "", + "type": "textbox", + "advanced": false + }, + { + "order": 8, + "name": "years", + "label": "Years", + "helpText": "Filter series by year or year range", + "value": "", + "type": "textbox", + "advanced": false + }, + { + "order": 9, + "name": "limit", + "label": "Limit", + "helpText": "Limit the number of series to get", + "value": 100, + "type": "textbox", + "advanced": false + }, + { + "order": 10, + "name": "traktAdditionalParameters", + "label": "Additional Parameters", + "helpText": "Additional Trakt API parameters", + "type": "textbox", + "advanced": true + }, + { + "order": 11, + "name": "signIn", + "label": "Authenticate with Trakt", + "value": "startOAuth", + "type": "oAuth", + "advanced": false + } + ], + "implementationName": "Trakt User", + "implementation": "TraktUserImport", + "configContract": "TraktUserSettings", + "infoLink": "string", + "tags": [], + "id": 1 +} diff --git a/tests/fixtures/sonarr/import_list_all.json b/tests/fixtures/sonarr/import_list_all.json new file mode 100644 index 0000000..859de5b --- /dev/null +++ b/tests/fixtures/sonarr/import_list_all.json @@ -0,0 +1,144 @@ +[ + { + "enableAutomaticAdd": false, + "shouldMonitor": "none", + "rootFolderPath": "string", + "qualityProfileId": 1, + "languageProfileId": 1, + "seriesType": "standard", + "seasonFolder": true, + "listType": "trakt", + "listOrder": 2, + "name": "TraktUserImport", + "fields": [ + { + "order": 0, + "name": "accessToken", + "label": "Access Token", + "value": "string", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "refreshToken", + "label": "Refresh Token", + "value": "string", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 2, + "name": "expires", + "label": "Expires", + "value": "2022-10-14T16:17:26.645707Z", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 3, + "name": "authUser", + "label": "Auth User", + "value": "string", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 4, + "name": "traktListType", + "label": "List Type", + "helpText": "Type of list you're seeking to import from", + "value": 0, + "type": "select", + "advanced": false, + "selectOptions": [ + { + "value": 0, + "name": "UserWatchList", + "order": 0 + }, + { + "value": 1, + "name": "UserWatchedList", + "order": 1 + }, + { + "value": 2, + "name": "UserCollectionList", + "order": 2 + } + ] + }, + { + "order": 5, + "name": "rating", + "label": "Rating", + "helpText": "Filter series by rating range (0-100)", + "value": "0-100", + "type": "textbox", + "advanced": false + }, + { + "order": 6, + "name": "username", + "label": "Username", + "helpText": "Username for the List to import from (empty to use Auth User)", + "type": "textbox", + "advanced": false + }, + { + "order": 7, + "name": "genres", + "label": "Genres", + "helpText": "Filter series by Trakt Genre Slug (Comma Separated)", + "value": "", + "type": "textbox", + "advanced": false + }, + { + "order": 8, + "name": "years", + "label": "Years", + "helpText": "Filter series by year or year range", + "value": "", + "type": "textbox", + "advanced": false + }, + { + "order": 9, + "name": "limit", + "label": "Limit", + "helpText": "Limit the number of series to get", + "value": 100, + "type": "textbox", + "advanced": false + }, + { + "order": 10, + "name": "traktAdditionalParameters", + "label": "Additional Parameters", + "helpText": "Additional Trakt API parameters", + "type": "textbox", + "advanced": true + }, + { + "order": 11, + "name": "signIn", + "label": "Authenticate with Trakt", + "value": "startOAuth", + "type": "oAuth", + "advanced": false + } + ], + "implementationName": "Trakt User", + "implementation": "TraktUserImport", + "configContract": "TraktUserSettings", + "infoLink": "string", + "tags": [], + "id": 1 + } +] diff --git a/tests/fixtures/sonarr/import_list_schema_all.json b/tests/fixtures/sonarr/import_list_schema_all.json new file mode 100644 index 0000000..3d7f6d7 --- /dev/null +++ b/tests/fixtures/sonarr/import_list_schema_all.json @@ -0,0 +1,37 @@ +[ + { + "enableAutomaticAdd": false, + "shouldMonitor": "unknown", + "qualityProfileId": 0, + "languageProfileId": 0, + "seriesType": "standard", + "seasonFolder": false, + "listType": "plex", + "listOrder": 1, + "name": "PlexImport", + "fields": [ + { + "order": 0, + "name": "accessToken", + "label": "Access Token", + "type": "textbox", + "advanced": false, + "hidden": "hidden" + }, + { + "order": 1, + "name": "signIn", + "label": "Authenticate with Plex.tv", + "value": "startOAuth", + "type": "oAuth", + "advanced": false + } + ], + "implementationName": "Plex Watchlist", + "implementation": "PlexImport", + "configContract": "PlexListSettings", + "infoLink": "https://wiki.servarr.com/sonarr/supported#pleximport", + "tags": [], + "presets": [] + } +] diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index f298357..aea011a 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -9,7 +9,10 @@ PyarrResourceNotFound, ) from pyarr.models.common import ( + PyarrBlocklistSortKey, + PyarrDownloadClientSchema, PyarrHistorySortKey, + PyarrImportListSchema, PyarrLogFilterKey, PyarrLogFilterValue, PyarrLogSortKey, @@ -392,6 +395,13 @@ def test_get_wanted(responses, sonarr_client): ) assert isinstance(data, dict) + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_wanted(sort_key=SonarrSortKey.TIMELEFT) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_wanted(sort_dir=PyarrSortDirection.DEFAULT) + assert False + @pytest.mark.usefixtures def test_get_quality_profile(responses, sonarr_client): @@ -911,7 +921,7 @@ def test_get_log(responses, sonarr_client): responses.add( responses.GET, - "https://127.0.0.1:8989/api/v3/log?page=10&pageSize=10&sortKey=Id&sortDirection=descending", + "https://127.0.0.1:8989/api/v3/log?page=10&pageSize=10&sortKey=Id&sortDirection=descending&filterKey=level&filterValue=all", headers={"Content-Type": "application/json"}, body=load_fixture("sonarr/log.json"), status=200, @@ -922,6 +932,8 @@ def test_get_log(responses, sonarr_client): page_size=10, sort_key=PyarrLogSortKey.ID, sort_dir=PyarrSortDirection.DESC, + filter_key=PyarrLogFilterKey.LEVEL, + filter_value=PyarrLogFilterValue.ALL, ) assert isinstance(data, dict) @@ -964,6 +976,22 @@ def test_get_history(responses, sonarr_client): data = sonarr_client.get_history(id_=1) assert isinstance(data, dict) + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/history?page=1&pageSize=10&sortKey=time&sortDirection=default", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/history.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_history( + page=1, + page_size=10, + sort_key=PyarrHistorySortKey.TIME, + sort_dir=PyarrSortDirection.DEFAULT, + ) + assert isinstance(data, dict) + with contextlib.suppress(PyarrMissingArgument): data = sonarr_client.get_history(sort_key=PyarrHistorySortKey.TIME) assert False @@ -985,6 +1013,22 @@ def test_get_blocklist(responses, sonarr_client): data = sonarr_client.get_blocklist() assert isinstance(data, dict) + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/blocklist?page=1&pageSize=10&sortKey=date&sortDirection=ascending", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/blocklist.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_blocklist( + page=1, + page_size=10, + sort_key=PyarrBlocklistSortKey.DATE, + sort_dir=PyarrSortDirection.ASC, + ) + assert isinstance(data, dict) + with contextlib.suppress(PyarrMissingArgument): data = sonarr_client.get_blocklist(sort_key=PyarrHistorySortKey.TIME) assert False @@ -1421,7 +1465,8 @@ def test_get_notification_schema(responses, sonarr_client): assert False -# TODO: update notification +# TODO: add_notification +# TODO: upd_notification @pytest.mark.usefixtures @@ -1553,3 +1598,125 @@ def test_get_download_client(responses, sonarr_client): ) data = sonarr_client.get_download_client(id_=1) assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_download_client_schema(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/downloadclient/schema", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/download_client_schema_all.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_download_client_schema() + assert isinstance(data, list) + + data = sonarr_client.get_download_client_schema( + implementation=PyarrDownloadClientSchema.ARIA2 + ) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrRecordNotFound): + data = sonarr_client.get_download_client_schema(implementation="polarbear") + assert False + + +# TODO: add_download_client +# TODO: upd_download_client + + +@pytest.mark.usefixtures +def test_del_download_client(responses, sonarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/downloadclient/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/delete.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.del_download_client(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_import_list(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/importlist", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/import_list_all.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_import_list() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/importlist/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/import_list.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_import_list(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_import_list_schema(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/importlist/schema", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/import_list_schema_all.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_import_list_schema() + assert isinstance(data, list) + + data = sonarr_client.get_import_list_schema( + implementation=PyarrImportListSchema.PLEX + ) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrRecordNotFound): + data = sonarr_client.get_import_list_schema(implementation="polarbear") + assert False + + +# TODO: add_import_list +# TODO: upd_import_list +@pytest.mark.usefixtures +def test_del_import_list(responses, sonarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8989/api/v3/importlist/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/delete.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.del_import_list(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_config_download_client(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/config/downloadclient", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/config_downloadclient.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_config_download_client() + assert isinstance(data, dict) + + +# TODO: upd_config_download_client From 9167dd8f7579269cef8aa1fcdb4685df7699ea00 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Tue, 26 Jul 2022 13:16:36 +0000 Subject: [PATCH 19/53] refactor: more tests added, fixed get_movie_file --- pyarr/base.py | 2 +- pyarr/models/radarr.py | 14 + pyarr/radarr.py | 164 +++++---- pyarr/request_handler.py | 2 +- tests/conftest.py | 6 + tests/fixtures/{sonarr => common}/delete.json | 0 tests/fixtures/radarr/movie.json | 226 +++++++++++++ tests/fixtures/radarr/movie_all.json | 228 +++++++++++++ tests/fixtures/radarr/movie_history.json | 66 ++++ tests/fixtures/radarr/movie_lookup.json | 228 +++++++++++++ tests/fixtures/radarr/movie_tmdb.json | 228 +++++++++++++ tests/fixtures/radarr/moviefile.json | 50 +++ tests/fixtures/radarr/moviefiles.json | 102 ++++++ tests/test_radarr.py | 313 ++++++++++++++++++ tests/test_sonarr.py | 28 +- 15 files changed, 1581 insertions(+), 76 deletions(-) rename tests/fixtures/{sonarr => common}/delete.json (100%) create mode 100644 tests/fixtures/radarr/movie.json create mode 100644 tests/fixtures/radarr/movie_all.json create mode 100644 tests/fixtures/radarr/movie_history.json create mode 100644 tests/fixtures/radarr/movie_lookup.json create mode 100644 tests/fixtures/radarr/movie_tmdb.json create mode 100644 tests/fixtures/radarr/moviefile.json create mode 100644 tests/fixtures/radarr/moviefiles.json diff --git a/pyarr/base.py b/pyarr/base.py index 5e60a23..8ad6cbc 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -40,7 +40,7 @@ def assert_return( path: str, ver_uri: str, typearg: type, - params: Optional[dict[str, Any]] = None, + params: Optional[Union[dict[str, Any], list[tuple[str, Any]]]] = None, ) -> Any: """Helper function to add assert to enforce typing responses diff --git a/pyarr/models/radarr.py b/pyarr/models/radarr.py index cb4de74..85f0c66 100644 --- a/pyarr/models/radarr.py +++ b/pyarr/models/radarr.py @@ -38,3 +38,17 @@ class RadarrSortKeys(str, Enum): SOURCE_TITLE = "sourcetitle" STATUS = "status" TIMELEFT = "timeleft" + + +@enum_tools.documentation.document_enum +class RadarrEventType(str, Enum): + """Radarr event types""" + + UNKNOWN = "unknown" + GRABBED = "grabbed" + DOWNLOAD_FILDER_INPORTED = "downloadFolderImported" + DOWNLOAD_FAILED = "downloadFailed" + MOVIE_FILE_DELETED = "movieFileDeleted" + MOVIE_FOLDER_IMPORTED = "movieFolderImported" + MOVIE_FILE_RENAMED = "movieFileRenamed" + DOWNLOAD_IGNORED = "downloadIgnored" diff --git a/pyarr/radarr.py b/pyarr/radarr.py index 16357d7..7e90452 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -7,7 +7,7 @@ from .const import PAGE, PAGE_SIZE from .exceptions import PyarrRecordNotFound from .models.common import PyarrSortDirection -from .models.radarr import RadarrCommands, RadarrSortKeys +from .models.radarr import RadarrCommands, RadarrEventType, RadarrSortKeys class RadarrAPI(BaseArrAPI): @@ -30,17 +30,17 @@ def __init__(self, host_url: str, api_key: str): def _movie_json( self, - db_id: Union[str, int], + id_: Union[str, int], quality_profile_id: int, root_dir: str, monitored: bool = True, search_for_movie: bool = True, - tmdb: bool = True, + tmdb: Optional[bool] = None, ) -> dict[str, Any]: """Searches for movie on tmdb and returns Movie json to add. Args: - db_id (Union[str, int]): imdb or tmdb id + id_ (Union[str, int]): imdb or tmdb id quality_profile_id (int): ID of the quality profile the movie will use root_dir (str): location of the root DIR monitored (bool, optional): should the movie be monitored. Defaults to True. @@ -53,15 +53,16 @@ def _movie_json( Returns: dict[str, Any]: Dictionary containing movie information """ - warn( - "Option tmdb is going to be deprecated and will be removed in a future release.", - DeprecationWarning, - stacklevel=2, - ) - if isinstance(db_id, int): - movie = self.lookup_movie_by_tmdb_id(db_id)[0] + if tmdb: + warn( + "Argument tmdb is no longer used and will be removed in a future release.", + DeprecationWarning, + stacklevel=2, + ) + if isinstance(id_, int): + movie = self.lookup_movie(term=f"tmdb:{id_}")[0] else: - movie = self.lookup_movie_by_imdb_id(db_id)[0] + movie = self.lookup_movie(term=f"imdb:{id_}")[0] if not movie: raise PyarrRecordNotFound("Movie Doesn't Exist") @@ -98,62 +99,78 @@ def get_movie( Returns: Union[list[dict[str, Any]], dict[str, Any]]: List or Dictionary with items """ + params = {} + if tmdb: + params["tmdbid"] = id_ + return self.assert_return( f"movie{'' if id_ is None or tmdb else f'/{id_}'}", self.ver_uri, - list if not id_ or tmdb else dict, - params=None if id_ is None else {"tmdbid": id_}, + dict if id_ and not tmdb else list, + params=params, ) # POST /movie def add_movie( self, - db_id: Union[str, int], + id_: Union[str, int], quality_profile_id: int, root_dir: str, monitored: bool = True, search_for_movie: bool = True, - tmdb: bool = True, + tmdb: Optional[bool] = None, ) -> dict[str, Any]: """Adds a movie to the database Args: - db_id (Union[str, int]): IMDB or TMDB ID + id_ (Union[str, int]): IMDB or TMDB ID quality_profile_id (int): ID of the quality profile the movie will use root_dir (str): Location of the root DIR monitored (bool, optional): Should the movie be monitored. Defaults to True. search_for_movie (bool, optional): Should we search for the movie. Defaults to True. - tmdb (bool, optional): Not in use, Deprecated. Defaults to True. + tmdb (Optional[bool], optional): Not in use, Deprecated. Defaults to None. Returns: dict[str, Any]: Dictonary with added record """ - warn( - "Option tmdb is going to be deprecated and will be removed in a future release.", - DeprecationWarning, - stacklevel=2, - ) + + if tmdb: + warn( + "Argument tmdb is no longer used and will be removed in a future release.", + DeprecationWarning, + stacklevel=2, + ) movie_json = self._movie_json( - db_id, quality_profile_id, root_dir, monitored, search_for_movie + id_, quality_profile_id, root_dir, monitored, search_for_movie ) return self._post("movie", self.ver_uri, data=movie_json) # PUT /movie def upd_movie( - self, data: dict[str, Any], move_files: bool = False + self, + data: Optional[dict[Any, Any]], + move_files: Optional[bool] = None, ) -> dict[str, Any]: """Updates a movie in the database. Args: data (dict[str, Any]): Dictionary containing an object obtained from get_movie() - move_files (bool, optional): Have radarr move files when updating. Defaults to False. + move_files (Optional[bool], optional): Have radarr move files when updating. Defaults to None. Returns: dict[str, Any]: Dictionary with updated record """ - params = {"moveFiles": move_files} - return self._put("movie", self.ver_uri, data=data, params=params) + params = {} + if move_files is not None: + params["moveFiles"] = move_files + + return self._put( + f"movie{'/editor' if isinstance(data, list) else ''}", + self.ver_uri, + data=data, + params=params, + ) # GET /movie/{id} def get_movie_by_movie_id(self, id_: int) -> dict[str, Any]: @@ -180,25 +197,28 @@ def get_movie_by_movie_id(self, id_: int) -> dict[str, Any]: def del_movie( self, id_: Union[int, list], - delete_files: bool = False, - add_exclusion: bool = False, + delete_files: Optional[bool] = None, + add_exclusion: Optional[bool] = None, ) -> Union[Response, dict[str, Any], dict[Any, Any]]: """Delete a single movie or multiple movies by database id. Args: id_ (Union[int, list]): Int with single movie Id or list with multiple IDs to delete. - delete_files (bool, optional): Delete movie files when deleting movies. Defaults to False. - add_exclusion (bool, optional): Add deleted movies to List Exclusions. Defaults to False. + delete_files (bool, optional): Delete movie files when deleting movies. Defaults to None. + add_exclusion (bool, optional): Add deleted movies to List Exclusions. Defaults to None. Returns: Response: HTTP Response """ - params: dict[str, str | list[int]] = { - "deleteFiles": str(delete_files), - "addImportExclusion": str(add_exclusion), - } + params: dict[str, Union[str, list[int], int]] = {} + if delete_files: + params["deleteFiles"] = str(delete_files) + + if add_exclusion: + params["addImportExclusion"] = str(add_exclusion) + if isinstance(id_, list): - params["moviIds"] = id_ + params["movieIds"] = id_ return self._delete( "movie/editor" if isinstance(id_, list) else f"movie/{id_}", self.ver_uri, @@ -211,7 +231,10 @@ def lookup_movie(self, term: str) -> list[dict[str, Any]]: """Search for a movie to add to the database (Uses TMDB for search results) Args: - term (str): Search term to use for lookup + term (str): Search term to use for lookup, can also do IMDB & TMDB IDs:: + + radarr.lookup_movie(term="imdb:123456") + radarr.lookup_movie(term="tmdb:123456") Returns: list[dict[str, Any]]: List of dictionaries with items @@ -229,6 +252,11 @@ def lookup_movie_by_tmdb_id(self, id_: int) -> list[dict[str, Any]]: Returns: list[dict[str, Any]]: List of dictionaries with items """ + warn( + "This method is deprecated and will be removed in a future release. use lookup_movie(term='tmdb:123456')", + DeprecationWarning, + stacklevel=2, + ) params = {"term": f"tmdb:{id_}"} return self.assert_return("movie/lookup", self.ver_uri, list, params) @@ -242,6 +270,11 @@ def lookup_movie_by_imdb_id(self, id_: str) -> list[dict[str, Any]]: Returns: list[dict[str, Any]]: List of dictionaries with items """ + warn( + "This method is deprecated and will be removed in a future release. use lookup_movie(term='imdb:123456')", + DeprecationWarning, + stacklevel=2, + ) params = {"term": f"imdb:{id_}"} return self.assert_return("movie/lookup", self.ver_uri, list, params) @@ -255,6 +288,12 @@ def upd_movies(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary containing updated record """ + + warn( + "This method is deprecated and will be removed in a future release. Please use upd_movie() with a list to update", + DeprecationWarning, + stacklevel=2, + ) return self._put("movie/editor", self.ver_uri, data=data) # DELETE /movie/editor @@ -277,6 +316,11 @@ def del_movies( Returns: Response: HTTP Response """ + warn( + "This method is deprecated and will be removed in a future release. Please use del_movie().", + DeprecationWarning, + stacklevel=2, + ) return self._delete("movie/editor", self.ver_uri, data=data) # POST /movie/import @@ -296,6 +340,7 @@ def import_movies(self, data: list[dict[str, Any]]) -> list[dict[str, Any]]: ## MOVIEFILE # GET /moviefile + # TODO: merge this with get_movie_file def get_movie_files_by_movie_id(self, id_: int) -> list[dict[str, Any]]: """Get a movie file object by Movie database ID. @@ -305,65 +350,64 @@ def get_movie_files_by_movie_id(self, id_: int) -> list[dict[str, Any]]: Returns: list[dict[str, Any]]: List of dictionaries with items """ + params = {"movieid": id_} return self.assert_return("moviefile", self.ver_uri, list, params) # GET /moviefile - def get_movie_files(self, moviefile_ids: list[int]) -> list[dict[str, Any]]: - """Get movie file information for multiple movie files - - Args: - moviefile_ids (list[int]): a list of movie file IDs - - Returns: - list[dict[str, Any]]: List of dictionaries with items - """ - params = {"moviefileids": moviefile_ids} - return self.assert_return("moviefile", self.ver_uri, list, params) - - # GET /moviefile/{id} - def get_movie_file(self, id_: int) -> list[dict[str, Any]]: + def get_movie_file(self, id_: Union[int, list]) -> list[dict[str, Any]]: """Get movie file by database ID Args: - id_ (int): Movie file ID + id_ (int, list): Movie file ID, or multiple in a list Returns: list[dict[str, Any]]: List of dictionaries with items """ - return self.assert_return(f"moviefile/{id_}", self.ver_uri, list) + if not isinstance(id_, list): + return self.assert_return( + f"moviefile/{id_}", + self.ver_uri, + dict, + ) + params = [("movieFileIds", file) for file in id_] + return self.assert_return("moviefile", self.ver_uri, list, params=params) # DELETE /moviefile/{id} def del_movie_file( - self, id_: int + self, id_: Union[int, list] ) -> Union[Response, dict[str, Any], dict[Any, Any]]: """Allows for deletion of a moviefile by its database ID. Args: - id_ (int): Movie file ID + id_ (Union[int, list]): Movie file ID Returns: Response: HTTP Response """ + + if isinstance(id_, list): + data = {"movieFileIds": id_} return self._delete( - f"moviefile/{id_}", + "moviefile/bulk" if isinstance(id_, list) else f"moviefile/{id_}", self.ver_uri, + data=data if isinstance(id_, list) else None, ) # GET /history/movie def get_movie_history( - self, id_: int, event_type: Optional[int] = None + self, id_: int, event_type: Optional[RadarrEventType] = None ) -> list[dict[str, Any]]: """Get history for a given movie in database by its database ID Args: id_ (int): Database ID of movie - event_type (int, optional): History event type to retrieve. Defaults to None. + event_type (Optional[RadarrEventType], optional): History event type to retrieve. Defaults to None. Returns: list[dict[str, Any]]: List of dictionaries with items """ - params = {"movieId": id_} + params: dict[str, Union[int, str]] = {"movieId": id_} if event_type: params["eventType"] = event_type return self.assert_return("history/movie", self.ver_uri, list, params) diff --git a/pyarr/request_handler.py b/pyarr/request_handler.py index b0f8b48..da15352 100644 --- a/pyarr/request_handler.py +++ b/pyarr/request_handler.py @@ -62,7 +62,7 @@ def _get( self, path: str, ver_uri: str = "", - params: Union[dict[int, list[int]], dict, None] = None, + params: Union[dict[str, Any], list[tuple[str, Any]], None] = None, ) -> Union[list[dict], dict[str, Any]]: """Wrapper on any get requests diff --git a/tests/conftest.py b/tests/conftest.py index 2688659..02ffd31 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,5 +1,6 @@ import pytest +from pyarr.radarr import RadarrAPI from pyarr.sonarr import SonarrAPI from tests import API_TOKEN, HOST_URL @@ -8,3 +9,8 @@ @pytest.fixture() def sonarr_client(): yield SonarrAPI(f"{HOST_URL}:8989", API_TOKEN) + + +@pytest.fixture() +def radarr_client(): + yield RadarrAPI(f"{HOST_URL}:7878", API_TOKEN) diff --git a/tests/fixtures/sonarr/delete.json b/tests/fixtures/common/delete.json similarity index 100% rename from tests/fixtures/sonarr/delete.json rename to tests/fixtures/common/delete.json diff --git a/tests/fixtures/radarr/movie.json b/tests/fixtures/radarr/movie.json new file mode 100644 index 0000000..77e51dc --- /dev/null +++ b/tests/fixtures/radarr/movie.json @@ -0,0 +1,226 @@ +{ + "title": "string", + "originalTitle": "string", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 3, + "name": "Spanish" + }, + "id": 453 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 454 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 455 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 456 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 18, + "name": "Portuguese" + }, + "id": 457 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 458 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 459 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 460 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "string", + "sizeOnDisk": 10501793191, + "status": "released", + "overview": "string", + "inCinemas": "2015-01-01T00:00:00Z", + "physicalRelease": "2015-05-27T00:00:00Z", + "digitalRelease": "2015-06-30T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "string", + "remoteUrl": "string" + }, + { + "coverType": "fanart", + "url": "string", + "remoteUrl": "string" + } + ], + "website": "string", + "year": 2014, + "hasFile": true, + "youTubeTrailerId": "string", + "studio": "string", + "path": "string", + "qualityProfileId": 1, + "monitored": false, + "minimumAvailability": "tba", + "isAvailable": true, + "folderName": "string", + "runtime": 133, + "cleanTitle": "string", + "imdbId": "tt123456", + "tmdbId": 123456, + "titleSlug": "123456", + "certification": "15", + "genres": [ + "string" + ], + "tags": [], + "added": "2018-01-13T15:45:51Z", + "ratings": { + "imdb": { + "votes": 473890, + "value": 7.3, + "type": "user" + }, + "tmdb": { + "votes": 11076, + "value": 7.4, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 72, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 72, + "type": "user" + } + }, + "movieFile": { + "movieId": 1, + "relativePath": "string", + "path": "string", + "size": 10501793191, + "dateAdded": "2018-01-13T15:54:23Z", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 9, + "name": "HDTV-1080p", + "source": "tv", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "x264", + "videoDynamicRangeType": "", + "videoFps": 23.976, + "resolution": "1920x800", + "runTime": "2:12:39", + "scanType": "Progressive", + "subtitles": "jpn/eng/fre/ger/ita/spa/dut/dan/fin/ice/nor/swe" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 12 + }, + "id": 1 +} diff --git a/tests/fixtures/radarr/movie_all.json b/tests/fixtures/radarr/movie_all.json new file mode 100644 index 0000000..6c62ab6 --- /dev/null +++ b/tests/fixtures/radarr/movie_all.json @@ -0,0 +1,228 @@ +[ + { + "title": "string", + "originalTitle": "string", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 3, + "name": "Spanish" + }, + "id": 453 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 454 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 455 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 456 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 18, + "name": "Portuguese" + }, + "id": 457 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 458 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 459 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 460 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "string", + "sizeOnDisk": 10501793191, + "status": "released", + "overview": "string", + "inCinemas": "2015-01-01T00:00:00Z", + "physicalRelease": "2015-05-27T00:00:00Z", + "digitalRelease": "2015-06-30T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "string", + "remoteUrl": "string" + }, + { + "coverType": "fanart", + "url": "string", + "remoteUrl": "string" + } + ], + "website": "string", + "year": 2014, + "hasFile": true, + "youTubeTrailerId": "string", + "studio": "string", + "path": "string", + "qualityProfileId": 1, + "monitored": false, + "minimumAvailability": "tba", + "isAvailable": true, + "folderName": "string", + "runtime": 133, + "cleanTitle": "string", + "imdbId": "tt123456", + "tmdbId": 123456, + "titleSlug": "123456", + "certification": "15", + "genres": [ + "string" + ], + "tags": [], + "added": "2018-01-13T15:45:51Z", + "ratings": { + "imdb": { + "votes": 473890, + "value": 7.3, + "type": "user" + }, + "tmdb": { + "votes": 11076, + "value": 7.4, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 72, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 72, + "type": "user" + } + }, + "movieFile": { + "movieId": 1, + "relativePath": "string", + "path": "string", + "size": 10501793191, + "dateAdded": "2018-01-13T15:54:23Z", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 9, + "name": "HDTV-1080p", + "source": "tv", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "x264", + "videoDynamicRangeType": "", + "videoFps": 23.976, + "resolution": "1920x800", + "runTime": "2:12:39", + "scanType": "Progressive", + "subtitles": "jpn/eng/fre/ger/ita/spa/dut/dan/fin/ice/nor/swe" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 12 + }, + "id": 1 + } +] diff --git a/tests/fixtures/radarr/movie_history.json b/tests/fixtures/radarr/movie_history.json new file mode 100644 index 0000000..f6742fe --- /dev/null +++ b/tests/fixtures/radarr/movie_history.json @@ -0,0 +1,66 @@ +[ + { + "movieId": 1, + "sourceTitle": "string", + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "quality": { + "quality": { + "id": 9, + "name": "HDTV-1080p", + "source": "tv", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormats": [], + "qualityCutoffNotMet": false, + "date": "2018-01-13T15:54:23Z", + "eventType": "movieFileDeleted", + "data": { + "reason": "MissingFromDisk" + }, + "id": 2 + }, + { + "movieId": 1, + "sourceTitle": "string", + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "quality": { + "quality": { + "id": 9, + "name": "HDTV-1080p", + "source": "tv", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormats": [], + "qualityCutoffNotMet": false, + "date": "2018-01-13T15:46:28Z", + "eventType": "movieFileDeleted", + "data": { + "reason": "MissingFromDisk" + }, + "id": 1 + } +] diff --git a/tests/fixtures/radarr/movie_lookup.json b/tests/fixtures/radarr/movie_lookup.json new file mode 100644 index 0000000..6c62ab6 --- /dev/null +++ b/tests/fixtures/radarr/movie_lookup.json @@ -0,0 +1,228 @@ +[ + { + "title": "string", + "originalTitle": "string", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 3, + "name": "Spanish" + }, + "id": 453 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 454 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 455 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 456 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 18, + "name": "Portuguese" + }, + "id": 457 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 458 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 459 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 460 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "string", + "sizeOnDisk": 10501793191, + "status": "released", + "overview": "string", + "inCinemas": "2015-01-01T00:00:00Z", + "physicalRelease": "2015-05-27T00:00:00Z", + "digitalRelease": "2015-06-30T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "string", + "remoteUrl": "string" + }, + { + "coverType": "fanart", + "url": "string", + "remoteUrl": "string" + } + ], + "website": "string", + "year": 2014, + "hasFile": true, + "youTubeTrailerId": "string", + "studio": "string", + "path": "string", + "qualityProfileId": 1, + "monitored": false, + "minimumAvailability": "tba", + "isAvailable": true, + "folderName": "string", + "runtime": 133, + "cleanTitle": "string", + "imdbId": "tt123456", + "tmdbId": 123456, + "titleSlug": "123456", + "certification": "15", + "genres": [ + "string" + ], + "tags": [], + "added": "2018-01-13T15:45:51Z", + "ratings": { + "imdb": { + "votes": 473890, + "value": 7.3, + "type": "user" + }, + "tmdb": { + "votes": 11076, + "value": 7.4, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 72, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 72, + "type": "user" + } + }, + "movieFile": { + "movieId": 1, + "relativePath": "string", + "path": "string", + "size": 10501793191, + "dateAdded": "2018-01-13T15:54:23Z", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 9, + "name": "HDTV-1080p", + "source": "tv", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "x264", + "videoDynamicRangeType": "", + "videoFps": 23.976, + "resolution": "1920x800", + "runTime": "2:12:39", + "scanType": "Progressive", + "subtitles": "jpn/eng/fre/ger/ita/spa/dut/dan/fin/ice/nor/swe" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 12 + }, + "id": 1 + } +] diff --git a/tests/fixtures/radarr/movie_tmdb.json b/tests/fixtures/radarr/movie_tmdb.json new file mode 100644 index 0000000..6c62ab6 --- /dev/null +++ b/tests/fixtures/radarr/movie_tmdb.json @@ -0,0 +1,228 @@ +[ + { + "title": "string", + "originalTitle": "string", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 3, + "name": "Spanish" + }, + "id": 453 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 454 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 455 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 456 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 18, + "name": "Portuguese" + }, + "id": 457 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 458 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 459 + }, + { + "sourceType": "tmdb", + "movieId": 1, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + }, + "id": 460 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "string", + "sizeOnDisk": 10501793191, + "status": "released", + "overview": "string", + "inCinemas": "2015-01-01T00:00:00Z", + "physicalRelease": "2015-05-27T00:00:00Z", + "digitalRelease": "2015-06-30T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "string", + "remoteUrl": "string" + }, + { + "coverType": "fanart", + "url": "string", + "remoteUrl": "string" + } + ], + "website": "string", + "year": 2014, + "hasFile": true, + "youTubeTrailerId": "string", + "studio": "string", + "path": "string", + "qualityProfileId": 1, + "monitored": false, + "minimumAvailability": "tba", + "isAvailable": true, + "folderName": "string", + "runtime": 133, + "cleanTitle": "string", + "imdbId": "tt123456", + "tmdbId": 123456, + "titleSlug": "123456", + "certification": "15", + "genres": [ + "string" + ], + "tags": [], + "added": "2018-01-13T15:45:51Z", + "ratings": { + "imdb": { + "votes": 473890, + "value": 7.3, + "type": "user" + }, + "tmdb": { + "votes": 11076, + "value": 7.4, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 72, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 72, + "type": "user" + } + }, + "movieFile": { + "movieId": 1, + "relativePath": "string", + "path": "string", + "size": 10501793191, + "dateAdded": "2018-01-13T15:54:23Z", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 9, + "name": "HDTV-1080p", + "source": "tv", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "x264", + "videoDynamicRangeType": "", + "videoFps": 23.976, + "resolution": "1920x800", + "runTime": "2:12:39", + "scanType": "Progressive", + "subtitles": "jpn/eng/fre/ger/ita/spa/dut/dan/fin/ice/nor/swe" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 12 + }, + "id": 1 + } +] diff --git a/tests/fixtures/radarr/moviefile.json b/tests/fixtures/radarr/moviefile.json new file mode 100644 index 0000000..d21a20c --- /dev/null +++ b/tests/fixtures/radarr/moviefile.json @@ -0,0 +1,50 @@ +{ + "movieId": 17, + "relativePath": "string", + "path": "string", + "size": 5536497109, + "dateAdded": "2018-01-21T02:11:37Z", + "sceneName": "string", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormats": [], + "mediaInfo": { + "audioBitrate": 384000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "x264", + "videoDynamicRangeType": "", + "videoFps": 23.976, + "resolution": "1920x800", + "runTime": "2:10:44", + "scanType": "Progressive", + "subtitles": "eng" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "string", + "edition": "", + "id": 102 +} diff --git a/tests/fixtures/radarr/moviefiles.json b/tests/fixtures/radarr/moviefiles.json new file mode 100644 index 0000000..9880fa2 --- /dev/null +++ b/tests/fixtures/radarr/moviefiles.json @@ -0,0 +1,102 @@ +[ + { + "movieId": 17, + "relativePath": "string", + "path": "string", + "size": 5536497109, + "dateAdded": "2018-01-21T02:11:37Z", + "sceneName": "string", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormats": [], + "mediaInfo": { + "audioBitrate": 384000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "x264", + "videoDynamicRangeType": "", + "videoFps": 23.976, + "resolution": "1920x800", + "runTime": "2:10:44", + "scanType": "Progressive", + "subtitles": "eng" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "string", + "edition": "", + "id": 1 + }, + { + "movieId": 17, + "relativePath": "string", + "path": "string", + "size": 5536497109, + "dateAdded": "2018-01-21T02:11:37Z", + "sceneName": "string", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormats": [], + "mediaInfo": { + "audioBitrate": 384000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "x264", + "videoDynamicRangeType": "", + "videoFps": 23.976, + "resolution": "1920x800", + "runTime": "2:10:44", + "scanType": "Progressive", + "subtitles": "eng" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "string", + "edition": "", + "id": 2 + } +] diff --git a/tests/test_radarr.py b/tests/test_radarr.py index e69de29..a88810e 100644 --- a/tests/test_radarr.py +++ b/tests/test_radarr.py @@ -0,0 +1,313 @@ +import contextlib +from copyreg import add_extension + +import pytest + +from pyarr.exceptions import PyarrResourceNotFound +from pyarr.models.radarr import RadarrEventType + +from tests import load_fixture +from tests.conftest import radarr_client + + +@pytest.mark.usefixtures +def test__movie_json(responses, radarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie/lookup?term=tmdb%3A123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_lookup.json"), + status=200, + match_querystring=True, + ) + + data = radarr_client._movie_json( + id_=123456, + quality_profile_id=1, + root_dir="/", + monitored=False, + search_for_movie=False, + ) + + assert isinstance(data, dict) + assert data["title"] == "string" + assert data["rootFolderPath"] == "/" + assert data["qualityProfileId"] == 1 + assert data["year"] == 2014 + assert data["tmdbId"] == 123456 + assert isinstance(data["images"], list) + assert data["titleSlug"] == "123456" + assert data["monitored"] == False + assert data["addOptions"]["searchForMovie"] == False + + +@pytest.mark.usefixtures +def test_get_movie(responses, radarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_all.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_movie() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_movie(id_=1) + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie?tmdbid=123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_tmdb.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_movie(id_=123456, tmdb=True) + assert isinstance(data, list) + + +# TODO: add_movie +# TODO: upd_movie + + +@pytest.mark.usefixtures +def test_get_movie_by_movie_id(responses, radarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_movie_by_movie_id(1) + + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie/999", + headers={"Content-Type": "application/json"}, + status=404, + match_querystring=True, + ) + with contextlib.suppress(PyarrResourceNotFound): + data = radarr_client.get_movie_by_movie_id(999) + assert False + + +# TODO: del_movie +@pytest.mark.usefixtures +def test_del_movie(responses, radarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:7878/api/v3/movie/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.del_movie(1) + assert isinstance(data, dict) + + responses.add( + responses.DELETE, + "https://127.0.0.1:7878/api/v3/movie/1?deleteFiles=True&addImportExclusion=True", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.del_movie(id_=1, delete_files=True, add_exclusion=True) + assert isinstance(data, dict) + + responses.add( + responses.DELETE, + "https://127.0.0.1:7878/api/v3/movie/999", + headers={"Content-Type": "application/json"}, + status=404, + ) + with contextlib.suppress(PyarrResourceNotFound): + data = radarr_client.del_movie(999) + assert False + + responses.add( + responses.DELETE, + "https://127.0.0.1:7878/api/v3/movie/editor", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + ) + data = radarr_client.del_movie(id_=[1, 2, 3]) + assert isinstance(data, dict) + + responses.add( + responses.DELETE, + "https://127.0.0.1:7878/api/v3/movie/editor", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + ) + data = radarr_client.del_movie(id_=[1, 2, 3], delete_files=True, add_exclusion=True) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_lookup_movie(responses, radarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie/lookup?term=imdb:123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_lookup.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.lookup_movie(term="imdb:123456") + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie/lookup?term=tmdb:123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_lookup.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.lookup_movie(term="tmdb:123456") + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie/lookup?term=Movie", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_lookup.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.lookup_movie(term="Movie") + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_lookup_movie_by_tmdb_id(responses, radarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie/lookup?term=tmdb:123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_lookup.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.lookup_movie_by_tmdb_id(id_=123456) + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_lookup_movie_by_imdb_id(responses, radarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie/lookup?term=imdb:123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_lookup.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.lookup_movie_by_imdb_id(id_="123456") + assert isinstance(data, list) + + +# TODO: upd_movies +@pytest.mark.usefixtures +def test_get_movie_file(responses, radarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/moviefile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/moviefile.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_movie_file(id_=1) + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/moviefile?movieFileIds=1&movieFileIds=2&movieFileIds=3&movieFileIds=4", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/moviefiles.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_movie_file(id_=[1, 2, 3, 4]) + assert isinstance(data, list) + + +# TODO: del_movie +@pytest.mark.usefixtures +def test_del_movie_file(responses, radarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:7878/api/v3/moviefile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.del_movie_file(id_=1) + assert isinstance(data, dict) + + responses.add( + responses.DELETE, + "https://127.0.0.1:7878/api/v3/moviefile/999", + headers={"Content-Type": "application/json"}, + status=404, + ) + with contextlib.suppress(PyarrResourceNotFound): + data = radarr_client.del_movie_file(id_=999) + assert False + + responses.add( + responses.DELETE, + "https://127.0.0.1:7878/api/v3/moviefile/bulk", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + ) + data = radarr_client.del_movie_file(id_=[1, 2, 3]) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_movie_history(responses, radarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/history/movie?movieId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_history.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_movie_history(id_=1) + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/history/movie?movieId=1&eventType=unknown", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_history.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_movie_history(id_=1, event_type=RadarrEventType.UNKNOWN) + assert isinstance(data, list) diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index aea011a..9dd50f1 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -320,7 +320,7 @@ def test_del_episode_file(responses, sonarr_client): responses.DELETE, "https://127.0.0.1:8989/api/v3/episodefile/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/delete.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) @@ -669,7 +669,7 @@ def test_del_series(responses, sonarr_client): responses.DELETE, "https://127.0.0.1:8989/api/v3/series/1?deleteFiles=False", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/delete.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) @@ -681,7 +681,7 @@ def test_del_series(responses, sonarr_client): responses.DELETE, "https://127.0.0.1:8989/api/v3/series/1?deleteFiles=True", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/delete.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) @@ -860,7 +860,7 @@ def test_del_root_folder(responses, sonarr_client): responses.DELETE, "https://127.0.0.1:8989/api/v3/rootfolder/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/delete.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) @@ -1043,7 +1043,7 @@ def test_del_blocklist(responses, sonarr_client): responses.DELETE, "https://127.0.0.1:8989/api/v3/blocklist/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/delete.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) @@ -1068,7 +1068,7 @@ def test_del_blocklist_bulk(responses, sonarr_client): responses.DELETE, "https://127.0.0.1:8989/api/v3/blocklist/bulk", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/delete.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) @@ -1131,7 +1131,7 @@ def test_del_quality_profile(responses, sonarr_client): responses.DELETE, "https://127.0.0.1:8989/api/v3/qualityprofile/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/delete.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) @@ -1243,7 +1243,7 @@ def test_del_indexer(responses, sonarr_client): responses.DELETE, "https://127.0.0.1:8989/api/v3/indexer/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/delete.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) @@ -1257,7 +1257,7 @@ def test_del_queue(responses, sonarr_client): responses.DELETE, "https://127.0.0.1:8989/api/v3/queue/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/delete.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) @@ -1267,7 +1267,7 @@ def test_del_queue(responses, sonarr_client): responses.DELETE, "https://127.0.0.1:8989/api/v3/queue/1?removeFromClient=True&blacklist=True", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/delete.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) @@ -1475,7 +1475,7 @@ def test_del_notification(responses, sonarr_client): responses.DELETE, "https://127.0.0.1:8989/api/v3/notification/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/delete.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) @@ -1567,7 +1567,7 @@ def test_del_tag(responses, sonarr_client): responses.DELETE, "https://127.0.0.1:8989/api/v3/tag/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/delete.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) @@ -1633,7 +1633,7 @@ def test_del_download_client(responses, sonarr_client): responses.DELETE, "https://127.0.0.1:8989/api/v3/downloadclient/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/delete.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) @@ -1697,7 +1697,7 @@ def test_del_import_list(responses, sonarr_client): responses.DELETE, "https://127.0.0.1:8989/api/v3/importlist/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/delete.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) From b4851b72b96c192f074ede23dd602db216fa2547 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Tue, 26 Jul 2022 15:25:08 +0000 Subject: [PATCH 20/53] test: added more tests, updated queue methods --- pyarr/radarr.py | 107 ++++++++++++--------- tests/fixtures/radarr/movie_blocklist.json | 92 ++++++++++++++++++ tests/fixtures/radarr/queue.json | 48 +++++++++ tests/fixtures/radarr/queue_details.json | 41 ++++++++ tests/fixtures/radarr/queue_status.json | 9 ++ tests/test_radarr.py | 96 +++++++++++++++++- 6 files changed, 343 insertions(+), 50 deletions(-) create mode 100644 tests/fixtures/radarr/movie_blocklist.json create mode 100644 tests/fixtures/radarr/queue.json create mode 100644 tests/fixtures/radarr/queue_details.json create mode 100644 tests/fixtures/radarr/queue_status.json diff --git a/pyarr/radarr.py b/pyarr/radarr.py index 7e90452..ea62a27 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -4,8 +4,7 @@ from requests import Response from .base import BaseArrAPI -from .const import PAGE, PAGE_SIZE -from .exceptions import PyarrRecordNotFound +from .exceptions import PyarrMissingArgument, PyarrRecordNotFound from .models.common import PyarrSortDirection from .models.radarr import RadarrCommands, RadarrEventType, RadarrSortKeys @@ -415,7 +414,7 @@ def get_movie_history( ## BLACKLIST # GET /blacklist/movie - def get_blacklist_by_movie_id( + def get_blocklist_by_movie_id( self, id_: int, ) -> list[dict[str, Any]]: @@ -428,40 +427,79 @@ def get_blacklist_by_movie_id( list[dict[str, Any]]: List of dictionaries with items """ params = {"movieId": id_} - return self.assert_return("blacklist/movie", self.ver_uri, list, params) + return self.assert_return("blocklist/movie", self.ver_uri, list, params) ## QUEUE # GET /queue def get_queue( self, - page: int = PAGE, - page_size: int = PAGE_SIZE, - sort_direction: PyarrSortDirection = PyarrSortDirection.ASC, - sort_key: RadarrSortKeys = RadarrSortKeys.TIMELEFT, - include_unknown_movie_items: bool = True, + page: Optional[int] = None, + page_size: Optional[int] = None, + sort_dir: Optional[PyarrSortDirection] = None, + sort_key: Optional[RadarrSortKeys] = None, + include_unknown_movie_items: Optional[bool] = None, ) -> dict[str, Any]: """Return a list of items in the queue Args: - page (int, optional): Page to be returned. Defaults to PAGE. - page_size (int, optional): Number of results per page. Defaults to PAGE_SIZE. - sort_direction (PyarrSortDirection, optional): Direction to sort. Defaults to PyarrSortDirection.ASC. - sort_key (RadarrSortKeys, optional): Field to sort. Defaults to RadarrSortKeys.TIME. - include_unknown_movie_items (bool, optional): Include unknown movie items. Defaults to True. + page (Optional[int], optional): Page to be returned. Defaults to None. + page_size (Optional[int], optional): Number of results per page. Defaults to None. + sort_direction (Optional[PyarrSortDirection], optional): Direction to sort. Defaults to None. + sort_key (Optional[RadarrSortKeys], optional): Field to sort. Defaults to None. + include_unknown_movie_items (Optional[bool], optional): Include unknown movie items. Defaults to None. Returns: dict[str, Any]: List of dictionaries with items """ - params = { - "page": page, - "pageSize": page_size, - "sortDirection": sort_direction, - "sortKey": sort_key, - "includeUnknownMovieItems": include_unknown_movie_items, - } + params: dict[str, Union[int, PyarrSortDirection, RadarrSortKeys, bool]] = {} + + if page: + params["page"] = page + if page_size: + params["pageSize"] = page_size + if sort_key and sort_dir: + params["sortKey"] = sort_key + params["sortDirection"] = sort_dir + elif sort_key or sort_dir: + raise PyarrMissingArgument("sort_key and sort_dir must be used together") + if include_unknown_movie_items is not None: + params["includeUnknownMovieItems"] = include_unknown_movie_items + return self.assert_return("queue", self.ver_uri, dict, params) + # GET /queue/details + def get_queue_details( + self, + id_: Optional[int] = None, + include_movie: Optional[bool] = None, + ) -> list[dict[str, Any]]: + """Get details of all items in queue + + Args: + id_ (Optional[int], optional): select specific item by id. Defaults to None + include_movie (Optional[bool], optional): Include movie object if linked. Defaults to None. + + Returns: + list[dict[str, Any]]: List of dictionaries with items + """ + params = {} + if id_: + params["movieId"] = id_ + if include_movie is not None: + params["includeMovie"] = include_movie + + return self.assert_return("queue/details", self.ver_uri, list, params) + + # GET /queue/status + def get_queue_status(self) -> dict[str, Any]: + """Queue item status + + Returns: + list[dict[str, Any]]: List of dictionaries with items + """ + return self.assert_return("queue/status", self.ver_uri, dict) + # DELETE /queue/bulk def del_queue_bulk( self, @@ -489,33 +527,6 @@ def del_queue_bulk( params = {"removeFromClient": remove_from_client, "blacklist": blacklist} return self._delete("queue/bulk", self.ver_uri, params=params, data=data) - # GET /queue/details - def get_queue_details( - self, - include_movie: bool = True, - ) -> list[dict[str, Any]]: - """Get details of all items in queue - - Args: - include_movie (bool, optional): Include movie object if linked. Defaults to True. - - Returns: - list[dict[str, Any]]: List of dictionaries with items - """ - params = { - "includeMovie": include_movie, - } - return self.assert_return("queue/details", self.ver_uri, list, params) - - # GET /queue/status - def get_queue_status(self) -> list[dict[str, Any]]: - """Queue item status - - Returns: - list[dict[str, Any]]: List of dictionaries with items - """ - return self.assert_return("queue/status", self.ver_uri, list) - # POST /queue/grab/{id} def force_grab_queue_item(self, id_: int) -> dict[str, Any]: """Perform a Radarr "force grab" on a pending queue item by its ID. diff --git a/tests/fixtures/radarr/movie_blocklist.json b/tests/fixtures/radarr/movie_blocklist.json new file mode 100644 index 0000000..c7cc23a --- /dev/null +++ b/tests/fixtures/radarr/movie_blocklist.json @@ -0,0 +1,92 @@ +[ + { + "movieId": 176, + "sourceTitle": "string", + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormats": [], + "date": "2019-04-25T10: 45: 21Z", + "protocol": "torrent", + "indexer": "Jackett", + "message": "Manually marked as failed", + "id": 3 + }, + { + "movieId": 176, + "sourceTitle": "string", + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormats": [], + "date": "2019-04-25T10: 45: 54Z", + "protocol": "torrent", + "indexer": "Jackett", + "message": "Manually marked as failed", + "id": 4 + }, + { + "movieId": 176, + "sourceTitle": "string", + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormats": [], + "date": "2019-04-25T10: 45: 55Z", + "protocol": "torrent", + "indexer": "Jackett", + "message": "Manually marked as failed", + "id": 5 + } +] diff --git a/tests/fixtures/radarr/queue.json b/tests/fixtures/radarr/queue.json new file mode 100644 index 0000000..c4022d6 --- /dev/null +++ b/tests/fixtures/radarr/queue.json @@ -0,0 +1,48 @@ +{ + "page": 1, + "pageSize": 10, + "sortKey": "timeleft", + "sortDirection": "ascending", + "totalRecords": 1, + "records": [ + { + "movieId": 311, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormats": [], + "size": 6202395598, + "title": "Goodfellas 1990 25th Anniversary REMASTERED BRRip x264 1080p-NPW", + "sizeleft": 6193674427, + "timeleft": "01:33:22", + "estimatedCompletionTime": "2022-07-26T10:34:55Z", + "status": "downloading", + "trackedDownloadStatus": "ok", + "trackedDownloadState": "downloading", + "statusMessages": [], + "downloadId": "202B87F7190B45F86487C7A28A49EA5A5EB939A5", + "protocol": "torrent", + "downloadClient": "deluge", + "indexer": "Jackett", + "outputPath": "/downloads/Goodfellas 1990 25th Anniversary REMASTERED BRRip x264 1080p-NPW", + "id": 1340002663 + } + ] +} diff --git a/tests/fixtures/radarr/queue_details.json b/tests/fixtures/radarr/queue_details.json new file mode 100644 index 0000000..363626a --- /dev/null +++ b/tests/fixtures/radarr/queue_details.json @@ -0,0 +1,41 @@ +[ + { + "movieId": 311, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormats": [], + "size": 6202395598, + "title": "Goodfellas 1990 25th Anniversary REMASTERED BRRip x264 1080p-NPW", + "sizeleft": 6193674427, + "timeleft": "01:33:22", + "estimatedCompletionTime": "2022-07-26T10:34:55Z", + "status": "downloading", + "trackedDownloadStatus": "ok", + "trackedDownloadState": "downloading", + "statusMessages": [], + "downloadId": "202B87F7190B45F86487C7A28A49EA5A5EB939A5", + "protocol": "torrent", + "downloadClient": "deluge", + "indexer": "Jackett", + "outputPath": "/downloads/Goodfellas 1990 25th Anniversary REMASTERED BRRip x264 1080p-NPW", + "id": 1340002663 + } +] diff --git a/tests/fixtures/radarr/queue_status.json b/tests/fixtures/radarr/queue_status.json new file mode 100644 index 0000000..ce269da --- /dev/null +++ b/tests/fixtures/radarr/queue_status.json @@ -0,0 +1,9 @@ +{ + "totalCount": 1, + "count": 1, + "unknownCount": 0, + "errors": false, + "warnings": false, + "unknownErrors": false, + "unknownWarnings": false +} diff --git a/tests/test_radarr.py b/tests/test_radarr.py index a88810e..901e06a 100644 --- a/tests/test_radarr.py +++ b/tests/test_radarr.py @@ -3,8 +3,9 @@ import pytest -from pyarr.exceptions import PyarrResourceNotFound -from pyarr.models.radarr import RadarrEventType +from pyarr.exceptions import PyarrMissingArgument, PyarrResourceNotFound +from pyarr.models.common import PyarrSortDirection +from pyarr.models.radarr import RadarrEventType, RadarrSortKeys from tests import load_fixture from tests.conftest import radarr_client @@ -311,3 +312,94 @@ def test_get_movie_history(responses, radarr_client): ) data = radarr_client.get_movie_history(id_=1, event_type=RadarrEventType.UNKNOWN) assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_get_blocklist_by_movie_id(responses, radarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/blocklist/movie?movieId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_blocklist.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_blocklist_by_movie_id(id_=1) + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_get_queue(responses, radarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/queue", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/queue.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_queue() + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/queue?page=1&pageSize=20&sortKey=timeleft&sortDirection=default&includeUnknownMovieItems=False", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/queue.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_queue( + page=1, + page_size=20, + sort_key=RadarrSortKeys.TIMELEFT, + sort_dir=PyarrSortDirection.DEFAULT, + include_unknown_movie_items=False, + ) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = radarr_client.get_queue(sort_key=RadarrSortKeys.TIMELEFT) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = radarr_client.get_queue(sort_dir=PyarrSortDirection.DEFAULT) + assert False + + +@pytest.mark.usefixtures +def test_get_queue_details(responses, radarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/queue/details", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/queue_details.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_queue_details() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/queue/details?movieId=1&includeMovie=True", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/queue_details.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_queue_details(id_=1, include_movie=True) + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_get_queue_details(responses, radarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/queue/status", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/queue_status.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_queue_status() + assert isinstance(data, dict) From b6ed956c039859df217437322b683e526a966d8b Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Tue, 26 Jul 2022 15:46:13 +0000 Subject: [PATCH 21/53] test: Added more tests --- pyarr/radarr.py | 22 +- tests/fixtures/radarr/indexer.json | 406 ++++++++++++++++++++++++ tests/fixtures/radarr/indexer_all.json | 408 +++++++++++++++++++++++++ tests/test_radarr.py | 43 +++ 4 files changed, 865 insertions(+), 14 deletions(-) create mode 100644 tests/fixtures/radarr/indexer.json create mode 100644 tests/fixtures/radarr/indexer_all.json diff --git a/pyarr/radarr.py b/pyarr/radarr.py index ea62a27..c72ee27 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -503,28 +503,22 @@ def get_queue_status(self) -> dict[str, Any]: # DELETE /queue/bulk def del_queue_bulk( self, - data: dict[str, Any], - remove_from_client: bool = True, - blacklist: bool = True, + id_: list[int], + remove_from_client: Optional[bool] = None, + blocklist: Optional[bool] = None, ) -> Union[Response, dict[str, Any], dict[Any, Any]]: """Remove multiple items from queue by their IDs Args: - data (dict[str, Any]): Dictionary of IDs to be removed:: - - { - "ids": [ - 0 - ] - } - + id_ (list[int]): Dictionary of IDs to be removed:: remove_from_client (bool, optional): Remove the items from the client. Defaults to True. - blacklist (bool, optional): Add the items to the blacklist. Defaults to True. + blocklist (bool, optional): Add the items to the blocklist. Defaults to True. Returns: Response: HTTP Response """ - params = {"removeFromClient": remove_from_client, "blacklist": blacklist} + data = {"ids": id_} + params = {"removeFromClient": remove_from_client, "blocklist": blocklist} return self._delete("queue/bulk", self.ver_uri, params=params, data=data) # POST /queue/grab/{id} @@ -552,7 +546,7 @@ def get_indexer(self, id_: Optional[int] = None) -> list[dict[str, Any]]: list[dict[str, Any]]: List of dictionaries with items """ path = f"indexer/{id_}" if id_ else "indexer" - return self.assert_return(path, self.ver_uri, list) + return self.assert_return(path, self.ver_uri, dict if id_ else list) # PUT /indexer/{id} def upd_indexer(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: diff --git a/tests/fixtures/radarr/indexer.json b/tests/fixtures/radarr/indexer.json new file mode 100644 index 0000000..a6e4f55 --- /dev/null +++ b/tests/fixtures/radarr/indexer.json @@ -0,0 +1,406 @@ +{ + "enableRss": true, + "enableAutomaticSearch": true, + "enableInteractiveSearch": true, + "supportsRss": true, + "supportsSearch": true, + "protocol": "torrent", + "priority": 25, + "downloadClientId": 0, + "name": "string", + "fields": [ + { + "order": 0, + "name": "baseUrl", + "label": "URL", + "value": "string", + "type": "textbox", + "advanced": false + }, + { + "order": 1, + "name": "apiPath", + "label": "API Path", + "helpText": "Path to the api, usually /api", + "value": "/api", + "type": "textbox", + "advanced": true + }, + { + "order": 2, + "name": "multiLanguages", + "label": "Multi Languages", + "helpText": "What languages are normally in a multi release on this indexer?", + "value": [], + "type": "select", + "advanced": true, + "selectOptions": [ + { + "value": -2, + "name": "Original", + "order": 0, + "dividerAfter": true + }, + { + "value": 31, + "name": "Arabic", + "order": 0, + "dividerAfter": false + }, + { + "value": 34, + "name": "Bengali", + "order": 0, + "dividerAfter": false + }, + { + "value": 29, + "name": "Bulgarian", + "order": 0, + "dividerAfter": false + }, + { + "value": 10, + "name": "Chinese", + "order": 0, + "dividerAfter": false + }, + { + "value": 25, + "name": "Czech", + "order": 0, + "dividerAfter": false + }, + { + "value": 6, + "name": "Danish", + "order": 0, + "dividerAfter": false + }, + { + "value": 7, + "name": "Dutch", + "order": 0, + "dividerAfter": false + }, + { + "value": 1, + "name": "English", + "order": 0, + "dividerAfter": false + }, + { + "value": 16, + "name": "Finnish", + "order": 0, + "dividerAfter": false + }, + { + "value": 19, + "name": "Flemish", + "order": 0, + "dividerAfter": false + }, + { + "value": 2, + "name": "French", + "order": 0, + "dividerAfter": false + }, + { + "value": 4, + "name": "German", + "order": 0, + "dividerAfter": false + }, + { + "value": 20, + "name": "Greek", + "order": 0, + "dividerAfter": false + }, + { + "value": 23, + "name": "Hebrew", + "order": 0, + "dividerAfter": false + }, + { + "value": 26, + "name": "Hindi", + "order": 0, + "dividerAfter": false + }, + { + "value": 22, + "name": "Hungarian", + "order": 0, + "dividerAfter": false + }, + { + "value": 9, + "name": "Icelandic", + "order": 0, + "dividerAfter": false + }, + { + "value": 5, + "name": "Italian", + "order": 0, + "dividerAfter": false + }, + { + "value": 8, + "name": "Japanese", + "order": 0, + "dividerAfter": false + }, + { + "value": 21, + "name": "Korean", + "order": 0, + "dividerAfter": false + }, + { + "value": 24, + "name": "Lithuanian", + "order": 0, + "dividerAfter": false + }, + { + "value": 15, + "name": "Norwegian", + "order": 0, + "dividerAfter": false + }, + { + "value": 33, + "name": "Persian", + "order": 0, + "dividerAfter": false + }, + { + "value": 12, + "name": "Polish", + "order": 0, + "dividerAfter": false + }, + { + "value": 18, + "name": "Portuguese", + "order": 0, + "dividerAfter": false + }, + { + "value": 30, + "name": "Portuguese (Brazil)", + "order": 0, + "dividerAfter": false + }, + { + "value": 27, + "name": "Romanian", + "order": 0, + "dividerAfter": false + }, + { + "value": 11, + "name": "Russian", + "order": 0, + "dividerAfter": false + }, + { + "value": 3, + "name": "Spanish", + "order": 0, + "dividerAfter": false + }, + { + "value": 14, + "name": "Swedish", + "order": 0, + "dividerAfter": false + }, + { + "value": 28, + "name": "Thai", + "order": 0, + "dividerAfter": false + }, + { + "value": 17, + "name": "Turkish", + "order": 0, + "dividerAfter": false + }, + { + "value": 32, + "name": "Ukrainian", + "order": 0, + "dividerAfter": false + }, + { + "value": 13, + "name": "Vietnamese", + "order": 0, + "dividerAfter": false + } + ] + }, + { + "order": 3, + "name": "apiKey", + "label": "API Key", + "value": "string", + "type": "textbox", + "advanced": false + }, + { + "order": 4, + "name": "categories", + "label": "Categories", + "helpText": "Drop down list; at least one category must be selected.", + "value": [ + 2000, + 2010, + 2020, + 2030, + 2035, + 2040, + 2045, + 2050, + 2060 + ], + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "newznabCategories" + }, + { + "order": 5, + "name": "additionalParameters", + "label": "Additional Parameters", + "helpText": "Additional Newznab parameters", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "removeYear", + "label": "Remove year from search string", + "helpText": "Should Radarr remove the year after the title when searching this indexer?", + "value": false, + "type": "checkbox", + "advanced": true + }, + { + "order": 7, + "name": "minimumSeeders", + "label": "Minimum Seeders", + "helpText": "Minimum number of seeders required.", + "value": 1, + "type": "number", + "advanced": true + }, + { + "order": 8, + "name": "seedCriteria.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is download client's default", + "type": "textbox", + "advanced": true + }, + { + "order": 9, + "name": "seedCriteria.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is download client's default", + "type": "number", + "advanced": true + }, + { + "order": 10, + "name": "requiredFlags", + "label": "Required Flags", + "helpText": "What indexer flags are required?", + "helpLink": "https://wiki.servarr.com/radarr/settings#indexer-flags", + "value": [], + "type": "tagSelect", + "advanced": true, + "selectOptions": [ + { + "value": 1, + "name": "G Freeleech", + "order": 1, + "dividerAfter": false + }, + { + "value": 2, + "name": "G Halfleech", + "order": 2, + "dividerAfter": false + }, + { + "value": 4, + "name": "G DoubleUpload", + "order": 4, + "dividerAfter": false + }, + { + "value": 8, + "name": "PTP Golden", + "order": 8, + "dividerAfter": false + }, + { + "value": 16, + "name": "PTP Approved", + "order": 16, + "dividerAfter": false + }, + { + "value": 32, + "name": "HDB Internal", + "order": 32, + "dividerAfter": false + }, + { + "value": 64, + "name": "AHD Internal", + "order": 64, + "dividerAfter": false + }, + { + "value": 128, + "name": "G Scene", + "order": 128, + "dividerAfter": false + }, + { + "value": 256, + "name": "G Freeleech75", + "order": 256, + "dividerAfter": false + }, + { + "value": 512, + "name": "G Freeleech25", + "order": 512, + "dividerAfter": false + }, + { + "value": 1024, + "name": "AHD UserRelease", + "order": 1024, + "dividerAfter": false + } + ] + } + ], + "implementationName": "Torznab", + "implementation": "Torznab", + "configContract": "TorznabSettings", + "infoLink": "https://wiki.servarr.com/radarr/supported#torznab", + "tags": [], + "id": 2 +} diff --git a/tests/fixtures/radarr/indexer_all.json b/tests/fixtures/radarr/indexer_all.json new file mode 100644 index 0000000..a4d2091 --- /dev/null +++ b/tests/fixtures/radarr/indexer_all.json @@ -0,0 +1,408 @@ +[ + { + "enableRss": true, + "enableAutomaticSearch": true, + "enableInteractiveSearch": true, + "supportsRss": true, + "supportsSearch": true, + "protocol": "torrent", + "priority": 25, + "downloadClientId": 0, + "name": "string", + "fields": [ + { + "order": 0, + "name": "baseUrl", + "label": "URL", + "value": "string", + "type": "textbox", + "advanced": false + }, + { + "order": 1, + "name": "apiPath", + "label": "API Path", + "helpText": "Path to the api, usually /api", + "value": "/api", + "type": "textbox", + "advanced": true + }, + { + "order": 2, + "name": "multiLanguages", + "label": "Multi Languages", + "helpText": "What languages are normally in a multi release on this indexer?", + "value": [], + "type": "select", + "advanced": true, + "selectOptions": [ + { + "value": -2, + "name": "Original", + "order": 0, + "dividerAfter": true + }, + { + "value": 31, + "name": "Arabic", + "order": 0, + "dividerAfter": false + }, + { + "value": 34, + "name": "Bengali", + "order": 0, + "dividerAfter": false + }, + { + "value": 29, + "name": "Bulgarian", + "order": 0, + "dividerAfter": false + }, + { + "value": 10, + "name": "Chinese", + "order": 0, + "dividerAfter": false + }, + { + "value": 25, + "name": "Czech", + "order": 0, + "dividerAfter": false + }, + { + "value": 6, + "name": "Danish", + "order": 0, + "dividerAfter": false + }, + { + "value": 7, + "name": "Dutch", + "order": 0, + "dividerAfter": false + }, + { + "value": 1, + "name": "English", + "order": 0, + "dividerAfter": false + }, + { + "value": 16, + "name": "Finnish", + "order": 0, + "dividerAfter": false + }, + { + "value": 19, + "name": "Flemish", + "order": 0, + "dividerAfter": false + }, + { + "value": 2, + "name": "French", + "order": 0, + "dividerAfter": false + }, + { + "value": 4, + "name": "German", + "order": 0, + "dividerAfter": false + }, + { + "value": 20, + "name": "Greek", + "order": 0, + "dividerAfter": false + }, + { + "value": 23, + "name": "Hebrew", + "order": 0, + "dividerAfter": false + }, + { + "value": 26, + "name": "Hindi", + "order": 0, + "dividerAfter": false + }, + { + "value": 22, + "name": "Hungarian", + "order": 0, + "dividerAfter": false + }, + { + "value": 9, + "name": "Icelandic", + "order": 0, + "dividerAfter": false + }, + { + "value": 5, + "name": "Italian", + "order": 0, + "dividerAfter": false + }, + { + "value": 8, + "name": "Japanese", + "order": 0, + "dividerAfter": false + }, + { + "value": 21, + "name": "Korean", + "order": 0, + "dividerAfter": false + }, + { + "value": 24, + "name": "Lithuanian", + "order": 0, + "dividerAfter": false + }, + { + "value": 15, + "name": "Norwegian", + "order": 0, + "dividerAfter": false + }, + { + "value": 33, + "name": "Persian", + "order": 0, + "dividerAfter": false + }, + { + "value": 12, + "name": "Polish", + "order": 0, + "dividerAfter": false + }, + { + "value": 18, + "name": "Portuguese", + "order": 0, + "dividerAfter": false + }, + { + "value": 30, + "name": "Portuguese (Brazil)", + "order": 0, + "dividerAfter": false + }, + { + "value": 27, + "name": "Romanian", + "order": 0, + "dividerAfter": false + }, + { + "value": 11, + "name": "Russian", + "order": 0, + "dividerAfter": false + }, + { + "value": 3, + "name": "Spanish", + "order": 0, + "dividerAfter": false + }, + { + "value": 14, + "name": "Swedish", + "order": 0, + "dividerAfter": false + }, + { + "value": 28, + "name": "Thai", + "order": 0, + "dividerAfter": false + }, + { + "value": 17, + "name": "Turkish", + "order": 0, + "dividerAfter": false + }, + { + "value": 32, + "name": "Ukrainian", + "order": 0, + "dividerAfter": false + }, + { + "value": 13, + "name": "Vietnamese", + "order": 0, + "dividerAfter": false + } + ] + }, + { + "order": 3, + "name": "apiKey", + "label": "API Key", + "value": "string", + "type": "textbox", + "advanced": false + }, + { + "order": 4, + "name": "categories", + "label": "Categories", + "helpText": "Drop down list; at least one category must be selected.", + "value": [ + 2000, + 2010, + 2020, + 2030, + 2035, + 2040, + 2045, + 2050, + 2060 + ], + "type": "select", + "advanced": false, + "selectOptionsProviderAction": "newznabCategories" + }, + { + "order": 5, + "name": "additionalParameters", + "label": "Additional Parameters", + "helpText": "Additional Newznab parameters", + "type": "textbox", + "advanced": true + }, + { + "order": 6, + "name": "removeYear", + "label": "Remove year from search string", + "helpText": "Should Radarr remove the year after the title when searching this indexer?", + "value": false, + "type": "checkbox", + "advanced": true + }, + { + "order": 7, + "name": "minimumSeeders", + "label": "Minimum Seeders", + "helpText": "Minimum number of seeders required.", + "value": 1, + "type": "number", + "advanced": true + }, + { + "order": 8, + "name": "seedCriteria.seedRatio", + "label": "Seed Ratio", + "helpText": "The ratio a torrent should reach before stopping, empty is download client's default", + "type": "textbox", + "advanced": true + }, + { + "order": 9, + "name": "seedCriteria.seedTime", + "label": "Seed Time", + "unit": "minutes", + "helpText": "The time a torrent should be seeded before stopping, empty is download client's default", + "type": "number", + "advanced": true + }, + { + "order": 10, + "name": "requiredFlags", + "label": "Required Flags", + "helpText": "What indexer flags are required?", + "helpLink": "https://wiki.servarr.com/radarr/settings#indexer-flags", + "value": [], + "type": "tagSelect", + "advanced": true, + "selectOptions": [ + { + "value": 1, + "name": "G Freeleech", + "order": 1, + "dividerAfter": false + }, + { + "value": 2, + "name": "G Halfleech", + "order": 2, + "dividerAfter": false + }, + { + "value": 4, + "name": "G DoubleUpload", + "order": 4, + "dividerAfter": false + }, + { + "value": 8, + "name": "PTP Golden", + "order": 8, + "dividerAfter": false + }, + { + "value": 16, + "name": "PTP Approved", + "order": 16, + "dividerAfter": false + }, + { + "value": 32, + "name": "HDB Internal", + "order": 32, + "dividerAfter": false + }, + { + "value": 64, + "name": "AHD Internal", + "order": 64, + "dividerAfter": false + }, + { + "value": 128, + "name": "G Scene", + "order": 128, + "dividerAfter": false + }, + { + "value": 256, + "name": "G Freeleech75", + "order": 256, + "dividerAfter": false + }, + { + "value": 512, + "name": "G Freeleech25", + "order": 512, + "dividerAfter": false + }, + { + "value": 1024, + "name": "AHD UserRelease", + "order": 1024, + "dividerAfter": false + } + ] + } + ], + "implementationName": "Torznab", + "implementation": "Torznab", + "configContract": "TorznabSettings", + "infoLink": "https://wiki.servarr.com/radarr/supported#torznab", + "tags": [], + "id": 2 + } +] diff --git a/tests/test_radarr.py b/tests/test_radarr.py index 901e06a..a7b3a01 100644 --- a/tests/test_radarr.py +++ b/tests/test_radarr.py @@ -403,3 +403,46 @@ def test_get_queue_details(responses, radarr_client): ) data = radarr_client.get_queue_status() assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_del_queue_bulk(responses, radarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:7878/api/v3/queue/bulk", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + ) + data = radarr_client.del_queue_bulk( + id_=[1, 2, 3], remove_from_client=True, blocklist=True + ) + assert isinstance(data, dict) + + +# TODO: force_grab_queue_item + + +@pytest.mark.usefixtures +def test_get_indexer(responses, radarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/indexer", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/indexer_all.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_indexer() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/indexer/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/indexer.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_indexer(id_=1) + assert isinstance(data, dict) From d24861a04a848fb7dfc218db0148e6164bb3de97 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Thu, 28 Jul 2022 12:16:17 +0000 Subject: [PATCH 22/53] feat: added method add_root_folder --- pyarr/radarr.py | 16 ++++++++++++++++ pyarr/sonarr.py | 15 +++++++++++++++ tests/fixtures/common/rootfolder.json | 7 +++++++ tests/test_radarr.py | 14 ++++++++++++++ tests/test_sonarr.py | 14 ++++++++++++++ 5 files changed, 66 insertions(+) create mode 100644 tests/fixtures/common/rootfolder.json diff --git a/pyarr/radarr.py b/pyarr/radarr.py index c72ee27..181a746 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -78,6 +78,22 @@ def _movie_json( "addOptions": {"searchForMovie": search_for_movie}, } + ## CONFIG + # POST /rootfolder + def add_root_folder( + self, + directory: str, + ) -> dict[str, Any]: + """Adds a new root folder + + Args: + directory (str): The directory path + + Returns: + dict[str, Any]: Dictionary containing path details + """ + return self._post("rootfolder", self.ver_uri, data={"path": directory}) + ## MOVIE # GET /movie diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index 9e7b45e..e097769 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -73,6 +73,21 @@ def _series_json( }, } + # POST /rootfolder + def add_root_folder( + self, + directory: str, + ) -> dict[str, Any]: + """Adds a new root folder + + Args: + directory (str): The directory path + + Returns: + dict[str, Any]: Dictionary containing path details + """ + return self._post("rootfolder", self.ver_uri, data={"path": directory}) + ## COMMAND # GET /command diff --git a/tests/fixtures/common/rootfolder.json b/tests/fixtures/common/rootfolder.json new file mode 100644 index 0000000..b7442ef --- /dev/null +++ b/tests/fixtures/common/rootfolder.json @@ -0,0 +1,7 @@ +{ + "path": "/path/to/folder", + "accessible": true, + "freeSpace": 241118478336, + "unmappedFolders": [], + "id": 9 +} diff --git a/tests/test_radarr.py b/tests/test_radarr.py index a7b3a01..0cc9c56 100644 --- a/tests/test_radarr.py +++ b/tests/test_radarr.py @@ -42,6 +42,20 @@ def test__movie_json(responses, radarr_client): assert data["addOptions"]["searchForMovie"] == False +@pytest.mark.usefixtures +def test_add_root_folder(responses, sonarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8989/api/v3/rootfolder", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/rootfolder.json"), + status=201, + match_querystring=True, + ) + data = sonarr_client.add_root_folder(directory="/path/to/folder") + assert isinstance(data, dict) + + @pytest.mark.usefixtures def test_get_movie(responses, radarr_client): responses.add( diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index 9dd50f1..dc95638 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -58,6 +58,20 @@ def test__series_json(responses, sonarr_client): assert data["addOptions"]["searchForMissingEpisodes"] == True +@pytest.mark.usefixtures +def test_add_root_folder(responses, sonarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8989/api/v3/rootfolder", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/rootfolder.json"), + status=201, + match_querystring=True, + ) + data = sonarr_client.add_root_folder(directory="/path/to/folder") + assert isinstance(data, dict) + + @pytest.mark.usefixtures def test_get_command(responses, sonarr_client): """Check get_command()""" From 010982ac21ac94f4745db2574740978db5a3f5af Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Thu, 28 Jul 2022 14:02:39 +0000 Subject: [PATCH 23/53] tests: added more tests for radarr --- pyarr/models/radarr.py | 2 + pyarr/radarr.py | 37 ++-- pyarr/sonarr.py | 1 - tests/fixtures/radarr/movie_lookup_blank.json | 1 + tests/test_radarr.py | 187 ++++++++++++++++-- 5 files changed, 201 insertions(+), 27 deletions(-) create mode 100644 tests/fixtures/radarr/movie_lookup_blank.json diff --git a/pyarr/models/radarr.py b/pyarr/models/radarr.py index 85f0c66..8947223 100644 --- a/pyarr/models/radarr.py +++ b/pyarr/models/radarr.py @@ -14,6 +14,8 @@ class RadarrCommands(str, Enum): REFRESH_MOVIE = "RefreshMovie" RENAME_MOVIE = "RenameMovie" RESCAN_MOVIE = "RescanMovie" + RENAME_FILES = "RenameFiles" + BACKUP = "Backup" @enum_tools.documentation.document_enum diff --git a/pyarr/radarr.py b/pyarr/radarr.py index 181a746..4fd451c 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -52,18 +52,19 @@ def _movie_json( Returns: dict[str, Any]: Dictionary containing movie information """ - if tmdb: + if tmdb is not None: warn( "Argument tmdb is no longer used and will be removed in a future release.", DeprecationWarning, stacklevel=2, ) if isinstance(id_, int): - movie = self.lookup_movie(term=f"tmdb:{id_}")[0] + movies = self.lookup_movie(term=f"tmdb:{id_}") else: - movie = self.lookup_movie(term=f"imdb:{id_}")[0] - - if not movie: + movies = self.lookup_movie(term=f"imdb:{id_}") + if movies: + movie = movies[0] + if not movies: raise PyarrRecordNotFound("Movie Doesn't Exist") return { @@ -593,20 +594,34 @@ def del_indexer(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, Any # POST /command # TODO: type for kwargs and response - def post_command(self, name: RadarrCommands, **kwargs) -> Any: + def post_command( + self, name: RadarrCommands, **kwargs: Optional[Union[int, list[int]]] + ) -> dict[str, Any]: """Performs any of the predetermined Radarr command routines. Args: - name (RadarrCommands): Name of the command to be run - **kwargs: additional parameters for specific commands + name (SonarrCommands): Command that should be executed + **kwargs: Additional parameters for specific commands. See note. + + Note: + Required Kwargs: + DownloadedMoviesScan: clientid (int, Optional) + RenameFiles: files (list[int]) + DownloadedMoviesScan: path (str, Optional) + MissingMoviesSearch + RefreshMovie: movieid (Optional) + RenameMovie: movieid (list[int]) + RescanMovie: movieid (Optional) + MovieSearch: movieid (Optional) Returns: - JSON: Array + dict[str, Any]: Dictionary containing job """ - data = { + data: dict[str, Any] = { "name": name, - **kwargs, } + if kwargs: + data |= kwargs return self._post("command", self.ver_uri, data=data) ## CUSTOM FILTERS diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index e097769..2bac94e 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -139,7 +139,6 @@ def post_command( } if kwargs: data |= kwargs - print(data) return self._post("command", self.ver_uri, data=data) ## EPISODE diff --git a/tests/fixtures/radarr/movie_lookup_blank.json b/tests/fixtures/radarr/movie_lookup_blank.json new file mode 100644 index 0000000..fe51488 --- /dev/null +++ b/tests/fixtures/radarr/movie_lookup_blank.json @@ -0,0 +1 @@ +[] diff --git a/tests/test_radarr.py b/tests/test_radarr.py index 0cc9c56..407b81b 100644 --- a/tests/test_radarr.py +++ b/tests/test_radarr.py @@ -3,9 +3,13 @@ import pytest -from pyarr.exceptions import PyarrMissingArgument, PyarrResourceNotFound +from pyarr.exceptions import ( + PyarrMissingArgument, + PyarrRecordNotFound, + PyarrResourceNotFound, +) from pyarr.models.common import PyarrSortDirection -from pyarr.models.radarr import RadarrEventType, RadarrSortKeys +from pyarr.models.radarr import RadarrCommands, RadarrEventType, RadarrSortKeys from tests import load_fixture from tests.conftest import radarr_client @@ -29,30 +33,62 @@ def test__movie_json(responses, radarr_client): monitored=False, search_for_movie=False, ) + assert isinstance(data, dict) + + with contextlib.suppress(DeprecationWarning): + data = radarr_client._movie_json( + id_=123456, quality_profile_id=1, root_dir="/", tmdb=True + ) + + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie/lookup?term=imdb%3Att123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_lookup.json"), + status=200, + match_querystring=True, + ) + data = radarr_client._movie_json( + id_="tt123456", + quality_profile_id=1, + root_dir="/", + monitored=False, + search_for_movie=False, + ) assert isinstance(data, dict) - assert data["title"] == "string" - assert data["rootFolderPath"] == "/" - assert data["qualityProfileId"] == 1 - assert data["year"] == 2014 - assert data["tmdbId"] == 123456 - assert isinstance(data["images"], list) - assert data["titleSlug"] == "123456" - assert data["monitored"] == False - assert data["addOptions"]["searchForMovie"] == False + + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie/lookup?term=imdb%3Att123d", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_lookup_blank.json"), + status=200, + match_querystring=True, + ) + + with contextlib.suppress(PyarrRecordNotFound): + data = radarr_client._movie_json( + id_="tt123d", + quality_profile_id=1, + root_dir="/", + monitored=False, + search_for_movie=False, + ) + assert False @pytest.mark.usefixtures -def test_add_root_folder(responses, sonarr_client): +def test_add_root_folder(responses, radarr_client): responses.add( responses.POST, - "https://127.0.0.1:8989/api/v3/rootfolder", + "https://127.0.0.1:7878/api/v3/rootfolder", headers={"Content-Type": "application/json"}, body=load_fixture("common/rootfolder.json"), status=201, match_querystring=True, ) - data = sonarr_client.add_root_folder(directory="/path/to/folder") + data = radarr_client.add_root_folder(directory="/path/to/folder") assert isinstance(data, dict) @@ -92,7 +128,64 @@ def test_get_movie(responses, radarr_client): assert isinstance(data, list) -# TODO: add_movie +@pytest.mark.usefixtures +def test_add_movie(responses, radarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:7878/api/v3/movie", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie.json"), + status=201, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie/lookup?term=imdb%3Att123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_lookup.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie/lookup?term=tmdb%3A123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_lookup.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.add_movie( + id_="tt123456", + quality_profile_id=1, + root_dir="/", + monitored=False, + search_for_movie=False, + ) + assert isinstance(data, dict) + with contextlib.suppress(DeprecationWarning): + data = radarr_client.add_movie( + id_=123456, quality_profile_id=1, root_dir="/", tmdb=True + ) + + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie/lookup?term=imdb%3Att123d", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_lookup_blank.json"), + status=200, + match_querystring=True, + ) + with contextlib.suppress(PyarrRecordNotFound): + data = radarr_client.add_movie( + id_="tt123d", + quality_profile_id=1, + root_dir="/", + monitored=False, + search_for_movie=False, + ) + assert False + + # TODO: upd_movie @@ -460,3 +553,67 @@ def test_get_indexer(responses, radarr_client): ) data = radarr_client.get_indexer(id_=1) assert isinstance(data, dict) + + +# TODO: upd_indexer + + +@pytest.mark.usefixtures +def test_del_indexer(responses, radarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:7878/api/v3/indexer/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.del_indexer(id_=1) + assert isinstance(data, dict) + + responses.add( + responses.DELETE, + "https://127.0.0.1:7878/api/v3/indexer/999", + headers={"Content-Type": "application/json"}, + status=404, + ) + with contextlib.suppress(PyarrResourceNotFound): + data = radarr_client.del_indexer(id_=999) + assert False + + +@pytest.mark.usefixtures +def test_post_command(responses, radarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:7878/api/v3/command", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/command.json"), + status=201, + match_querystring=True, + ) + + data = radarr_client.post_command(name=RadarrCommands.DOWNLOADED_MOVIES_SCAN) + assert isinstance(data, dict) + data = radarr_client.post_command(RadarrCommands.DOWNLOADED_MOVIES_SCAN, clientId=1) + assert isinstance(data, dict) + data = radarr_client.post_command(RadarrCommands.RENAME_FILES) + assert isinstance(data, dict) + data = radarr_client.post_command(RadarrCommands.RENAME_FILES, files=[1, 2, 3]) + assert isinstance(data, dict) + data = radarr_client.post_command( + RadarrCommands.DOWNLOADED_MOVIES_SCAN, path="/path" + ) + assert isinstance(data, dict) + data = radarr_client.post_command(RadarrCommands.REFRESH_MOVIE, movieId=1) + assert isinstance(data, dict) + data = radarr_client.post_command(RadarrCommands.RENAME_MOVIE, movieId=1) + assert isinstance(data, dict) + data = radarr_client.post_command(RadarrCommands.RESCAN_MOVIE, movieId=1) + assert isinstance(data, dict) + data = radarr_client.post_command(RadarrCommands.RESCAN_MOVIE, movieId=1) + assert isinstance(data, dict) + data = radarr_client.post_command(RadarrCommands.MISSING_MOVIES_SEARCH) + assert isinstance(data, dict) + data = radarr_client.post_command(RadarrCommands.BACKUP) + assert isinstance(data, dict) From 25f12f910af58a1c325e1659d23440297352f3e2 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Tue, 2 Aug 2022 09:34:54 +0000 Subject: [PATCH 24/53] tests: added del_movies test, fixed put assertion errors --- pyarr/base.py | 65 ++++++++++++++++++++----- pyarr/lidarr.py | 14 +++--- pyarr/radarr.py | 13 ++--- pyarr/readarr.py | 8 +-- pyarr/request_handler.py | 12 +++-- pyarr/sonarr.py | 8 +-- tests/fixtures/sonarr/file_quality.json | 2 +- tests/test_radarr.py | 62 +++++++++++++++++++++-- 8 files changed, 145 insertions(+), 39 deletions(-) diff --git a/pyarr/base.py b/pyarr/base.py index 8ad6cbc..a5cd162 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -60,6 +60,32 @@ def assert_return( assert isinstance(response, typearg) return response + def assert_return_put( + self, + path: str, + ver_uri: str, + typearg: type, + params: Optional[dict] = None, + data: Optional[Union[dict[str, Any], list[dict[str, Any]]]] = None, + ) -> Any: + """Helper function to add assert to enforce typing responses + + Args: + path (str): Path on API + ver_uri (str): API Version + typearg (type): Python Type + params (Union[dict[str, Any], None], optional): Any required params. Defaults to None. + + Returns: + Any: Any + """ + if params is None: + response = self._put(path, ver_uri, data=data) + else: + response = self._put(path, ver_uri, params=params, data=data) + assert isinstance(response, typearg) + return response + # CALENDAR # GET /calendar/ @@ -375,7 +401,10 @@ def upd_quality_profile(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary of updated record """ - return self._put(f"qualityprofile/{id_}", self.ver_uri, data=data) + + return self.assert_return_put( + f"qualityprofile/{id_}", self.ver_uri, dict, data=data + ) # DELETE /qualityprofile def del_quality_profile( @@ -420,7 +449,9 @@ def upd_quality_definition(self, id_: int, data: dict[str, Any]) -> dict[str, An Returns: dict[str, Any]: Dictionary of updated record """ - return self._put(f"qualitydefinition/{id_}", self.ver_uri, data=data) + return self.assert_return_put( + f"qualitydefinition/{id_}", self.ver_uri, dict, data=data + ) # INDEXER @@ -453,7 +484,7 @@ def upd_indexer(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary of updated record """ - return self._put(f"indexer/{id_}", self.ver_uri, data=data) + return self.assert_return_put(f"indexer/{id_}", self.ver_uri, dict, data=data) # DELETE /indexer def del_indexer(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, Any]]: @@ -577,7 +608,7 @@ def upd_config_ui(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary with items """ - return self._put("config/ui", self.ver_uri, data=data) + return self.assert_return_put("config/ui", self.ver_uri, dict, data=data) # GET /config/host def get_config_host(self) -> dict[str, Any]: @@ -598,7 +629,7 @@ def upd_config_host(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionaries with items """ - return self._put("config/host", self.ver_uri, data=data) + return self.assert_return_put("config/host", self.ver_uri, dict, data=data) # GET /config/naming def get_config_naming(self) -> dict[str, Any]: @@ -619,7 +650,7 @@ def upd_config_naming(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary with items """ - return self._put("config/naming", self.ver_uri, data=data) + return self.assert_return_put("config/naming", self.ver_uri, dict, data=data) # GET /config/mediamanagement def get_media_management(self) -> dict[str, Any]: @@ -643,7 +674,9 @@ def upd_media_management(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary with items """ - return self._put("config/mediamanagement", self.ver_uri, data=data) + return self.assert_return_put( + "config/mediamanagement", self.ver_uri, dict, data=data + ) # NOTIFICATIONS @@ -714,7 +747,9 @@ def upd_notification(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary of updated record """ - return self._put(f"notification/{id_}", self.ver_uri, data=data) + return self.assert_return_put( + f"notification/{id_}", self.ver_uri, dict, data=data + ) # DELETE /notification/{id} def del_notification( @@ -790,7 +825,7 @@ def upd_tag(self, id_: int, label: str) -> dict[str, Any]: dict[str, Any]: Dictionary of updated items """ data = {"id": id_, "label": label} - return self._put("tag", self.ver_uri, data=data) + return self.assert_return_put("tag", self.ver_uri, dict, data=data) # DELETE /tag/{id} def del_tag(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, Any]]: @@ -872,7 +907,9 @@ def upd_download_client(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: dictionary of updated item """ - return self._put(f"downloadclient/{id_}", self.ver_uri, data=data) + return self.assert_return_put( + f"downloadclient/{id_}", self.ver_uri, dict, data=data + ) # DELETE /downloadclient/{id} def del_download_client( @@ -953,7 +990,9 @@ def upd_import_list(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary of updated data """ - return self._put(f"importlist/{id_}", self.ver_uri, data=data) + return self.assert_return_put( + f"importlist/{id_}", self.ver_uri, dict, data=data + ) # DELETE /importlist/{id} def del_import_list( @@ -990,4 +1029,6 @@ def upd_config_download_client(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: dictionary with updated items """ - return self._put("config/downloadclient", self.ver_uri, data=data) + return self.assert_return_put( + "config/downloadclient", self.ver_uri, dict, data=data + ) diff --git a/pyarr/lidarr.py b/pyarr/lidarr.py index cc11324..d2ef4d2 100644 --- a/pyarr/lidarr.py +++ b/pyarr/lidarr.py @@ -188,7 +188,7 @@ def upd_artist(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary of updated record """ - return self._put("artist", self.ver_uri, data=data) + return self.assert_return_put("artist", self.ver_uri, dict, data=data) def delete_artist( self, id_: int @@ -348,7 +348,7 @@ def upd_album(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary of updated record """ - return self._put("album", self.ver_uri, data=data) + return self.assert_return_put("album", self.ver_uri, dict, data=data) def delete_album(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, Any]]: """Delete an album with the provided ID @@ -525,7 +525,7 @@ def upd_track_file(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary of updated record """ - return self._put("trackfile", self.ver_uri, data=data) + return self.assert_return_put("trackfile", self.ver_uri, dict, data=data) # DEL /trackfile/{ids_} def delete_track_file( @@ -579,7 +579,7 @@ def upd_metadata_profile(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary of updated record """ - return self._put("metadataprofile", self.ver_uri, data=data) + return self.assert_return_put("metadataprofile", self.ver_uri, dict, data=data) # GET /config/metadataProvider def get_metadata_provider(self) -> list[dict[str, Any]]: @@ -603,7 +603,9 @@ def upd_metadata_provider(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary of updated record """ - return self._put("config/metadataProvider", self.ver_uri, data=data) + return self.assert_return_put( + "config/metadataProvider", self.ver_uri, dict, data=data + ) # GET /queue def get_queue( @@ -756,7 +758,7 @@ def upd_manual_import(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary of updated record """ - return self._put("manualimport", self.ver_uri, data=data) + return self.assert_return_put("manualimport", self.ver_uri, dict, data=data) # GET /retag def get_retag( diff --git a/pyarr/radarr.py b/pyarr/radarr.py index 4fd451c..fa58871 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -165,13 +165,13 @@ def add_movie( # PUT /movie def upd_movie( self, - data: Optional[dict[Any, Any]], + data: Union[dict[Any, Any], list[dict[Any, Any]]], move_files: Optional[bool] = None, - ) -> dict[str, Any]: + ) -> Union[dict[str, Any], list[dict[str, Any]]]: """Updates a movie in the database. Args: - data (dict[str, Any]): Dictionary containing an object obtained from get_movie() + data (Union[dict[Any, Any], list[dict[Any, Any]]]): Dictionary containing an object obtained from get_movie() move_files (Optional[bool], optional): Have radarr move files when updating. Defaults to None. Returns: @@ -181,9 +181,10 @@ def upd_movie( if move_files is not None: params["moveFiles"] = move_files - return self._put( + return self.assert_return_put( f"movie{'/editor' if isinstance(data, list) else ''}", self.ver_uri, + dict if isinstance(data, dict) else list, data=data, params=params, ) @@ -310,7 +311,7 @@ def upd_movies(self, data: dict[str, Any]) -> dict[str, Any]: DeprecationWarning, stacklevel=2, ) - return self._put("movie/editor", self.ver_uri, data=data) + return self.assert_return_put("movie/editor", self.ver_uri, list, data=data) # DELETE /movie/editor def del_movies( @@ -576,7 +577,7 @@ def upd_indexer(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary with updated record """ - return self._put(f"indexer/{id_}", self.ver_uri, data=data) + return self.assert_return_put(f"indexer/{id_}", self.ver_uri, dict, data=data) # DELETE /indexer/{id} def del_indexer(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, Any]]: diff --git a/pyarr/readarr.py b/pyarr/readarr.py index 90e673a..a73fec7 100644 --- a/pyarr/readarr.py +++ b/pyarr/readarr.py @@ -402,7 +402,7 @@ def upd_book(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary with updated record """ - return self._put(f"book/{id_}", self.ver_uri, data=data) + return self.assert_return_put(f"book/{id_}", self.ver_uri, dict, data=data) # DELETE /book/{id} def del_book( @@ -502,7 +502,7 @@ def upd_author(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary with updated record """ - return self._put(f"author/{id_}", self.ver_uri, data=data) + return self.assert_return_put(f"author/{id_}", self.ver_uri, dict, data=data) # DELETE /author/{id} def del_author( @@ -604,4 +604,6 @@ def upd_metadata_provider(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary of updated record """ - return self._put("config/metadataProvider", self.ver_uri, data=data) + return self.assert_return_put( + "config/metadataProvider", self.ver_uri, dict, data=data + ) diff --git a/pyarr/request_handler.py b/pyarr/request_handler.py index da15352..07fc6d6 100644 --- a/pyarr/request_handler.py +++ b/pyarr/request_handler.py @@ -1,4 +1,4 @@ -from typing import Any, Union +from typing import Any, Optional, Union import requests from requests import Response @@ -128,9 +128,9 @@ def _put( self, path: str, ver_uri: str = "", - params: Union[dict, None] = None, - data: Union[dict, None] = None, - ) -> dict[str, Any]: + params: Optional[dict] = None, + data: Optional[Union[dict[str, Any], list[dict[str, Any]]]] = None, + ) -> Union[dict[str, Any], list[dict[str, Any]]]: """Wrapper on any put requests Args: @@ -154,7 +154,9 @@ def _put( raise PyarrConnectionError( "Timeout occurred while connecting to API." ) from exception - return self._return(res, dict) + + response = _process_response(res) + return self._return(res, dict if isinstance(response, dict) else list) def _delete( self, diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index 2bac94e..3057c9f 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -222,7 +222,7 @@ def upd_episode(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary with updated record """ - return self._put(f"episode/{id_}", self.ver_uri, data=data) + return self.assert_return_put(f"episode/{id_}", self.ver_uri, dict, data=data) ## EPISODE FILE @@ -301,7 +301,9 @@ def upd_episode_file_quality( Returns: dict[str, Any]: Dictionary with updated record """ - return self._put(f"episodefile/{id_}", self.ver_uri, data=data) + return self.assert_return_put( + f"episodefile/{id_}", self.ver_uri, dict, data=data + ) # GET /wanted/missing def get_wanted( @@ -583,7 +585,7 @@ def upd_series(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary or updated record """ - return self._put("series", self.ver_uri, data=data) + return self.assert_return_put("series", self.ver_uri, dict, data=data) # DELETE /series/{id} def del_series( diff --git a/tests/fixtures/sonarr/file_quality.json b/tests/fixtures/sonarr/file_quality.json index 32cc5be..83fe2fe 100644 --- a/tests/fixtures/sonarr/file_quality.json +++ b/tests/fixtures/sonarr/file_quality.json @@ -7,5 +7,5 @@ "version": 1, "real": 0 } - }, + } } diff --git a/tests/test_radarr.py b/tests/test_radarr.py index 407b81b..cce93fe 100644 --- a/tests/test_radarr.py +++ b/tests/test_radarr.py @@ -1,5 +1,6 @@ import contextlib from copyreg import add_extension +from distutils.file_util import move_file import pytest @@ -186,7 +187,49 @@ def test_add_movie(responses, radarr_client): assert False -# TODO: upd_movie +@pytest.mark.usefixtures +def test_upd_movie(responses, radarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/movie/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie.json"), + status=202, + match_querystring=True, + ) + movie = radarr_client.get_movie(1) + responses.add( + responses.PUT, + "https://127.0.0.1:7878/api/v3/movie", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie.json"), + status=202, + match_querystring=True, + ) + data = radarr_client.upd_movie(data=movie) + assert isinstance(data, dict) + + responses.add( + responses.PUT, + "https://127.0.0.1:7878/api/v3/movie?moveFiles=True", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie.json"), + status=202, + match_querystring=True, + ) + data = radarr_client.upd_movie(data=movie, move_files=True) + assert isinstance(data, dict) + + responses.add( + responses.PUT, + "https://127.0.0.1:7878/api/v3/movie", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_all.json"), + status=202, + match_querystring=True, + ) + data = radarr_client.upd_movie(data=load_fixture("radarr/movie_all.json")) + assert isinstance(data, list) @pytest.mark.usefixtures @@ -215,7 +258,6 @@ def test_get_movie_by_movie_id(responses, radarr_client): assert False -# TODO: del_movie @pytest.mark.usefixtures def test_del_movie(responses, radarr_client): responses.add( @@ -361,7 +403,21 @@ def test_get_movie_file(responses, radarr_client): assert isinstance(data, list) -# TODO: del_movie +@pytest.mark.usefixtures +def test_del_movies(responses, radarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:7878/api/v3/movie/editor", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + del_data = {"movieIds": [0], "deleteFIles": True, "addImportExclusion": True} + data = radarr_client.del_movies(data=del_data) + assert isinstance(data, dict) + + @pytest.mark.usefixtures def test_del_movie_file(responses, radarr_client): responses.add( From 86c9b5db3588560a52cf7d7736dbc66f9499989e Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Wed, 3 Aug 2022 08:42:17 +0000 Subject: [PATCH 25/53] test: added more tests, fixed post assertion errors --- pyarr/base.py | 34 ++++- pyarr/lidarr.py | 8 +- pyarr/radarr.py | 20 +-- pyarr/readarr.py | 10 +- pyarr/request_handler.py | 5 +- pyarr/sonarr.py | 12 +- tests/fixtures/radarr/movie_import.json | 194 ++++++++++++++++++++++++ tests/test_radarr.py | 56 ++++++- 8 files changed, 308 insertions(+), 31 deletions(-) create mode 100644 tests/fixtures/radarr/movie_import.json diff --git a/pyarr/base.py b/pyarr/base.py index a5cd162..677c0c4 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -86,6 +86,32 @@ def assert_return_put( assert isinstance(response, typearg) return response + def assert_return_post( + self, + path: str, + ver_uri: str, + typearg: type, + params: Optional[dict] = None, + data: Optional[Union[dict[str, Any], list[dict[str, Any]]]] = None, + ) -> Any: + """Helper function to add assert to enforce typing responses + + Args: + path (str): Path on API + ver_uri (str): API Version + typearg (type): Python Type + params (Union[dict[str, Any], None], optional): Any required params. Defaults to None. + + Returns: + Any: Any + """ + if params is None: + response = self._post(path, ver_uri, data=data) + else: + response = self._post(path, ver_uri, params=params, data=data) + assert isinstance(response, typearg) + return response + # CALENDAR # GET /calendar/ @@ -734,7 +760,7 @@ def add_notification(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: dictionary of added item """ - return self._post("notification", self.ver_uri, data=data) + return self.assert_return_post("notification", self.ver_uri, dict, data=data) # PUT /notification/{id} def upd_notification(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: @@ -808,7 +834,7 @@ def create_tag(self, label: str) -> dict[str, Any]: dict[str, Any]: Dictionary of new record """ data = {"label": label} - return self._post("tag", self.ver_uri, data=data) + return self.assert_return_post("tag", self.ver_uri, dict, data=data) # PUT /tag/{id} def upd_tag(self, id_: int, label: str) -> dict[str, Any]: @@ -894,7 +920,7 @@ def add_download_client(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: dictionary of added item """ - return self._post("downloadclient", self.ver_uri, data=data) + return self.assert_return_post("downloadclient", self.ver_uri, dict, data=data) # PUT /downloadclient/{id} def upd_download_client(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: @@ -977,7 +1003,7 @@ def add_import_list(self, data: dict[str, Any]) -> dict[str, Any]: Returns: dict[str, Any]: dictionary of added item """ - return self._post("importlist", self.ver_uri, data=data) + return self.assert_return_post("importlist", self.ver_uri, dict, data=data) # PUT /importlist/{id} def upd_import_list(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: diff --git a/pyarr/lidarr.py b/pyarr/lidarr.py index d2ef4d2..4e2610e 100644 --- a/pyarr/lidarr.py +++ b/pyarr/lidarr.py @@ -56,7 +56,9 @@ def add_root_folder( "path": path, } - return self._post("rootfolder", self.ver_uri, data=folder_json) + return self.assert_return_post( + "rootfolder", self.ver_uri, dict, data=folder_json + ) def lookup(self, term: str) -> list[dict[str, Any]]: """Search for an artist / album / song @@ -177,7 +179,7 @@ def add_artist( artist_monitor, artist_search_for_missing_albums, ) - return self._post("artist", self.ver_uri, data=artist_json) + return self.assert_return_post("artist", self.ver_uri, dict, data=artist_json) def upd_artist(self, data: dict[str, Any]) -> dict[str, Any]: """Update an existing artist @@ -334,7 +336,7 @@ def add_album( artist_monitor, artist_search_for_missing_albums, ) - return self._post("album", self.ver_uri, data=album_json) + return self.assert_return_post("album", self.ver_uri, dict, data=album_json) def upd_album(self, data: dict[str, Any]) -> dict[str, Any]: """Update an album diff --git a/pyarr/radarr.py b/pyarr/radarr.py index fa58871..5a32633 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -93,7 +93,9 @@ def add_root_folder( Returns: dict[str, Any]: Dictionary containing path details """ - return self._post("rootfolder", self.ver_uri, data={"path": directory}) + return self.assert_return_post( + "rootfolder", self.ver_uri, dict, data={"path": directory} + ) ## MOVIE @@ -160,7 +162,7 @@ def add_movie( id_, quality_profile_id, root_dir, monitored, search_for_movie ) - return self._post("movie", self.ver_uri, data=movie_json) + return self.assert_return_post("movie", self.ver_uri, dict, data=movie_json) # PUT /movie def upd_movie( @@ -180,11 +182,11 @@ def upd_movie( params = {} if move_files is not None: params["moveFiles"] = move_files - + print(type(data)) return self.assert_return_put( f"movie{'/editor' if isinstance(data, list) else ''}", self.ver_uri, - dict if isinstance(data, dict) else list, + list if isinstance(data, list) else dict, data=data, params=params, ) @@ -296,7 +298,7 @@ def lookup_movie_by_imdb_id(self, id_: str) -> list[dict[str, Any]]: return self.assert_return("movie/lookup", self.ver_uri, list, params) # PUT /movie/editor - def upd_movies(self, data: dict[str, Any]) -> dict[str, Any]: + def upd_movies(self, data: dict[str, Any]) -> list[dict[str, Any]]: """The Updates operation allows to edit properties of multiple movies at once Args: @@ -350,9 +352,7 @@ def import_movies(self, data: list[dict[str, Any]]) -> list[dict[str, Any]]: Returns: list[dict[str, Any]]: List of dictionaries with items """ - response = self._post("movie/import", self.ver_uri, data=data) - assert isinstance(response, list) - return response + return self.assert_return_post("movie/import", self.ver_uri, list, data=data) ## MOVIEFILE @@ -549,7 +549,7 @@ def force_grab_queue_item(self, id_: int) -> dict[str, Any]: Returns: dict[str, Any]: Dictionary with record """ - return self._post(f"queue/grab/{id_}", self.ver_uri) + return self.assert_return_post(f"queue/grab/{id_}", self.ver_uri, dict) ## INDEXER @@ -623,7 +623,7 @@ def post_command( } if kwargs: data |= kwargs - return self._post("command", self.ver_uri, data=data) + return self.assert_return_post("command", self.ver_uri, dict, data=data) ## CUSTOM FILTERS diff --git a/pyarr/readarr.py b/pyarr/readarr.py index a73fec7..4ca5886 100644 --- a/pyarr/readarr.py +++ b/pyarr/readarr.py @@ -175,7 +175,7 @@ def post_command(self, name: ReadarrCommands, **kwargs) -> Any: "name": name, **kwargs, } - return self._post("command", self.ver_uri, data=data) + return self.assert_return_post("command", self.ver_uri, dict, data=data) ## WANTED (MISSING) @@ -386,7 +386,7 @@ def add_book( author_monitor, author_search_for_missing_books, ) - return self._post("book", self.ver_uri, data=book_json) + return self.assert_return_post("book", self.ver_uri, dict, data=book_json) # PUT /book/{id} def upd_book(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: @@ -486,7 +486,7 @@ def add_author( author_monitor, author_search_for_missing_books, ) - return self._post("author", self.ver_uri, data=author_json) + return self.assert_return_post("author", self.ver_uri, dict, data=author_json) # PUT /author/{id} def upd_author(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: @@ -580,7 +580,9 @@ def add_root_folder( "name": name, "path": directory, } - return self._post("rootFolder", self.ver_uri, data=folder_json) + return self.assert_return_post( + "rootFolder", self.ver_uri, dict, data=folder_json + ) # GET /config/metadataProvider def get_metadata_provider(self) -> dict[str, Any]: diff --git a/pyarr/request_handler.py b/pyarr/request_handler.py index 07fc6d6..30d54fc 100644 --- a/pyarr/request_handler.py +++ b/pyarr/request_handler.py @@ -98,7 +98,7 @@ def _post( ver_uri: str = "", params: Union[dict, None] = None, data: Union[list[dict], dict, None] = None, - ) -> dict[str, Any]: + ) -> Union[list[dict[str, Any]], dict[str, Any]]: """Wrapper on any post requests Args: @@ -122,7 +122,8 @@ def _post( raise PyarrConnectionError( "Timeout occurred while connecting to API." ) from exception - return self._return(res, dict) + response = _process_response(res) + return self._return(res, dict if isinstance(response, dict) else list) def _put( self, diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index 3057c9f..d065d15 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -86,7 +86,9 @@ def add_root_folder( Returns: dict[str, Any]: Dictionary containing path details """ - return self._post("rootfolder", self.ver_uri, data={"path": directory}) + return self.assert_return_post( + "rootfolder", self.ver_uri, dict, data={"path": directory} + ) ## COMMAND @@ -139,7 +141,7 @@ def post_command( } if kwargs: data |= kwargs - return self._post("command", self.ver_uri, data=data) + return self.assert_return_post("command", self.ver_uri, dict, data=data) ## EPISODE @@ -487,7 +489,7 @@ def download_release(self, guid: str, indexer_id: int) -> dict[str, Any]: dict[str, Any]: Dictionary with download release details """ data = {"guid": guid, "indexerId": indexer_id} - return self._post("release", self.ver_uri, data=data) + return self.assert_return_post("release", self.ver_uri, dict, data=data) # POST /release/push # TODO: find response @@ -511,7 +513,7 @@ def push_release( "protocol": protocol, "publishDate": publish_date.isoformat(), } - return self._post("release/push", self.ver_uri, data=data) + return self.assert_return_post("release/push", self.ver_uri, dict, data=data) ## SERIES # GET /series and /series/{id} @@ -573,7 +575,7 @@ def add_series( search_for_missing_episodes, ) - return self._post("series", self.ver_uri, data=series_json) + return self.assert_return_post("series", self.ver_uri, dict, data=series_json) # PUT /series def upd_series(self, data: dict[str, Any]) -> dict[str, Any]: diff --git a/tests/fixtures/radarr/movie_import.json b/tests/fixtures/radarr/movie_import.json new file mode 100644 index 0000000..6934668 --- /dev/null +++ b/tests/fixtures/radarr/movie_import.json @@ -0,0 +1,194 @@ +[ + { + "title": "string", + "originalTitle": "string", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieId": 0, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + } + }, + { + "sourceType": "tmdb", + "movieId": 0, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 11, + "name": "Russian" + } + }, + { + "sourceType": "tmdb", + "movieId": 0, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + } + }, + { + "sourceType": "tmdb", + "movieId": 0, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + } + }, + { + "sourceType": "tmdb", + "movieId": 0, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 16, + "name": "Finnish" + } + }, + { + "sourceType": "tmdb", + "movieId": 0, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 2, + "name": "French" + } + }, + { + "sourceType": "tmdb", + "movieId": 0, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 18, + "name": "Portuguese" + } + }, + { + "sourceType": "tmdb", + "movieId": 0, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + } + }, + { + "sourceType": "tmdb", + "movieId": 0, + "title": "string", + "sourceId": 0, + "votes": 0, + "voteCount": 0, + "language": { + "id": 1, + "name": "English" + } + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "string", + "sizeOnDisk": 0, + "status": "released", + "overview": "string", + "inCinemas": "2002-03-10T00:00:00Z", + "physicalRelease": "2002-09-26T00:00:00Z", + "digitalRelease": "2005-04-22T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "string" + }, + { + "coverType": "fanart", + "url": "string" + } + ], + "website": "string", + "year": 2002, + "hasFile": false, + "youTubeTrailerId": "string", + "studio": "string", + "path": "/movies/string", + "qualityProfileId": 1, + "monitored": true, + "minimumAvailability": "announced", + "isAvailable": true, + "folderName": "/movies/string", + "runtime": 81, + "cleanTitle": "string", + "imdbId": "string", + "tmdbId": 425, + "titleSlug": "425", + "certification": "U", + "genres": [ + "Animation", + "Comedy", + "Family" + ], + "added": "2022-08-03T08:21:06Z", + "addOptions": { + "searchForMovie": false, + "ignoreEpisodesWithFiles": false, + "ignoreEpisodesWithoutFiles": false + }, + "ratings": { + "imdb": { + "votes": 476521, + "value": 7.5, + "type": "user" + }, + "tmdb": { + "votes": 11238, + "value": 7.334, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 61, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 77, + "type": "user" + } + }, + "collection": { + "name": "string", + "tmdbId": 8354, + "images": [] + }, + "id": 313 + } +] diff --git a/tests/test_radarr.py b/tests/test_radarr.py index cce93fe..ba3bfae 100644 --- a/tests/test_radarr.py +++ b/tests/test_radarr.py @@ -1,6 +1,7 @@ import contextlib from copyreg import add_extension from distutils.file_util import move_file +import json import pytest @@ -222,13 +223,29 @@ def test_upd_movie(responses, radarr_client): responses.add( responses.PUT, - "https://127.0.0.1:7878/api/v3/movie", + "https://127.0.0.1:7878/api/v3/movie/editor", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_all.json"), + status=202, + match_querystring=True, + ) + + data = radarr_client.upd_movie( + data=json.loads(load_fixture("radarr/movie_all.json")) + ) + assert isinstance(data, list) + + responses.add( + responses.PUT, + "https://127.0.0.1:7878/api/v3/movie/editor?moveFiles=True", headers={"Content-Type": "application/json"}, body=load_fixture("radarr/movie_all.json"), status=202, match_querystring=True, ) - data = radarr_client.upd_movie(data=load_fixture("radarr/movie_all.json")) + data = radarr_client.upd_movie( + data=json.loads(load_fixture("radarr/movie_all.json")), move_files=True + ) assert isinstance(data, list) @@ -377,7 +394,40 @@ def test_lookup_movie_by_imdb_id(responses, radarr_client): assert isinstance(data, list) -# TODO: upd_movies +@pytest.mark.usefixtures +def test_upd_movies(responses, radarr_client): + + responses.add( + responses.PUT, + "https://127.0.0.1:7878/api/v3/movie/editor", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_all.json"), + status=202, + match_querystring=True, + ) + data = radarr_client.upd_movies( + data=json.loads(load_fixture("radarr/movie_all.json")) + ) + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_import_movies(responses, radarr_client): + + responses.add( + responses.POST, + "https://127.0.0.1:7878/api/v3/movie/import", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/movie_import.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.import_movies( + data=json.loads(load_fixture("radarr/movie_import.json")) + ) + assert isinstance(data, list) + + @pytest.mark.usefixtures def test_get_movie_file(responses, radarr_client): responses.add( From ac2e908618b2c87056a8312738183ce4048ae231 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Wed, 3 Aug 2022 16:19:23 +0000 Subject: [PATCH 26/53] tests: Added more tests --- pyarr/radarr.py | 2 +- tests/test_radarr.py | 16 +++++++++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/pyarr/radarr.py b/pyarr/radarr.py index 5a32633..e8b5e79 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -368,7 +368,7 @@ def get_movie_files_by_movie_id(self, id_: int) -> list[dict[str, Any]]: list[dict[str, Any]]: List of dictionaries with items """ - params = {"movieid": id_} + params = {"movieId": id_} return self.assert_return("moviefile", self.ver_uri, list, params) # GET /moviefile diff --git a/tests/test_radarr.py b/tests/test_radarr.py index ba3bfae..d1fb1aa 100644 --- a/tests/test_radarr.py +++ b/tests/test_radarr.py @@ -428,6 +428,20 @@ def test_import_movies(responses, radarr_client): assert isinstance(data, list) +@pytest.mark.usefixtures +def test_get_movie_files_by_movie_id(responses, radarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/moviefile?movieId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/moviefiles.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_movie_files_by_movie_id(id_=1) + assert isinstance(data, list) + + @pytest.mark.usefixtures def test_get_movie_file(responses, radarr_client): responses.add( @@ -605,7 +619,7 @@ def test_get_queue_details(responses, radarr_client): @pytest.mark.usefixtures -def test_get_queue_details(responses, radarr_client): +def test_get_queue_status(responses, radarr_client): responses.add( responses.GET, "https://127.0.0.1:7878/api/v3/queue/status", From cdacb4d575dc3ed743d3aedf25b0e09402e0d257 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Thu, 4 Aug 2022 19:03:02 +0000 Subject: [PATCH 27/53] fix: changed all blacklist to blocklist --- pyarr/base.py | 11 +++++------ pyarr/radarr.py | 6 +++--- tests/test_sonarr.py | 4 ++-- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/pyarr/base.py b/pyarr/base.py index 677c0c4..0e6d0d9 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -528,19 +528,18 @@ def del_indexer(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, Any # QUEUE # DELETE /queue/{id} - # TODO: check if blacklist has changed to blocklist def del_queue( self, id_: int, remove_from_client: Optional[bool] = None, - blacklist: Optional[bool] = None, + blocklist: Optional[bool] = None, ) -> Union[Response, dict[str, Any], dict[Any, Any]]: - """Remove an item from the queue and blacklist it + """Remove an item from the queue and blocklist it Args: id_ (int): ID of the item to be removed remove_from_client (Optional[bool], optional): Remove the item from the client. Defaults to None. - blacklist (Optional[bool], optional): Add the item to the blacklist. Defaults to None. + blocklist (Optional[bool], optional): Add the item to the blocklist. Defaults to None. Returns: Response: HTTP Response @@ -548,8 +547,8 @@ def del_queue( params = {} if remove_from_client: params["removeFromClient"] = remove_from_client - if blacklist: - params["blacklist"] = blacklist + if blocklist: + params["blocklist"] = blocklist return self._delete(f"queue/{id_}", self.ver_uri, params=params) diff --git a/pyarr/radarr.py b/pyarr/radarr.py index e8b5e79..98e1d60 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -429,14 +429,14 @@ def get_movie_history( params["eventType"] = event_type return self.assert_return("history/movie", self.ver_uri, list, params) - ## BLACKLIST + ## BLOCKLIST - # GET /blacklist/movie + # GET /blocklist/movie def get_blocklist_by_movie_id( self, id_: int, ) -> list[dict[str, Any]]: - """Retrieves blacklisted releases that are tied to a given movie in the database. + """Retrieves blocklisted releases that are tied to a given movie in the database. Args: id_ (int): Movie id from Database diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index dc95638..2c593d7 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -1279,13 +1279,13 @@ def test_del_queue(responses, sonarr_client): assert isinstance(data, dict) responses.add( responses.DELETE, - "https://127.0.0.1:8989/api/v3/queue/1?removeFromClient=True&blacklist=True", + "https://127.0.0.1:8989/api/v3/queue/1?removeFromClient=True&blocklist=True", headers={"Content-Type": "application/json"}, body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) - data = sonarr_client.del_queue(id_=1, remove_from_client=True, blacklist=True) + data = sonarr_client.del_queue(id_=1, remove_from_client=True, blocklist=True) assert isinstance(data, dict) From b9ced6db84254d52c23ab31ecc15a2a7a875bf87 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Wed, 17 Aug 2022 19:33:40 +0000 Subject: [PATCH 28/53] test: added more tests --- tests/fixtures/common/blank_dict.json | 1 + tests/fixtures/common/blank_list.json | 1 + tests/test_radarr.py | 56 +++++++++++++++++++++++++-- tests/test_sonarr.py | 2 - 4 files changed, 54 insertions(+), 6 deletions(-) create mode 100644 tests/fixtures/common/blank_dict.json create mode 100644 tests/fixtures/common/blank_list.json diff --git a/tests/fixtures/common/blank_dict.json b/tests/fixtures/common/blank_dict.json new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/tests/fixtures/common/blank_dict.json @@ -0,0 +1 @@ +{} diff --git a/tests/fixtures/common/blank_list.json b/tests/fixtures/common/blank_list.json new file mode 100644 index 0000000..fe51488 --- /dev/null +++ b/tests/fixtures/common/blank_list.json @@ -0,0 +1 @@ +[] diff --git a/tests/test_radarr.py b/tests/test_radarr.py index d1fb1aa..c678faf 100644 --- a/tests/test_radarr.py +++ b/tests/test_radarr.py @@ -647,9 +647,6 @@ def test_del_queue_bulk(responses, radarr_client): assert isinstance(data, dict) -# TODO: force_grab_queue_item - - @pytest.mark.usefixtures def test_get_indexer(responses, radarr_client): responses.add( @@ -675,7 +672,28 @@ def test_get_indexer(responses, radarr_client): assert isinstance(data, dict) -# TODO: upd_indexer +@pytest.mark.usefixtures +def test_upd_indexer(responses, radarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/indexer/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/indexer.json"), + status=200, + match_querystring=True, + ) + data = radarr_client.get_indexer(1) + + responses.add( + responses.PUT, + "https://127.0.0.1:7878/api/v3/indexer/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("radarr/indexer.json"), + status=202, + match_querystring=True, + ) + data = radarr_client.upd_indexer(1, data) + assert isinstance(data, dict) @pytest.mark.usefixtures @@ -737,3 +755,33 @@ def test_post_command(responses, radarr_client): assert isinstance(data, dict) data = radarr_client.post_command(RadarrCommands.BACKUP) assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_custom_filter(responses, radarr_client): + # TODO: get filled out fixture + responses.add( + responses.GET, + "https://127.0.0.1:7878/api/v3/customfilter", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=201, + match_querystring=True, + ) + data = radarr_client.get_custom_filter() + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_force_grab_queue_item(responses, radarr_client): + # TODO: get filled out fixture + responses.add( + responses.POST, + "https://127.0.0.1:7878/api/v3/queue/grab/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_dict.json"), + status=201, + match_querystring=True, + ) + data = radarr_client.force_grab_queue_item(id_=1) + assert isinstance(data, dict) diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index 2c593d7..9691fa5 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -262,8 +262,6 @@ def test_upd_episode(responses, sonarr_client): assert isinstance(data, dict) assert data["monitored"] == True - # TODO: Add test if incorrect data provided - @pytest.mark.usefixtures def test_get_episode_files_by_series_id(responses, sonarr_client): From d75eacbbd43abbafe819ad29b56b5a39fca230d7 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Fri, 19 Aug 2022 09:09:01 +0000 Subject: [PATCH 29/53] test: adding lidarr tests --- pyarr/lidarr.py | 93 +++++++------ pyarr/radarr.py | 10 +- tests/conftest.py | 12 ++ tests/fixtures/lidarr/artist.json | 91 ++++++++++++ tests/fixtures/lidarr/artist_all.json | 93 +++++++++++++ tests/fixtures/lidarr/lookup.json | 116 ++++++++++++++++ tests/fixtures/lidarr/rootfolder.json | 13 ++ tests/test_lidarr.py | 190 ++++++++++++++++++++++++++ tests/test_radarr.py | 16 +-- tests/test_sonarr.py | 117 +++++++++++++++- 10 files changed, 692 insertions(+), 59 deletions(-) create mode 100644 tests/fixtures/lidarr/artist.json create mode 100644 tests/fixtures/lidarr/artist_all.json create mode 100644 tests/fixtures/lidarr/lookup.json create mode 100644 tests/fixtures/lidarr/rootfolder.json create mode 100644 tests/test_lidarr.py diff --git a/pyarr/lidarr.py b/pyarr/lidarr.py index 4e2610e..0024860 100644 --- a/pyarr/lidarr.py +++ b/pyarr/lidarr.py @@ -32,9 +32,9 @@ def add_root_folder( self, name: str, path: str, - defaultTags: list[int], qualityProfile: int, metadataProfile: int, + defaultTags: list[int] = None, ) -> dict[str, Any]: """Adds a root folder @@ -48,6 +48,8 @@ def add_root_folder( Returns: dict[str, Any]: Dictonary with added record """ + if defaultTags is None: + defaultTags = [] folder_json = { "defaultTags": defaultTags, "defaultQualityProfileId": qualityProfile, @@ -64,18 +66,54 @@ def lookup(self, term: str) -> list[dict[str, Any]]: """Search for an artist / album / song Args: - term (str): Search term + term (str): Search term, can also use MusicBrainz IDs:: + + lidarr.lookup(term="lidarr:cc197bad-dc9c-440d-a5b5-d52ba2e14234") Returns: list[dict[str, Any]]: List of dictionaries with items """ return self.assert_return("search", self.ver_uri, list, params={"term": term}) - def get_artist(self, id_: Union[str, int, None] = None) -> list[dict[str, Any]]: + def lookup_artist(self, term: str) -> list[dict[str, Any]]: + """Search for an Artist to add to the database + + Args: + term (str): Search term, can also use MusicBrainz IDs:: + + lidarr.lookup(term="lidarr:cc197bad-dc9c-440d-a5b5-d52ba2e14234") + + Returns: + list[dict[str, Any]]: List of dictionaries with items + """ + + return self.assert_return( + "artist/lookup", self.ver_uri, list, params={"term": term} + ) + + def lookup_album(self, term: str) -> list[dict[str, Any]]: + """Search for an Album to add to the database + + Args: + term (str): Search term, can also use MusicBrainz IDs:: + + lidarr.lookup(term="lidarr:1dc4c347-a1db-32aa-b14f-bc9cc507b843") + + Returns: + list[dict[str, Any]]: List of dictionaries with items + """ + return self.assert_return( + "album/lookup", self.ver_uri, list, params={"term": term} + ) + + def get_artist(self, id_: Optional[Union[str, int]] = None) -> list[dict[str, Any]]: """Get an artist by ID or get all artists Args: - id_ (Union[str, int, None], optional): Artist ID. Defaults to None. + id_ (Optional[Union[str, int]], optional): Artist ID. Defaults to None. + + Note: + Include a string to search by MusicBrainz id. Returns: list[dict[str, Any]]: List of dictionaries with items @@ -85,13 +123,13 @@ def get_artist(self, id_: Union[str, int, None] = None) -> list[dict[str, Any]]: return self.assert_return( f"artist{_path}", self.ver_uri, - list, + dict if id_ else list, params={"mbId": id_} if isinstance(id_, str) else None, ) def _artist_json( self, - term: str, + id_: str, root_dir: str, quality_profile_id: Optional[int] = None, metadata_profile_id: Optional[int] = None, @@ -102,7 +140,7 @@ def _artist_json( """Method to help build the JSON for adding an artist Args: - term (str): Search term for artist + id_ (str): Lidarr or MusicBrainz ID root_dir (str): Root directory for music quality_profile_id (Optional[int], optional): Quality profile Id. Defaults to None. metadata_profile_id (Optional[int], optional): Metadata profile ID. Defaults to None. @@ -131,7 +169,7 @@ def _artist_json( "There is no Metadata Profile setup" ) from exception - artist = self.lookup_artist(term)[0] + artist = self.lookup_artist(term=f"lidarr:{id_}")[0] artist["id"] = 0 artist["metadataProfileId"] = metadata_profile_id artist["qualityProfileId"] = quality_profile_id @@ -146,7 +184,7 @@ def _artist_json( def add_artist( self, - search_term: str, + id_: str, root_dir: str, quality_profile_id: Optional[int] = None, metadata_profile_id: Optional[int] = None, @@ -158,7 +196,7 @@ def add_artist( by lidarr guid Args: - search_term (str): Artist name or album/single + id_ (str): Artist Lidarr or MusicBrainz ID root_dir (str): Directory for music to be stored quality_profile_id (Optional[int], optional): Quality profile ID. Defaults to None. metadata_profile_id (Optional[int], optional): Metadata profile ID. Defaults to None. @@ -171,7 +209,7 @@ def add_artist( """ artist_json = self._artist_json( - search_term, + id_, root_dir, quality_profile_id, metadata_profile_id, @@ -184,8 +222,10 @@ def add_artist( def upd_artist(self, data: dict[str, Any]) -> dict[str, Any]: """Update an existing artist + note: + Args: - data (dict[str, Any]): Data for the artist record + data (dict[str, Any]): Dictionary containing an object obtained from get_artist() Returns: dict[str, Any]: Dictionary of updated record @@ -201,24 +241,10 @@ def delete_artist( id_ (int): Artist ID to be deleted Returns: - Response: 200 / 401 + Response: HTTP Response """ return self._delete(f"artist/{id_}", self.ver_uri) - def lookup_artist(self, term: str) -> list[dict[str, Any]]: - """Search for an Artist to add to the database - - Args: - term (str): Search term to use for lookup - - Returns: - list[dict[str, Any]]: List of dictionaries with items - """ - - return self.assert_return( - "artist/lookup", self.ver_uri, list, params={"term": term} - ) - def get_album( self, albumIds: Union[int, list[int], None] = None, @@ -363,19 +389,6 @@ def delete_album(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, An """ return self._delete(f"album/{id_}", self.ver_uri) - def lookup_album(self, term: str) -> list[dict[str, Any]]: - """Search for an Album to add to the database - - Args: - term (str): Search term to use for lookup - - Returns: - list[dict[str, Any]]: List of dictionaries with items - """ - return self.assert_return( - "album/lookup", self.ver_uri, list, params={"term": term} - ) - # POST /command def post_command(self) -> Any: """This function is not implemented diff --git a/pyarr/radarr.py b/pyarr/radarr.py index 98e1d60..c86a80d 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -30,8 +30,8 @@ def __init__(self, host_url: str, api_key: str): def _movie_json( self, id_: Union[str, int], - quality_profile_id: int, root_dir: str, + quality_profile_id: int, monitored: bool = True, search_for_movie: bool = True, tmdb: Optional[bool] = None, @@ -40,8 +40,8 @@ def _movie_json( Args: id_ (Union[str, int]): imdb or tmdb id - quality_profile_id (int): ID of the quality profile the movie will use root_dir (str): location of the root DIR + quality_profile_id (int): ID of the quality profile the movie will use monitored (bool, optional): should the movie be monitored. Defaults to True. search_for_movie (bool, optional): Should we search for the movie. Defaults to True. tmdb (bool, optional): Not used, deprecated. Defaults to True. @@ -132,8 +132,8 @@ def get_movie( def add_movie( self, id_: Union[str, int], - quality_profile_id: int, root_dir: str, + quality_profile_id: int, monitored: bool = True, search_for_movie: bool = True, tmdb: Optional[bool] = None, @@ -142,8 +142,8 @@ def add_movie( Args: id_ (Union[str, int]): IMDB or TMDB ID - quality_profile_id (int): ID of the quality profile the movie will use root_dir (str): Location of the root DIR + quality_profile_id (int): ID of the quality profile the movie will use monitored (bool, optional): Should the movie be monitored. Defaults to True. search_for_movie (bool, optional): Should we search for the movie. Defaults to True. tmdb (Optional[bool], optional): Not in use, Deprecated. Defaults to None. @@ -159,7 +159,7 @@ def add_movie( stacklevel=2, ) movie_json = self._movie_json( - id_, quality_profile_id, root_dir, monitored, search_for_movie + id_, root_dir, quality_profile_id, monitored, search_for_movie ) return self.assert_return_post("movie", self.ver_uri, dict, data=movie_json) diff --git a/tests/conftest.py b/tests/conftest.py index 02ffd31..3462a47 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,6 +1,8 @@ import pytest +from pyarr.lidarr import LidarrAPI from pyarr.radarr import RadarrAPI +from pyarr.readarr import ReadarrAPI from pyarr.sonarr import SonarrAPI from tests import API_TOKEN, HOST_URL @@ -14,3 +16,13 @@ def sonarr_client(): @pytest.fixture() def radarr_client(): yield RadarrAPI(f"{HOST_URL}:7878", API_TOKEN) + + +@pytest.fixture() +def lidarr_client(): + yield LidarrAPI(f"{HOST_URL}:8686", API_TOKEN) + + +@pytest.fixture() +def readarr_client(): + yield ReadarrAPI(f"{HOST_URL}:8787", API_TOKEN) diff --git a/tests/fixtures/lidarr/artist.json b/tests/fixtures/lidarr/artist.json new file mode 100644 index 0000000..45e09a4 --- /dev/null +++ b/tests/fixtures/lidarr/artist.json @@ -0,0 +1,91 @@ +{ + "artistMetadataId": 6, + "status": "ended", + "ended": true, + "artistName": "string", + "foreignArtistId": "string", + "tadbId": 0, + "discogsId": 0, + "overview": "string", + "artistType": "Person", + "disambiguation": "", + "links": [ + { + "url": "string", + "name": "string" + } + ], + "lastAlbum": { + "artistMetadataId": 6, + "foreignAlbumId": "string", + "oldForeignAlbumIds": [], + "title": "string", + "overview": "string", + "disambiguation": "", + "releaseDate": "1977-01-01T00:00:00Z", + "images": [], + "links": [ + { + "url": "string", + "name": "string" + } + ], + "genres": [ + "string" + ], + "albumType": "Single", + "secondaryTypes": [], + "ratings": { + "votes": 0, + "value": 0 + }, + "cleanTitle": "string", + "profileId": 0, + "monitored": true, + "anyReleaseOk": true, + "lastInfoSync": "2022-08-08T19:45:43Z", + "added": "2022-03-06T19:32:33Z", + "addOptions": { + "addType": "manual", + "searchForNewAlbum": false + }, + "artistMetadata": null, + "albumReleases": null, + "artist": null, + "id": 12 + }, + "images": [ + { + "url": "/MediaCover/3/poster.jpg?lastWrite=637927957518187917", + "coverType": "poster", + "extension": ".jpg", + "remoteUrl": "string" + } + ], + "path": "/music/string", + "qualityProfileId": 1, + "metadataProfileId": 2, + "monitored": true, + "monitorNewItems": "all", + "rootFolderPath": "/music/", + "genres": [ + "string" + ], + "cleanName": "string", + "sortName": "string", + "tags": [], + "added": "2022-03-06T19:32:33Z", + "ratings": { + "votes": 9, + "value": 8.4 + }, + "statistics": { + "albumCount": 1, + "trackFileCount": 0, + "trackCount": 4, + "totalTrackCount": 4, + "sizeOnDisk": 0, + "percentOfTracks": 0 + }, + "id": 3 +} diff --git a/tests/fixtures/lidarr/artist_all.json b/tests/fixtures/lidarr/artist_all.json new file mode 100644 index 0000000..5228220 --- /dev/null +++ b/tests/fixtures/lidarr/artist_all.json @@ -0,0 +1,93 @@ +[ + { + "artistMetadataId": 6, + "status": "ended", + "ended": true, + "artistName": "string", + "foreignArtistId": "string", + "tadbId": 0, + "discogsId": 0, + "overview": "string", + "artistType": "Person", + "disambiguation": "", + "links": [ + { + "url": "string", + "name": "string" + } + ], + "lastAlbum": { + "artistMetadataId": 6, + "foreignAlbumId": "string", + "oldForeignAlbumIds": [], + "title": "string", + "overview": "string", + "disambiguation": "", + "releaseDate": "1977-01-01T00:00:00Z", + "images": [], + "links": [ + { + "url": "string", + "name": "string" + } + ], + "genres": [ + "string" + ], + "albumType": "Single", + "secondaryTypes": [], + "ratings": { + "votes": 0, + "value": 0 + }, + "cleanTitle": "string", + "profileId": 0, + "monitored": true, + "anyReleaseOk": true, + "lastInfoSync": "2022-08-08T19:45:43Z", + "added": "2022-03-06T19:32:33Z", + "addOptions": { + "addType": "manual", + "searchForNewAlbum": false + }, + "artistMetadata": null, + "albumReleases": null, + "artist": null, + "id": 12 + }, + "images": [ + { + "url": "/MediaCover/3/banner.jpg?lastWrite=637821919538014821", + "coverType": "banner", + "extension": ".jpg", + "remoteUrl": "string" + } + ], + "path": "/music/string", + "qualityProfileId": 1, + "metadataProfileId": 2, + "monitored": true, + "monitorNewItems": "all", + "rootFolderPath": "/music/", + "genres": [ + "string" + ], + "cleanName": "string", + "sortName": "string", + "tags": [], + "added": "2022-03-06T19:32:33Z", + "ratings": { + "votes": 9, + "value": 8.4 + }, + "statistics": { + "albumCount": 1, + "trackFileCount": 0, + "trackCount": 4, + "totalTrackCount": 4, + "sizeOnDisk": 0, + "percentOfTracks": 0 + }, + "id": 3 + } +] diff --git a/tests/fixtures/lidarr/lookup.json b/tests/fixtures/lidarr/lookup.json new file mode 100644 index 0000000..d507933 --- /dev/null +++ b/tests/fixtures/lidarr/lookup.json @@ -0,0 +1,116 @@ +[ + { + "foreignId": "guid", + "artist": { + "artistMetadataId": 0, + "status": "string", + "ended": true, + "artistName": "string", + "foreignArtistId": "guid", + "tadbId": 0, + "discogsId": 0, + "overview": "string", + "artistType": "Group", + "disambiguation": "string", + "links": [ + { + "url": "string", + "name": "string" + }, + { + "url": "string", + "name": "string" + }, + { + "url": "string", + "name": "string" + } + ], + "images": [], + "qualityProfileId": 0, + "metadataProfileId": 0, + "monitored": false, + "monitorNewItems": "all", + "genres": [ + "string" + ], + "tags": [], + "added": "0001-01-01T00:01:00Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "albumCount": 0, + "trackFileCount": 0, + "trackCount": 0, + "totalTrackCount": 0, + "sizeOnDisk": 0, + "percentOfTracks": 0 + } + }, + "id": 1 + }, + { + "foreignId": "guid", + "artist": { + "artistMetadataId": 0, + "status": "string", + "ended": false, + "artistName": "string", + "foreignArtistId": "guid", + "tadbId": 0, + "discogsId": 0, + "overview": "", + "artistType": "Group", + "disambiguation": "string", + "links": [ + { + "url": "string", + "name": "string" + }, + { + "url": "string", + "name": "string" + }, + { + "url": "string", + "name": "string" + }, + { + "url": "string", + "name": "string" + }, + { + "url": "string", + "name": "string" + }, + { + "url": "string", + "name": "string" + } + ], + "images": [], + "qualityProfileId": 0, + "metadataProfileId": 0, + "monitored": false, + "monitorNewItems": "all", + "genres": [], + "tags": [], + "added": "0001-01-01T00:01:00Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "albumCount": 0, + "trackFileCount": 0, + "trackCount": 0, + "totalTrackCount": 0, + "sizeOnDisk": 0, + "percentOfTracks": 0 + } + }, + "id": 2 + } +] diff --git a/tests/fixtures/lidarr/rootfolder.json b/tests/fixtures/lidarr/rootfolder.json new file mode 100644 index 0000000..a1c48f4 --- /dev/null +++ b/tests/fixtures/lidarr/rootfolder.json @@ -0,0 +1,13 @@ +{ + "name": "teest", + "path": "/music/", + "defaultMetadataProfileId": 4, + "defaultQualityProfileId": 1, + "defaultMonitorOption": "all", + "defaultNewItemMonitorOption": "all", + "defaultTags": [], + "accessible": true, + "freeSpace": 25394282496, + "totalSpace": 30006984704, + "id": 4 +} diff --git a/tests/test_lidarr.py b/tests/test_lidarr.py new file mode 100644 index 0000000..fb0940e --- /dev/null +++ b/tests/test_lidarr.py @@ -0,0 +1,190 @@ +import pytest + +from pyarr.models.lidarr import LidarrArtistMonitor + +from tests import load_fixture + + +@pytest.mark.usefixtures +def test_add_root_folder(responses, lidarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8686/api/v1/rootfolder", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/rootfolder.json"), + status=201, + match_querystring=True, + ) + data = lidarr_client.add_root_folder( + name="test", path="/path/to/folder", qualityProfile=1, metadataProfile=1 + ) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_lookup(responses, lidarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/search?term=my+string", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/lookup.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.lookup(term="my string") + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_lookup_artist(responses, lidarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/artist/lookup?term=my+string", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/lookup.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.lookup_artist(term="my string") + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_lookup_album(responses, lidarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/album/lookup?term=my+string", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/lookup.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.lookup_album(term="my string") + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_get_artist(responses, lidarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/artist", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/artist_all.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_artist() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/artist/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/artist.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_artist(id_=1) + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/artist?mbId=123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/artist.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_artist(id_="123456") + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test__artist_json(responses, lidarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/artist/lookup?term=lidarr%3A123456-123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/lookup.json"), + status=200, + match_querystring=True, + ) + + data = lidarr_client._artist_json( + id_="123456-123456", + root_dir="/", + quality_profile_id=1, + metadata_profile_id=1, + monitored=False, + artist_monitor=LidarrArtistMonitor.FIRST_ALBUM, + artist_search_for_missing_albums=False, + ) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_add_artist(responses, lidarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8686/api/v1/artist", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/artist.json"), + status=201, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/artist/lookup?term=lidarr%3A123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/lookup.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.add_artist( + id_="123456", + root_dir="/", + quality_profile_id=1, + metadata_profile_id=1, + monitored=False, + artist_monitor=LidarrArtistMonitor.LATEST_ALBUM, + artist_search_for_missing_albums=False, + ) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_upd_artist(responses, lidarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/artist/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/artist.json"), + status=202, + match_querystring=True, + ) + artist = lidarr_client.get_artist(1) + + responses.add( + responses.PUT, + "https://127.0.0.1:8686/api/v1/artist", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/artist.json"), + status=202, + match_querystring=True, + ) + data = lidarr_client.upd_artist(data=artist) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_delete_artist(responses, lidarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8686/api/v1/artist/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.delete_artist(1) + assert isinstance(data, dict) diff --git a/tests/test_radarr.py b/tests/test_radarr.py index c678faf..0770d87 100644 --- a/tests/test_radarr.py +++ b/tests/test_radarr.py @@ -1,6 +1,4 @@ import contextlib -from copyreg import add_extension -from distutils.file_util import move_file import json import pytest @@ -30,8 +28,8 @@ def test__movie_json(responses, radarr_client): data = radarr_client._movie_json( id_=123456, - quality_profile_id=1, root_dir="/", + quality_profile_id=1, monitored=False, search_for_movie=False, ) @@ -39,7 +37,7 @@ def test__movie_json(responses, radarr_client): with contextlib.suppress(DeprecationWarning): data = radarr_client._movie_json( - id_=123456, quality_profile_id=1, root_dir="/", tmdb=True + id_=123456, root_dir="/", quality_profile_id=1, tmdb=True ) responses.add( @@ -53,8 +51,8 @@ def test__movie_json(responses, radarr_client): data = radarr_client._movie_json( id_="tt123456", - quality_profile_id=1, root_dir="/", + quality_profile_id=1, monitored=False, search_for_movie=False, ) @@ -72,8 +70,8 @@ def test__movie_json(responses, radarr_client): with contextlib.suppress(PyarrRecordNotFound): data = radarr_client._movie_json( id_="tt123d", - quality_profile_id=1, root_dir="/", + quality_profile_id=1, monitored=False, search_for_movie=False, ) @@ -158,15 +156,15 @@ def test_add_movie(responses, radarr_client): ) data = radarr_client.add_movie( id_="tt123456", - quality_profile_id=1, root_dir="/", + quality_profile_id=1, monitored=False, search_for_movie=False, ) assert isinstance(data, dict) with contextlib.suppress(DeprecationWarning): data = radarr_client.add_movie( - id_=123456, quality_profile_id=1, root_dir="/", tmdb=True + id_=123456, root_dir="/", quality_profile_id=1, tmdb=True ) responses.add( @@ -180,8 +178,8 @@ def test_add_movie(responses, radarr_client): with contextlib.suppress(PyarrRecordNotFound): data = radarr_client.add_movie( id_="tt123d", - quality_profile_id=1, root_dir="/", + quality_profile_id=1, monitored=False, search_for_movie=False, ) diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index 9691fa5..afd248e 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -1375,7 +1375,28 @@ def test_get_config_ui(responses, sonarr_client): assert isinstance(data, dict) -# TODO: update config ui +@pytest.mark.usefixtures +def test_upd_config_ui(responses, sonarr_client): + responses.add( + responses.PUT, + "https://127.0.0.1:8989/api/v3/config/ui", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/config_ui.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/config/ui", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/config_ui.json"), + status=200, + match_querystring=True, + ) + payload = sonarr_client.get_config_ui() + data = sonarr_client.upd_config_ui(payload) + + assert isinstance(data, dict) @pytest.mark.usefixtures @@ -1392,7 +1413,28 @@ def test_get_config_host(responses, sonarr_client): assert isinstance(data, dict) -# TODO: update config host +@pytest.mark.usefixtures +def test_upd_config_host(responses, sonarr_client): + responses.add( + responses.PUT, + "https://127.0.0.1:8989/api/v3/config/host", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/config_host.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/config/host", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/config_host.json"), + status=200, + match_querystring=True, + ) + payload = sonarr_client.get_config_host() + data = sonarr_client.upd_config_host(payload) + + assert isinstance(data, dict) @pytest.mark.usefixtures @@ -1409,7 +1451,28 @@ def test_get_config_naming(responses, sonarr_client): assert isinstance(data, dict) -# TODO: update config naming +@pytest.mark.usefixtures +def test_upd_config_naming(responses, sonarr_client): + responses.add( + responses.PUT, + "https://127.0.0.1:8989/api/v3/config/naming", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/config_naming.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/config/naming", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/config_naming.json"), + status=200, + match_querystring=True, + ) + payload = sonarr_client.get_config_naming() + data = sonarr_client.upd_config_naming(payload) + + assert isinstance(data, dict) @pytest.mark.usefixtures @@ -1426,7 +1489,28 @@ def test_get_media_management(responses, sonarr_client): assert isinstance(data, dict) -# TODO: update media management +@pytest.mark.usefixtures +def test_upd_media_management(responses, sonarr_client): + responses.add( + responses.PUT, + "https://127.0.0.1:8989/api/v3/config/mediamanagement", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/media_management.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/config/mediamanagement", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/media_management.json"), + status=200, + match_querystring=True, + ) + payload = sonarr_client.get_media_management() + data = sonarr_client.upd_media_management(payload) + + assert isinstance(data, dict) @pytest.mark.usefixtures @@ -1703,6 +1787,8 @@ def test_get_import_list_schema(responses, sonarr_client): # TODO: add_import_list # TODO: upd_import_list + + @pytest.mark.usefixtures def test_del_import_list(responses, sonarr_client): responses.add( @@ -1731,4 +1817,25 @@ def test_get_config_download_client(responses, sonarr_client): assert isinstance(data, dict) -# TODO: upd_config_download_client +@pytest.mark.usefixtures +def test_upd_config_download_client(responses, sonarr_client): + responses.add( + responses.PUT, + "https://127.0.0.1:8989/api/v3/config/downloadclient", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/config_downloadclient.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/config/downloadclient", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/config_downloadclient.json"), + status=200, + match_querystring=True, + ) + payload = sonarr_client.get_config_download_client() + data = sonarr_client.upd_config_download_client(payload) + + assert isinstance(data, dict) From 23bacf21dab5f981f5313a257674e23dd8e1fc1d Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Mon, 22 Aug 2022 20:54:38 +0000 Subject: [PATCH 30/53] refactor: change add_album to use musicbrainz id, added more tests --- pyarr/lidarr.py | 35 ++-- tests/fixtures/lidarr/album.json | 116 +++++++++++++ tests/fixtures/lidarr/album_all.json | 234 +++++++++++++++++++++++++++ tests/test_lidarr.py | 136 ++++++++++++++++ 4 files changed, 506 insertions(+), 15 deletions(-) create mode 100644 tests/fixtures/lidarr/album.json create mode 100644 tests/fixtures/lidarr/album_all.json diff --git a/pyarr/lidarr.py b/pyarr/lidarr.py index 0024860..1c52330 100644 --- a/pyarr/lidarr.py +++ b/pyarr/lidarr.py @@ -196,7 +196,7 @@ def add_artist( by lidarr guid Args: - id_ (str): Artist Lidarr or MusicBrainz ID + id_ (str): Artist MusicBrainz ID root_dir (str): Directory for music to be stored quality_profile_id (Optional[int], optional): Quality profile ID. Defaults to None. metadata_profile_id (Optional[int], optional): Metadata profile ID. Defaults to None. @@ -272,11 +272,16 @@ def get_album( if foreignAlbumId is not None: params["foreignAlbumId"] = foreignAlbumId _path = "" if isinstance(albumIds, list) or albumIds is None else f"/{albumIds}" - return self.assert_return(f"album{_path}", self.ver_uri, list, params=params) + return self.assert_return( + f"album{_path}", + self.ver_uri, + dict if isinstance(albumIds, int) or foreignAlbumId else list, + params=params, + ) def _album_json( self, - term: str, + id_: str, root_dir: str, quality_profile_id: Optional[int] = None, metadata_profile_id: Optional[int] = None, @@ -287,7 +292,7 @@ def _album_json( """Method to help build the JSON for adding an album Args: - term (str): Search term for the album + id_ (str): Album MusicBrainz ID root_dir (str): Director to store the album. quality_profile_id (Optional[int], optional): Quality profile ID. Defaults to None. metadata_profile_id (Optional[int], optional): Metadata profile ID. Defaults to None. @@ -316,22 +321,22 @@ def _album_json( "There is no Metadata Profile setup" ) from exception - artist = self.lookup_artist(term)[0] - artist["id"] = 0 - artist["metadataProfileId"] = metadata_profile_id - artist["qualityProfileId"] = quality_profile_id - artist["rootFolderPath"] = root_dir - artist["addOptions"] = { + album = self.lookup_album(term=f"lidarr:{id_}")[0] + album["id"] = 0 + album["metadataProfileId"] = metadata_profile_id + album["qualityProfileId"] = quality_profile_id + album["rootFolderPath"] = root_dir + album["addOptions"] = { "monitor": artist_monitor, "searchForMissingAlbums": artist_search_for_missing_albums, } - artist["monitored"] = monitored + album["monitored"] = monitored - return artist + return album def add_album( self, - search_term: str, + id_: str, root_dir: str, quality_profile_id: Optional[int] = None, metadata_profile_id: Optional[int] = None, @@ -342,7 +347,7 @@ def add_album( """Adds an album to Lidarr Args: - search_term (str): Name of the album to search for + id_ (str): Album MusicBrainz ID root_dir (str): Location to store music quality_profile_id (Optional[int], optional): Quality profile ID. Defaults to None. metadata_profile_id (Optional[int], optional): Metadata profile ID. Defaults to None. @@ -354,7 +359,7 @@ def add_album( dict[str, Any]: Dictionary with added record """ album_json = self._album_json( - search_term, + id_, root_dir, quality_profile_id, metadata_profile_id, diff --git a/tests/fixtures/lidarr/album.json b/tests/fixtures/lidarr/album.json new file mode 100644 index 0000000..7db129a --- /dev/null +++ b/tests/fixtures/lidarr/album.json @@ -0,0 +1,116 @@ +{ + "title": "string", + "disambiguation": "", + "overview": "", + "artistId": 7, + "foreignAlbumId": "string", + "monitored": true, + "anyReleaseOk": true, + "profileId": 1, + "duration": 8926398, + "albumType": "Album", + "secondaryTypes": [], + "mediumCount": 2, + "ratings": { + "votes": 0, + "value": 0 + }, + "releaseDate": "2008-01-01T00:00:00Z", + "releases": [ + { + "id": 2439, + "albumId": 100, + "foreignReleaseId": "string", + "title": "string", + "status": "Official", + "duration": 8926398, + "trackCount": 20, + "media": [ + { + "mediumNumber": 2, + "mediumName": "string", + "mediumFormat": "CD" + } + ], + "mediumCount": 2, + "disambiguation": "string", + "country": [ + "string" + ], + "label": [ + "string" + ], + "format": "2xCD", + "monitored": true + } + ], + "genres": [], + "media": [ + { + "mediumNumber": 2, + "mediumName": "string", + "mediumFormat": "string" + } + ], + "artist": { + "artistMetadataId": 1, + "status": "continuing", + "ended": false, + "artistName": "string", + "foreignArtistId": "string", + "tadbId": 0, + "discogsId": 0, + "overview": "string", + "artistType": "Group", + "disambiguation": "", + "links": [ + { + "url": "string", + "name": "string" + } + ], + "images": [ + { + "url": "string", + "coverType": "poster", + "extension": ".jpg" + } + ], + "path": "/music/string", + "qualityProfileId": 1, + "metadataProfileId": 1, + "monitored": true, + "monitorNewItems": "all", + "genres": [ + "string" + ], + "cleanName": "string", + "sortName": "string", + "tags": [], + "added": "2022-03-07T13:55:42Z", + "ratings": { + "votes": 66, + "value": 8.3 + }, + "statistics": { + "albumCount": 0, + "trackFileCount": 0, + "trackCount": 0, + "totalTrackCount": 0, + "sizeOnDisk": 0, + "percentOfTracks": 0 + }, + "id": 7 + }, + "images": [], + "links": [], + "statistics": { + "trackFileCount": 0, + "trackCount": 20, + "totalTrackCount": 20, + "sizeOnDisk": 0, + "percentOfTracks": 0 + }, + "grabbed": false, + "id": 100 +} diff --git a/tests/fixtures/lidarr/album_all.json b/tests/fixtures/lidarr/album_all.json new file mode 100644 index 0000000..f87d6d9 --- /dev/null +++ b/tests/fixtures/lidarr/album_all.json @@ -0,0 +1,234 @@ +[ + { + "title": "string", + "disambiguation": "", + "overview": "", + "artistId": 7, + "foreignAlbumId": "string", + "monitored": true, + "anyReleaseOk": true, + "profileId": 1, + "duration": 8926398, + "albumType": "Album", + "secondaryTypes": [], + "mediumCount": 2, + "ratings": { + "votes": 0, + "value": 0 + }, + "releaseDate": "2008-01-01T00:00:00Z", + "releases": [ + { + "id": 2439, + "albumId": 100, + "foreignReleaseId": "string", + "title": "string", + "status": "Official", + "duration": 8926398, + "trackCount": 20, + "media": [ + { + "mediumNumber": 2, + "mediumName": "string", + "mediumFormat": "CD" + } + ], + "mediumCount": 2, + "disambiguation": "string", + "country": [ + "string" + ], + "label": [ + "string" + ], + "format": "2xCD", + "monitored": true + } + ], + "genres": [], + "media": [ + { + "mediumNumber": 2, + "mediumName": "string", + "mediumFormat": "string" + } + ], + "artist": { + "artistMetadataId": 1, + "status": "continuing", + "ended": false, + "artistName": "string", + "foreignArtistId": "string", + "tadbId": 0, + "discogsId": 0, + "overview": "string", + "artistType": "Group", + "disambiguation": "", + "links": [ + { + "url": "string", + "name": "string" + } + ], + "images": [ + { + "url": "string", + "coverType": "poster", + "extension": ".jpg" + } + ], + "path": "/music/string", + "qualityProfileId": 1, + "metadataProfileId": 1, + "monitored": true, + "monitorNewItems": "all", + "genres": [ + "string" + ], + "cleanName": "string", + "sortName": "string", + "tags": [], + "added": "2022-03-07T13:55:42Z", + "ratings": { + "votes": 66, + "value": 8.3 + }, + "statistics": { + "albumCount": 0, + "trackFileCount": 0, + "trackCount": 0, + "totalTrackCount": 0, + "sizeOnDisk": 0, + "percentOfTracks": 0 + }, + "id": 7 + }, + "images": [], + "links": [], + "statistics": { + "trackFileCount": 0, + "trackCount": 20, + "totalTrackCount": 20, + "sizeOnDisk": 0, + "percentOfTracks": 0 + }, + "grabbed": false, + "id": 100 + }, + { + "title": "string", + "disambiguation": "", + "overview": "", + "artistId": 7, + "foreignAlbumId": "string", + "monitored": true, + "anyReleaseOk": true, + "profileId": 1, + "duration": 8926398, + "albumType": "Album", + "secondaryTypes": [], + "mediumCount": 2, + "ratings": { + "votes": 0, + "value": 0 + }, + "releaseDate": "2008-01-01T00:00:00Z", + "releases": [ + { + "id": 2439, + "albumId": 100, + "foreignReleaseId": "string", + "title": "string", + "status": "Official", + "duration": 8926398, + "trackCount": 20, + "media": [ + { + "mediumNumber": 2, + "mediumName": "string", + "mediumFormat": "CD" + } + ], + "mediumCount": 2, + "disambiguation": "string", + "country": [ + "string" + ], + "label": [ + "string" + ], + "format": "2xCD", + "monitored": true + } + ], + "genres": [], + "media": [ + { + "mediumNumber": 2, + "mediumName": "string", + "mediumFormat": "string" + } + ], + "artist": { + "artistMetadataId": 1, + "status": "continuing", + "ended": false, + "artistName": "string", + "foreignArtistId": "string", + "tadbId": 0, + "discogsId": 0, + "overview": "string", + "artistType": "Group", + "disambiguation": "", + "links": [ + { + "url": "string", + "name": "string" + } + ], + "images": [ + { + "url": "string", + "coverType": "poster", + "extension": ".jpg" + } + ], + "path": "/music/string", + "qualityProfileId": 1, + "metadataProfileId": 1, + "monitored": true, + "monitorNewItems": "all", + "genres": [ + "string" + ], + "cleanName": "string", + "sortName": "string", + "tags": [], + "added": "2022-03-07T13:55:42Z", + "ratings": { + "votes": 66, + "value": 8.3 + }, + "statistics": { + "albumCount": 0, + "trackFileCount": 0, + "trackCount": 0, + "totalTrackCount": 0, + "sizeOnDisk": 0, + "percentOfTracks": 0 + }, + "id": 7 + }, + "images": [], + "links": [], + "statistics": { + "trackFileCount": 0, + "trackCount": 20, + "totalTrackCount": 20, + "sizeOnDisk": 0, + "percentOfTracks": 0 + }, + "grabbed": false, + "id": 101 + } +] diff --git a/tests/test_lidarr.py b/tests/test_lidarr.py index fb0940e..9986d31 100644 --- a/tests/test_lidarr.py +++ b/tests/test_lidarr.py @@ -1,5 +1,8 @@ +import contextlib + import pytest +from pyarr.exceptions import PyarrMissingProfile from pyarr.models.lidarr import LidarrArtistMonitor from tests import load_fixture @@ -109,6 +112,22 @@ def test__artist_json(responses, lidarr_client): status=200, match_querystring=True, ) + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/qualityprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/metadataprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) data = lidarr_client._artist_json( id_="123456-123456", @@ -121,6 +140,16 @@ def test__artist_json(responses, lidarr_client): ) assert isinstance(data, dict) + with contextlib.suppress(PyarrMissingProfile): + data = lidarr_client._artist_json(id_="123456-123456", root_dir="/") + assert False + + with contextlib.suppress(PyarrMissingProfile): + data = lidarr_client._artist_json( + id_="123456-123456", root_dir="/", quality_profile_id=1 + ) + assert False + @pytest.mark.usefixtures def test_add_artist(responses, lidarr_client): @@ -188,3 +217,110 @@ def test_delete_artist(responses, lidarr_client): ) data = lidarr_client.delete_artist(1) assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_album(responses, lidarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/album?includeAllArtistAlbums=False", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/album_all.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_album() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/album/1?includeAllArtistAlbums=False", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/album.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_album(albumIds=1) + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/album?includeAllArtistAlbums=False&foreignAlbumId=123456-123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/album.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_album(foreignAlbumId="123456-123456") + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/album?includeAllArtistAlbums=False&albumids=1&albumids=2&albumids=3", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/album_all.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_album(albumIds=[1, 2, 3]) + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/album?includeAllArtistAlbums=True&artistId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/album_all.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_album(artistId=1, allArtistAlbums=True) + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test__album_json(responses, lidarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/album/lookup?term=lidarr%3A123456-123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/lookup.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/qualityprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/metadataprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + + data = lidarr_client._album_json( + id_="123456-123456", + root_dir="/", + quality_profile_id=1, + metadata_profile_id=1, + monitored=False, + artist_monitor=LidarrArtistMonitor.FIRST_ALBUM, + artist_search_for_missing_albums=False, + ) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingProfile): + data = lidarr_client._album_json(id_="123456-123456", root_dir="/") + assert False + + with contextlib.suppress(PyarrMissingProfile): + data = lidarr_client._album_json( + id_="123456-123456", root_dir="/", quality_profile_id=1 + ) + assert False From d2b23f29ee0b647b274db5bd7dcf32d59ea9b3f3 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Tue, 30 Aug 2022 13:07:20 +0000 Subject: [PATCH 31/53] refactor(lidarr): updated get_wanted to match ordering of options with other functions --- pyarr/lidarr.py | 55 ++++++++++++++---------- pyarr/models/lidarr.py | 4 +- tests/test_lidarr.py | 97 +++++++++++++++++++++++++++++++++++++++++- 3 files changed, 131 insertions(+), 25 deletions(-) diff --git a/pyarr/lidarr.py b/pyarr/lidarr.py index 1c52330..353fbd4 100644 --- a/pyarr/lidarr.py +++ b/pyarr/lidarr.py @@ -4,9 +4,9 @@ from .base import BaseArrAPI from .const import PAGE, PAGE_SIZE -from .exceptions import PyarrError, PyarrMissingProfile +from .exceptions import PyarrError, PyarrMissingArgument, PyarrMissingProfile from .models.common import PyarrSortDirection -from .models.lidarr import LidarrArtistMonitor, LidarrSortKeys +from .models.lidarr import LidarrArtistMonitor, LidarrCommand, LidarrSortKey class LidarrAPI(BaseArrAPI): @@ -395,42 +395,53 @@ def delete_album(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, An return self._delete(f"album/{id_}", self.ver_uri) # POST /command - def post_command(self) -> Any: - """This function is not implemented + def post_command(self, name: LidarrCommand) -> dict[str, Any]: + """Send a command to Lidarr - Raises: - NotImplementedError: Error + Args: + name (LidarrCommand): Command to be run against Lidarr + + Returns: + dict[str, Any]: dictionary of executed command information """ - raise NotImplementedError("This feature is not implemented yet.") + return self.assert_return_post( + "command", self.ver_uri, dict, data={"name": name} + ) # GET /wanted def get_wanted( self, id_: Optional[int] = None, - sort_key: LidarrSortKeys = LidarrSortKeys.TITLE, - page: int = PAGE, - page_size: int = PAGE_SIZE, - sort_dir: PyarrSortDirection = PyarrSortDirection.ASC, + page: Optional[int] = None, + page_size: Optional[int] = None, + sort_key: Optional[LidarrSortKey] = None, + sort_dir: Optional[PyarrSortDirection] = None, missing: bool = True, ) -> dict[str, Any]: """Get wanted albums that are missing or not meeting cutoff Args: id_ (int | None, optional): Specific album ID to return. Defaults to None. - sort_key (LidarrSortKeys, optional): id, title, ratings, or quality". (Others do not apply). Defaults to LidarrSortKeys.TITLE. - page (int, optional): Page number to return. Defaults to 1. - page_size (int, optional): Number of items per page. Defaults to 10. - sort_dir (PyarrSortDirection, optional): Sort ascending or descending. Defaults to PyarrSortDirection.ASC. + page (Optional[int], optional): Page number to return. Defaults to None. + page_size (Optional[int], optional): Number of items per page. Defaults to None. + sort_key (Optional[LidarrSortKey], optional): Column to sort by. Defaults to None. + sort_dir (Optional[PyarrSortDirection], optional): Direction to sort the items. Defaults to None. missing (bool, optional): Search for missing (True) or cutoff not met (False). Defaults to True. Returns: dict[str, Any]: List of dictionaries with items """ - params = { - "sortKey": sort_key.value, - "page": page, - "pageSize": page_size, - } + params: dict[str, Union[int, LidarrSortKey, PyarrSortDirection, bool]] = {} + if page: + params["page"] = page + if page_size: + params["pageSize"] = page_size + if sort_key and sort_dir: + params["sortKey"] = sort_key + params["sortDirection"] = sort_dir + elif sort_key or sort_dir: + raise PyarrMissingArgument("sort_key and sort_dir must be used together") + _path = "missing" if missing else "cutoff" return self.assert_return( f"wanted/{_path}{'' if id_ is None else f'/{id_}'}", @@ -632,7 +643,7 @@ def get_queue( self, page: int = PAGE, page_size: int = PAGE_SIZE, - sort_key: LidarrSortKeys = LidarrSortKeys.TIMELEFT, + sort_key: LidarrSortKey = LidarrSortKey.TIMELEFT, unknown_artists: bool = False, include_artist: bool = False, include_album: bool = False, @@ -642,7 +653,7 @@ def get_queue( Args: page (int, optional): Which page to load. Defaults to PAGE. page_size (int, optional): Number of items per page. Defaults to PAGE_SIZE. - sort_key (LidarrSortKeys, optional): Key to sort by. Defaults to LidarrSortKeys.TIMELEFT. + sort_key (LidarrSortKey, optional): Key to sort by. Defaults to LidarrSortKey.TIMELEFT. unknown_artists (bool, optional): Include unknown artists. Defaults to False. include_artist (bool, optional): Include Artists. Defaults to False. include_album (bool, optional): Include albums. Defaults to False. diff --git a/pyarr/models/lidarr.py b/pyarr/models/lidarr.py index 8438a90..3c14e9d 100644 --- a/pyarr/models/lidarr.py +++ b/pyarr/models/lidarr.py @@ -6,7 +6,7 @@ @enum_tools.documentation.document_enum -class LidarrSortKeys(str, Enum): +class LidarrSortKey(str, Enum): """Lidarr sort keys.""" ALBUM_TITLE = "albums.title" @@ -41,7 +41,7 @@ class LidarrArtistMonitor(str, Enum): @enum_tools.documentation.document_enum -class LidarrCommands(str, Enum): +class LidarrCommand(str, Enum): """Lidarr commands.""" ALBUM_SEARCH = "AlbumSearch" diff --git a/tests/test_lidarr.py b/tests/test_lidarr.py index 9986d31..6f0f6bb 100644 --- a/tests/test_lidarr.py +++ b/tests/test_lidarr.py @@ -3,7 +3,7 @@ import pytest from pyarr.exceptions import PyarrMissingProfile -from pyarr.models.lidarr import LidarrArtistMonitor +from pyarr.models.lidarr import LidarrArtistMonitor, LidarrCommand from tests import load_fixture @@ -324,3 +324,98 @@ def test__album_json(responses, lidarr_client): id_="123456-123456", root_dir="/", quality_profile_id=1 ) assert False + + +@pytest.mark.usefixtures +def test_add_album(responses, lidarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8686/api/v1/album", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/album.json"), + status=201, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/album/lookup?term=lidarr%3A123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/lookup.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.add_album( + id_="123456", + root_dir="/", + quality_profile_id=1, + metadata_profile_id=1, + monitored=False, + artist_monitor=LidarrArtistMonitor.LATEST_ALBUM, + artist_search_for_missing_albums=False, + ) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_upd_album(responses, lidarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/album/1?includeAllArtistAlbums=False", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/album.json"), + status=202, + match_querystring=True, + ) + album = lidarr_client.get_album(1) + + responses.add( + responses.PUT, + "https://127.0.0.1:8686/api/v1/album", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/album.json"), + status=202, + match_querystring=True, + ) + data = lidarr_client.upd_album(data=album) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_delete_album(responses, lidarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8686/api/v1/album/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.delete_album(1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_post_command(responses, lidarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8686/api/v1/command", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/command.json"), + status=201, + match_querystring=True, + ) + + data = lidarr_client.post_command(name=LidarrCommand.DOWNLOADED_ALBUMS_SCAN) + assert isinstance(data, dict) + data = lidarr_client.post_command(name=LidarrCommand.ARTIST_SEARCH) + assert isinstance(data, dict) + data = lidarr_client.post_command(name=LidarrCommand.REFRESH_ARTIST) + assert isinstance(data, dict) + data = lidarr_client.post_command(name=LidarrCommand.REFRESH_ALBUM) + assert isinstance(data, dict) + data = lidarr_client.post_command(name=LidarrCommand.APP_UPDATE_CHECK) + assert isinstance(data, dict) + data = lidarr_client.post_command(name=LidarrCommand.MISSING_ALBUM_SEARCH) + assert isinstance(data, dict) + data = lidarr_client.post_command(name=LidarrCommand.ALBUM_SEARCH) + assert isinstance(data, dict) From bc48d4f582db51e202d0374ca9f6948fecfba224 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Tue, 30 Aug 2022 15:20:09 +0000 Subject: [PATCH 32/53] feat(request_handler): strip trailing slashes from URL --- pyarr/radarr.py | 25 +++-- pyarr/request_handler.py | 2 +- tests/fixtures/lidarr/wanted_missing.json | 125 ++++++++++++++++++++++ tests/test_lidarr.py | 56 +++++++++- 4 files changed, 192 insertions(+), 16 deletions(-) create mode 100644 tests/fixtures/lidarr/wanted_missing.json diff --git a/pyarr/radarr.py b/pyarr/radarr.py index c86a80d..2eaeef9 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -64,21 +64,20 @@ def _movie_json( movies = self.lookup_movie(term=f"imdb:{id_}") if movies: movie = movies[0] - if not movies: + return { + "title": movie["title"], + "rootFolderPath": root_dir, + "qualityProfileId": quality_profile_id, + "year": movie["year"], + "tmdbId": movie["tmdbId"], + "images": movie["images"], + "titleSlug": movie["titleSlug"], + "monitored": monitored, + "addOptions": {"searchForMovie": search_for_movie}, + } + else: raise PyarrRecordNotFound("Movie Doesn't Exist") - return { - "title": movie["title"], - "rootFolderPath": root_dir, - "qualityProfileId": quality_profile_id, - "year": movie["year"], - "tmdbId": movie["tmdbId"], - "images": movie["images"], - "titleSlug": movie["titleSlug"], - "monitored": monitored, - "addOptions": {"searchForMovie": search_for_movie}, - } - ## CONFIG # POST /rootfolder def add_root_folder( diff --git a/pyarr/request_handler.py b/pyarr/request_handler.py index 30d54fc..f579daa 100644 --- a/pyarr/request_handler.py +++ b/pyarr/request_handler.py @@ -28,7 +28,7 @@ def __init__( host_url (str): Host URL to Arr api api_key (str): API Key for Arr api """ - self.host_url = host_url + self.host_url = host_url.rstrip("/") self.api_key = api_key self.session: requests.Session = requests.Session() self.auth: Union[HTTPBasicAuth, None] = None diff --git a/tests/fixtures/lidarr/wanted_missing.json b/tests/fixtures/lidarr/wanted_missing.json new file mode 100644 index 0000000..6d095da --- /dev/null +++ b/tests/fixtures/lidarr/wanted_missing.json @@ -0,0 +1,125 @@ +{ + "page": 1, + "pageSize": 10, + "sortKey": "Albums.Id", + "sortDirection": "default", + "totalRecords": 3, + "records": [ + { + "title": "string", + "disambiguation": "", + "overview": "", + "artistId": 7, + "foreignAlbumId": "string", + "monitored": true, + "anyReleaseOk": true, + "profileId": 1, + "duration": 8926398, + "albumType": "Album", + "secondaryTypes": [], + "mediumCount": 2, + "ratings": { + "votes": 0, + "value": 0 + }, + "releaseDate": "2008-01-01T00:00:00Z", + "releases": [ + { + "id": 2439, + "albumId": 100, + "foreignReleaseId": "string", + "title": "string", + "status": "Official", + "duration": 8926398, + "trackCount": 20, + "media": [ + { + "mediumNumber": 2, + "mediumName": "string", + "mediumFormat": "CD" + } + ], + "mediumCount": 2, + "disambiguation": "string", + "country": [ + "string" + ], + "label": [ + "string" + ], + "format": "2xCD", + "monitored": true + } + ], + "genres": [], + "media": [ + { + "mediumNumber": 2, + "mediumName": "string", + "mediumFormat": "string" + } + ], + "artist": { + "artistMetadataId": 1, + "status": "continuing", + "ended": false, + "artistName": "string", + "foreignArtistId": "string", + "tadbId": 0, + "discogsId": 0, + "overview": "string", + "artistType": "Group", + "disambiguation": "", + "links": [ + { + "url": "string", + "name": "string" + } + ], + "images": [ + { + "url": "string", + "coverType": "poster", + "extension": ".jpg" + } + ], + "path": "/music/string", + "qualityProfileId": 1, + "metadataProfileId": 1, + "monitored": true, + "monitorNewItems": "all", + "genres": [ + "string" + ], + "cleanName": "string", + "sortName": "string", + "tags": [], + "added": "2022-03-07T13:55:42Z", + "ratings": { + "votes": 66, + "value": 8.3 + }, + "statistics": { + "albumCount": 0, + "trackFileCount": 0, + "trackCount": 0, + "totalTrackCount": 0, + "sizeOnDisk": 0, + "percentOfTracks": 0 + }, + "id": 7 + }, + "images": [], + "links": [], + "statistics": { + "trackFileCount": 0, + "trackCount": 20, + "totalTrackCount": 20, + "sizeOnDisk": 0, + "percentOfTracks": 0 + }, + "grabbed": false, + "id": 100 + } + ] +} diff --git a/tests/test_lidarr.py b/tests/test_lidarr.py index 6f0f6bb..bd8a31f 100644 --- a/tests/test_lidarr.py +++ b/tests/test_lidarr.py @@ -2,8 +2,9 @@ import pytest -from pyarr.exceptions import PyarrMissingProfile -from pyarr.models.lidarr import LidarrArtistMonitor, LidarrCommand +from pyarr.exceptions import PyarrMissingArgument, PyarrMissingProfile +from pyarr.models.common import PyarrSortDirection +from pyarr.models.lidarr import LidarrArtistMonitor, LidarrCommand, LidarrSortKey from tests import load_fixture @@ -419,3 +420,54 @@ def test_post_command(responses, lidarr_client): assert isinstance(data, dict) data = lidarr_client.post_command(name=LidarrCommand.ALBUM_SEARCH) assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_wanted(responses, lidarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/wanted/missing", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/wanted_missing.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_wanted() + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/wanted/cutoff", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/wanted_missing.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_wanted(missing=False) + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/wanted/missing?page=2&pageSize=20&sortKey=albums.title&sortDirection=ascending", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/wanted_missing.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_wanted( + page=2, + page_size=20, + sort_key=LidarrSortKey.ALBUM_TITLE, + sort_dir=PyarrSortDirection.ASC, + ) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = lidarr_client.get_wanted(sort_key=LidarrSortKey.TIMELEFT) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = lidarr_client.get_wanted(sort_dir=PyarrSortDirection.DEFAULT) + assert False + + +# TODO: Get_parse From 60c0eac4b7164e0a75fbc81f45f3dfffb9aa45d4 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Wed, 31 Aug 2022 09:58:13 +0000 Subject: [PATCH 33/53] tests: Added all lidarr tests --- pyarr/lidarr.py | 177 ++++--- tests/fixtures/lidarr/metadataprofile.json | 143 +++++ .../fixtures/lidarr/metadataprofile_all.json | 145 +++++ tests/fixtures/lidarr/metadataprovider.json | 6 + tests/fixtures/lidarr/queue.json | 8 + tests/fixtures/lidarr/track.json | 64 +++ tests/fixtures/lidarr/track_all.json | 82 +++ tests/fixtures/lidarr/track_error.json | 4 + tests/test_lidarr.py | 496 +++++++++++++++++- 9 files changed, 1047 insertions(+), 78 deletions(-) create mode 100644 tests/fixtures/lidarr/metadataprofile.json create mode 100644 tests/fixtures/lidarr/metadataprofile_all.json create mode 100644 tests/fixtures/lidarr/metadataprovider.json create mode 100644 tests/fixtures/lidarr/queue.json create mode 100644 tests/fixtures/lidarr/track.json create mode 100644 tests/fixtures/lidarr/track_all.json create mode 100644 tests/fixtures/lidarr/track_error.json diff --git a/pyarr/lidarr.py b/pyarr/lidarr.py index 353fbd4..b5c9f8a 100644 --- a/pyarr/lidarr.py +++ b/pyarr/lidarr.py @@ -3,8 +3,7 @@ from requests import Response from .base import BaseArrAPI -from .const import PAGE, PAGE_SIZE -from .exceptions import PyarrError, PyarrMissingArgument, PyarrMissingProfile +from .exceptions import PyarrMissingArgument, PyarrMissingProfile from .models.common import PyarrSortDirection from .models.lidarr import LidarrArtistMonitor, LidarrCommand, LidarrSortKey @@ -263,7 +262,7 @@ def get_album( Returns: list[dict[str, Any]]: List of dictionaries with items """ - params: dict[str, Any] = {"includeAllArtistAlbums": str(allArtistAlbums)} + params: dict[str, Any] = {"includeAllArtistAlbums": allArtistAlbums} if isinstance(albumIds, list): params["albumids"] = albumIds @@ -469,7 +468,7 @@ def get_tracks( artistId: Optional[int] = None, albumId: Optional[int] = None, albumReleaseId: Optional[int] = None, - trackIds: Union[int, list[int], None] = None, + trackIds: Optional[Union[int, list[int]]] = None, ) -> list[dict[str, Any]]: """Get tracks based on provided IDs @@ -477,7 +476,7 @@ def get_tracks( artistId (Optional[int], optional): Artist ID. Defaults to None. albumId (Optional[int], optional): Album ID. Defaults to None. albumReleaseId (Optional[int], optional): Album Release ID. Defaults to None. - trackIds (Union[int, list[int], None], optional): Track IDs. Defaults to None. + trackIds (Optional[Union[int, list[int]]], optional): Track IDs. Defaults to None. Returns: list[dict[str, Any]]: List of dictionaries with items @@ -491,10 +490,21 @@ def get_tracks( params["albumReleaseId"] = albumReleaseId if isinstance(trackIds, list): params["trackIds"] = trackIds + + if ( + artistId is None + and albumId is None + and albumReleaseId is None + and trackIds is None + ): + raise PyarrMissingArgument( + "One of artistId, albumId, albumReleaseId or trackIds must be provided" + ) + return self.assert_return( f"track{f'/{trackIds}' if isinstance(trackIds, int) else ''}", self.ver_uri, - list, + dict if isinstance(trackIds, int) else list, params=params, ) @@ -504,7 +514,7 @@ def get_track_file( artistId: Optional[int] = None, albumId: Optional[int] = None, trackFileIds: Union[int, list[int], None] = None, - unmapped: bool = False, + unmapped: Optional[bool] = None, ) -> list[dict[str, Any]]: """Get track files based on IDs, or get all unmapped files @@ -512,7 +522,7 @@ def get_track_file( artistId (Optional[int], optional): Artist database ID. Defaults to None. albumId (Optional[int], optional): Album database ID. Defaults to None. trackFileIds (Union[int, list[int], None], optional): Specific file IDs. Defaults to None. - unmapped (bool, optional): Get all unmapped filterExistingFiles. Defaults to False. + unmapped (Optional[bool], optional): Get all unmapped filterExistingFiles. Defaults to None. Raises: PyarrError: Where no IDs or unmapped params provided @@ -524,22 +534,24 @@ def get_track_file( artistId is None and albumId is None and trackFileIds is None - and not unmapped + and unmapped is None ): - raise PyarrError( - "BadRequest: artistId, albumId, trackFileIds or unmapped must be provided" + raise PyarrMissingArgument( + "artistId, albumId, trackFileIds or unmapped must be provided" ) - params: dict[str, Any] = {"unmapped": str(unmapped)} + params: dict[str, Any] = {} if artistId is not None: params["artistId"] = artistId if albumId is not None: params["albumId"] = albumId if isinstance(trackFileIds, list): params["trackFileIds"] = trackFileIds + if unmapped is not None: + params["unmapped"] = unmapped return self.assert_return( f"trackfile{f'/{trackFileIds}' if isinstance(trackFileIds, int) else ''}", self.ver_uri, - list, + dict if isinstance(trackFileIds, int) else list, params=params, ) @@ -586,19 +598,13 @@ def get_metadata_profile(self, id_: Optional[int] = None) -> list[dict[str, Any] Returns: list[dict[str, Any]]: List of dictionaries with items """ - _path = f"/{id_}" if id_ else "" - response = self._get(f"metadataprofile{_path}", self.ver_uri) - assert isinstance(response, list) - return response - - # POST /metadataprofile - def add_metadata_profile(self) -> Any: - """This function is not implemented + return self.assert_return( + f"metadataprofile{f'/{id_}' if id_ else ''}", + self.ver_uri, + dict if id_ else list, + ) - Raises: - NotImplementedError: Error - """ - raise NotImplementedError("This feature is not implemented yet.") + # TODO: POST /metadataprofile # PUT /metadataprofile def upd_metadata_profile(self, data: dict[str, Any]) -> dict[str, Any]: @@ -613,13 +619,13 @@ def upd_metadata_profile(self, data: dict[str, Any]) -> dict[str, Any]: return self.assert_return_put("metadataprofile", self.ver_uri, dict, data=data) # GET /config/metadataProvider - def get_metadata_provider(self) -> list[dict[str, Any]]: + def get_metadata_provider(self) -> dict[str, Any]: """Get metadata provider config (settings/metadata) Returns: - list[dict[str, Any]]: List of dictionaries with items + dict[str, Any]: Dictionary with data """ - return self.assert_return("config/metadataProvider", self.ver_uri, list) + return self.assert_return("config/metadataProvider", self.ver_uri, dict) # PUT /config/metadataprovider def upd_metadata_provider(self, data: dict[str, Any]) -> dict[str, Any]: @@ -641,34 +647,45 @@ def upd_metadata_provider(self, data: dict[str, Any]) -> dict[str, Any]: # GET /queue def get_queue( self, - page: int = PAGE, - page_size: int = PAGE_SIZE, - sort_key: LidarrSortKey = LidarrSortKey.TIMELEFT, - unknown_artists: bool = False, - include_artist: bool = False, - include_album: bool = False, + page: Optional[int] = None, + page_size: Optional[int] = None, + sort_key: Optional[LidarrSortKey] = None, + sort_dir: Optional[PyarrSortDirection] = None, + unknown_artists: Optional[bool] = None, + include_artist: Optional[bool] = None, + include_album: Optional[bool] = None, ) -> dict[str, Any]: """Get the queue of download_release Args: - page (int, optional): Which page to load. Defaults to PAGE. - page_size (int, optional): Number of items per page. Defaults to PAGE_SIZE. - sort_key (LidarrSortKey, optional): Key to sort by. Defaults to LidarrSortKey.TIMELEFT. - unknown_artists (bool, optional): Include unknown artists. Defaults to False. - include_artist (bool, optional): Include Artists. Defaults to False. - include_album (bool, optional): Include albums. Defaults to False. + page (Optional[int], optional): Page number to return. Defaults to None. + page_size (Optional[int], optional): Number of items per page. Defaults to None. + sort_key (Optional[LidarrSortKey], optional): Column to sort by. Defaults to None. + sort_dir (Optional[PyarrSortDirection], optional): Direction to sort the items. Defaults to None. + unknown_artists (Optional[bool], optional): Include unknown artists. Defaults to None. + include_artist (Optional[bool], optional): Include Artists. Defaults to None. + include_album (Optional[bool], optional): Include albums. Defaults to None. Returns: dict[str, Any]: List of dictionaries with items """ - params = { - "page": page, - "pageSize": page_size, - "sortKey": sort_key, - "unknownArtists": unknown_artists, - "includeAlbum": include_album, - "includeArtist": include_artist, - } + params: dict[str, Union[int, str, PyarrSortDirection, LidarrSortKey]] = {} + if page: + params["page"] = page + if page_size: + params["pageSize"] = page_size + if sort_key and sort_dir: + params["sortKey"] = sort_key + params["sortDirection"] = sort_dir + elif sort_key or sort_dir: + raise PyarrMissingArgument("sort_key and sort_dir must be used together") + + if unknown_artists: + params["unknownArtists"] = unknown_artists + if include_album: + params["includeAlbum"] = include_album + if include_artist: + params["includeArtist"] = include_artist return self.assert_return("queue", self.ver_uri, dict, params=params) @@ -677,28 +694,29 @@ def get_queue_details( self, artistId: Optional[int] = None, albumIds: Union[list[int], None] = None, - include_artist: bool = False, - include_album: bool = True, + include_artist: Optional[bool] = None, + include_album: Optional[bool] = None, ) -> list[dict[str, Any]]: """Get queue details for artist or album Args: artistId (Optional[int], optional): Artist database ID. Defaults to None. albumIds (Union[list[int], None], optional): Album database ID. Defaults to None. - include_artist (bool, optional): Include the artist. Defaults to False. - include_album (bool, optional): Include the album. Defaults to True. + include_artist (Optional[bool], optional): Include the artist. Defaults to None. + include_album (Optional[bool], optional): Include the album. Defaults to None. Returns: list[dict[str, Any]]: List of dictionaries with items """ - params: dict[str, Any] = { - "includeArtist": include_artist, - "includeAlbum": include_album, - } - if artistId is not None: + params: dict[str, Any] = {} + if include_artist: + params["includeArtist"] = include_artist + if include_album: + params["includeAlbum"] = include_album + if artistId: params["artistId"] = artistId - if albumIds is not None: + if albumIds: params["albumIds"] = albumIds return self.assert_return("queue/details", self.ver_uri, list, params=params) @@ -717,10 +735,10 @@ def get_release( list[dict[str, Any]]: List of dictionaries with items """ params = {} - if artistId is not None: + if artistId: params["artistId"] = artistId - if albumId is not None: - params["artistId"] = albumId + if albumId: + params["albumId"] = albumId return self.assert_return("release", self.ver_uri, list, params=params) # GET /rename @@ -737,7 +755,7 @@ def get_rename( list[dict[str, Any]]: List of dictionaries with items """ params = {"artistId": artistId} - if albumId is not None: + if albumId: params["albumId"] = albumId return self.assert_return( "rename", @@ -749,11 +767,11 @@ def get_rename( # GET /manualimport def get_manual_import( self, - downloadId: str, - artistId: int = 0, - folder: Optional[str] = None, - filterExistingFiles: bool = True, - replaceExistingFiles: bool = True, + folder: str, + downloadId: Optional[str] = None, + artistId: Optional[int] = None, + filterExistingFiles: Optional[bool] = None, + replaceExistingFiles: Optional[bool] = None, ) -> list[dict[str, Any]]: """Gets a manual import list @@ -767,13 +785,16 @@ def get_manual_import( Returns: list[dict[str, Any]]: List of dictionaries with items """ - params = { - "artistId": artistId, - "downloadId": downloadId, - "filterExistingFiles": str(filterExistingFiles), - "folder": folder if folder is not None else "", - "replaceExistingFiles": str(replaceExistingFiles), - } + params: dict[str, Union[str, int, bool]] = {"folder": folder} + if downloadId: + params["downloadId"] = downloadId + if artistId: + params["artistId"] = artistId + if filterExistingFiles: + params["filterExistingFiles"] = filterExistingFiles + if replaceExistingFiles: + params["replaceExistingFiles"] = replaceExistingFiles + return self.assert_return("manualimport", self.ver_uri, list, params=params) # PUT /manualimport @@ -793,7 +814,7 @@ def upd_manual_import(self, data: dict[str, Any]) -> dict[str, Any]: # GET /retag def get_retag( - self, artistId: int, albumId: Optional[int] = None + self, artistId: Optional[int] = None, albumId: Optional[int] = None ) -> list[dict[str, Any]]: """Get Retag @@ -804,8 +825,10 @@ def get_retag( Returns: list[dict[str, Any]]: List of dictionaries with items """ - params = {"artistId": artistId} - if albumId is not None: + params = {} + if artistId: + params["artistId"] = artistId + if albumId: params["albumId"] = albumId return self.assert_return( "retag", diff --git a/tests/fixtures/lidarr/metadataprofile.json b/tests/fixtures/lidarr/metadataprofile.json new file mode 100644 index 0000000..18067af --- /dev/null +++ b/tests/fixtures/lidarr/metadataprofile.json @@ -0,0 +1,143 @@ +{ + "name": "Standard", + "primaryAlbumTypes": [ + { + "albumType": { + "id": 2, + "name": "Single" + }, + "allowed": false + }, + { + "albumType": { + "id": 4, + "name": "Other" + }, + "allowed": false + }, + { + "albumType": { + "id": 1, + "name": "EP" + }, + "allowed": false + }, + { + "albumType": { + "id": 3, + "name": "Broadcast" + }, + "allowed": false + }, + { + "albumType": { + "id": 0, + "name": "Album" + }, + "allowed": true + } + ], + "secondaryAlbumTypes": [ + { + "albumType": { + "id": 0, + "name": "Studio" + }, + "allowed": true + }, + { + "albumType": { + "id": 3, + "name": "Spokenword" + }, + "allowed": false + }, + { + "albumType": { + "id": 2, + "name": "Soundtrack" + }, + "allowed": false + }, + { + "albumType": { + "id": 7, + "name": "Remix" + }, + "allowed": false + }, + { + "albumType": { + "id": 9, + "name": "Mixtape/Street" + }, + "allowed": false + }, + { + "albumType": { + "id": 6, + "name": "Live" + }, + "allowed": false + }, + { + "albumType": { + "id": 4, + "name": "Interview" + }, + "allowed": false + }, + { + "albumType": { + "id": 8, + "name": "DJ-mix" + }, + "allowed": false + }, + { + "albumType": { + "id": 10, + "name": "Demo" + }, + "allowed": false + }, + { + "albumType": { + "id": 1, + "name": "Compilation" + }, + "allowed": false + } + ], + "releaseStatuses": [ + { + "releaseStatus": { + "id": 3, + "name": "Pseudo-Release" + }, + "allowed": false + }, + { + "releaseStatus": { + "id": 1, + "name": "Promotion" + }, + "allowed": false + }, + { + "releaseStatus": { + "id": 0, + "name": "Official" + }, + "allowed": true + }, + { + "releaseStatus": { + "id": 2, + "name": "Bootleg" + }, + "allowed": false + } + ], + "id": 1 +} diff --git a/tests/fixtures/lidarr/metadataprofile_all.json b/tests/fixtures/lidarr/metadataprofile_all.json new file mode 100644 index 0000000..15512e0 --- /dev/null +++ b/tests/fixtures/lidarr/metadataprofile_all.json @@ -0,0 +1,145 @@ +[ + { + "name": "Standard", + "primaryAlbumTypes": [ + { + "albumType": { + "id": 2, + "name": "Single" + }, + "allowed": false + }, + { + "albumType": { + "id": 4, + "name": "Other" + }, + "allowed": false + }, + { + "albumType": { + "id": 1, + "name": "EP" + }, + "allowed": false + }, + { + "albumType": { + "id": 3, + "name": "Broadcast" + }, + "allowed": false + }, + { + "albumType": { + "id": 0, + "name": "Album" + }, + "allowed": true + } + ], + "secondaryAlbumTypes": [ + { + "albumType": { + "id": 0, + "name": "Studio" + }, + "allowed": true + }, + { + "albumType": { + "id": 3, + "name": "Spokenword" + }, + "allowed": false + }, + { + "albumType": { + "id": 2, + "name": "Soundtrack" + }, + "allowed": false + }, + { + "albumType": { + "id": 7, + "name": "Remix" + }, + "allowed": false + }, + { + "albumType": { + "id": 9, + "name": "Mixtape/Street" + }, + "allowed": false + }, + { + "albumType": { + "id": 6, + "name": "Live" + }, + "allowed": false + }, + { + "albumType": { + "id": 4, + "name": "Interview" + }, + "allowed": false + }, + { + "albumType": { + "id": 8, + "name": "DJ-mix" + }, + "allowed": false + }, + { + "albumType": { + "id": 10, + "name": "Demo" + }, + "allowed": false + }, + { + "albumType": { + "id": 1, + "name": "Compilation" + }, + "allowed": false + } + ], + "releaseStatuses": [ + { + "releaseStatus": { + "id": 3, + "name": "Pseudo-Release" + }, + "allowed": false + }, + { + "releaseStatus": { + "id": 1, + "name": "Promotion" + }, + "allowed": false + }, + { + "releaseStatus": { + "id": 0, + "name": "Official" + }, + "allowed": true + }, + { + "releaseStatus": { + "id": 2, + "name": "Bootleg" + }, + "allowed": false + } + ], + "id": 1 + } +] diff --git a/tests/fixtures/lidarr/metadataprovider.json b/tests/fixtures/lidarr/metadataprovider.json new file mode 100644 index 0000000..99ea4d5 --- /dev/null +++ b/tests/fixtures/lidarr/metadataprovider.json @@ -0,0 +1,6 @@ +{ + "metadataSource": "", + "writeAudioTags": "no", + "scrubAudioTags": false, + "id": 1 +} diff --git a/tests/fixtures/lidarr/queue.json b/tests/fixtures/lidarr/queue.json new file mode 100644 index 0000000..16f1468 --- /dev/null +++ b/tests/fixtures/lidarr/queue.json @@ -0,0 +1,8 @@ +{ + "page": 1, + "pageSize": 10, + "sortKey": "timeleft", + "sortDirection": "ascending", + "totalRecords": 0, + "records": [] +} diff --git a/tests/fixtures/lidarr/track.json b/tests/fixtures/lidarr/track.json new file mode 100644 index 0000000..b5546b1 --- /dev/null +++ b/tests/fixtures/lidarr/track.json @@ -0,0 +1,64 @@ +{ + "artistId": 3, + "foreignTrackId": "string", + "foreignRecordingId": "string", + "trackFileId": 0, + "albumId": 12, + "explicit": false, + "absoluteTrackNumber": 1, + "trackNumber": "1", + "title": "string", + "duration": 442466, + "mediumNumber": 1, + "hasFile": false, + "artist": { + "artistMetadataId": 6, + "status": "ended", + "ended": true, + "artistName": "string", + "foreignArtistId": "string", + "tadbId": 0, + "discogsId": 0, + "overview": "string", + "artistType": "Person", + "disambiguation": "", + "links": [ + { + "url": "string", + "coverType": "poster", + "extension": ".jpg" + } + ], + "path": "string", + "qualityProfileId": 1, + "metadataProfileId": 2, + "monitored": true, + "monitorNewItems": "all", + "genres": [ + "string" + ], + "cleanName": "string", + "sortName": "string", + "tags": [], + "added": "2022-03-06T19:32:33Z", + "ratings": { + "votes": 9, + "value": 8.4 + }, + "statistics": { + "albumCount": 0, + "trackFileCount": 0, + "trackCount": 0, + "totalTrackCount": 0, + "sizeOnDisk": 0, + "percentOfTracks": 0 + }, + "id": 3 + }, + "ratings": { + "votes": 0, + "value": 0 + }, + "grabbed": false, + "id": 6009 +} diff --git a/tests/fixtures/lidarr/track_all.json b/tests/fixtures/lidarr/track_all.json new file mode 100644 index 0000000..894803b --- /dev/null +++ b/tests/fixtures/lidarr/track_all.json @@ -0,0 +1,82 @@ +[ + { + "artistId": 3, + "foreignTrackId": "0b804321-1b87-3f5e-8f2b-b81026c8707a", + "foreignRecordingId": "5ed4a636-2e39-446c-8895-9a1166744b2f", + "trackFileId": 0, + "albumId": 12, + "explicit": false, + "absoluteTrackNumber": 1, + "trackNumber": "1", + "title": "Bat Out of Hell (single version)", + "duration": 442466, + "mediumNumber": 1, + "hasFile": false, + "ratings": { + "votes": 0, + "value": 0 + }, + "grabbed": false, + "id": 6009 + }, + { + "artistId": 3, + "foreignTrackId": "e755ed89-eda8-3b83-86af-0f37fb0aebab", + "foreignRecordingId": "0604a84a-6611-49b9-91b9-d426f4212609", + "trackFileId": 0, + "albumId": 12, + "explicit": false, + "absoluteTrackNumber": 2, + "trackNumber": "2", + "title": "Read 'em and Weep", + "duration": 327560, + "mediumNumber": 1, + "hasFile": false, + "ratings": { + "votes": 0, + "value": 0 + }, + "grabbed": false, + "id": 6010 + }, + { + "artistId": 3, + "foreignTrackId": "0e57afef-a6bf-3770-89e9-4e0e691c6bdf", + "foreignRecordingId": "0140c7a2-edac-41c7-9747-7907d5a32d39", + "trackFileId": 0, + "albumId": 12, + "explicit": false, + "absoluteTrackNumber": 3, + "trackNumber": "3", + "title": "Lost Boys and Golden Girls", + "duration": 278866, + "mediumNumber": 1, + "hasFile": false, + "ratings": { + "votes": 0, + "value": 0 + }, + "grabbed": false, + "id": 6011 + }, + { + "artistId": 3, + "foreignTrackId": "8dbed555-a6de-3887-bebd-088f03498da3", + "foreignRecordingId": "83d088a5-2f6f-481e-9542-38d1be1c385f", + "trackFileId": 0, + "albumId": 12, + "explicit": false, + "absoluteTrackNumber": 4, + "trackNumber": "4", + "title": "Rock and Roll Dreams Come Through", + "duration": 389200, + "mediumNumber": 1, + "hasFile": false, + "ratings": { + "votes": 0, + "value": 0 + }, + "grabbed": false, + "id": 6012 + } +] diff --git a/tests/fixtures/lidarr/track_error.json b/tests/fixtures/lidarr/track_error.json new file mode 100644 index 0000000..98a65f4 --- /dev/null +++ b/tests/fixtures/lidarr/track_error.json @@ -0,0 +1,4 @@ +{ + "message": "BadRequest: One of artistId, albumId, albumReleaseId or trackIds must be provided", + "content": "One of artistId, albumId, albumReleaseId or trackIds must be provided" +} diff --git a/tests/test_lidarr.py b/tests/test_lidarr.py index bd8a31f..d91a7ad 100644 --- a/tests/test_lidarr.py +++ b/tests/test_lidarr.py @@ -470,4 +470,498 @@ def test_get_wanted(responses, lidarr_client): assert False -# TODO: Get_parse +# TODO: confirm fixture +@pytest.mark.usefixtures +def test_get_parse(responses, lidarr_client): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/parse?title=test", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_parse(title="test") + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_get_tracks(responses, lidarr_client): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/track?artistId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/track_all.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_tracks(artistId=1) + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/track?albumId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/track_all.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_tracks(albumId=1) + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/track?albumReleaseId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/track_all.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_tracks(albumReleaseId=1) + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/track?trackIds=1&trackIds=2&trackIds=3", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/track_all.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_tracks(trackIds=[1, 2, 3]) + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/track/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/track.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_tracks(trackIds=1) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = lidarr_client.get_tracks() + assert False + + +# TODO: confirm trackfile fixtures +@pytest.mark.usefixtures +def test_get_track_file(responses, lidarr_client): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/trackfile?artistId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/track_all.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_track_file(artistId=1) + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/trackfile?albumId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/track_all.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_track_file(albumId=1) + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/trackfile?trackFileIds=1&trackFileIds=2&trackFileIds=3", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/track_all.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_track_file(trackFileIds=[1, 2, 3]) + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/trackfile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/track.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_track_file(trackFileIds=1) + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/trackfile?unmapped=True", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/track_all.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_track_file(unmapped=True) + assert isinstance(data, list) + + with contextlib.suppress(PyarrMissingArgument): + data = lidarr_client.get_track_file() + assert False + + +@pytest.mark.usefixtures +def test_upd_track_file(responses, lidarr_client): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/trackfile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/track.json"), + status=200, + match_querystring=True, + ) + track = lidarr_client.get_track_file(trackFileIds=1) + + responses.add( + responses.PUT, + "https://127.0.0.1:8686/api/v1/trackfile", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/track.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.upd_track_file(data=track) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_delete_track_file(responses, lidarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8686/api/v1/trackfile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.delete_track_file(1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_metadata_profile(responses, lidarr_client): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/metadataprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/metadataprofile_all.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_metadata_profile() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/metadataprofile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/metadataprofile.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_metadata_profile(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_upd_metadata_profile(responses, lidarr_client): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/metadataprofile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/metadataprofile.json"), + status=200, + match_querystring=True, + ) + profile = lidarr_client.get_metadata_profile(id_=1) + + responses.add( + responses.PUT, + "https://127.0.0.1:8686/api/v1/metadataprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/metadataprofile.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.upd_metadata_profile(data=profile) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_metadata_provider(responses, lidarr_client): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/config/metadataProvider", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/metadataprovider.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_metadata_provider() + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_upd_metadata_provider(responses, lidarr_client): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/config/metadataProvider", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/metadataprovider.json"), + status=200, + match_querystring=True, + ) + provider = lidarr_client.get_metadata_provider() + + responses.add( + responses.PUT, + "https://127.0.0.1:8686/api/v1/config/metadataProvider", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/metadataprovider.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.upd_metadata_provider(data=provider) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_queue(responses, lidarr_client): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/queue", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/queue.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_queue() + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/queue?page=1&pageSize=10&sortKey=timeleft&sortDirection=default", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/queue.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_queue( + page=1, + page_size=10, + sort_key=LidarrSortKey.TIMELEFT, + sort_dir=PyarrSortDirection.DEFAULT, + ) + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/queue?unknownArtists=True&includeAlbum=True&includeArtist=True", + headers={"Content-Type": "application/json"}, + body=load_fixture("lidarr/queue.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_queue( + unknown_artists=True, include_album=True, include_artist=True + ) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = lidarr_client.get_queue(sort_key=LidarrSortKey.ARTIST_ID) + assert False + + with contextlib.suppress(PyarrMissingArgument): + data = lidarr_client.get_queue(sort_dir=PyarrSortDirection.ASC) + assert False + + +# TODO: get correct fixture +@pytest.mark.usefixtures +def test_get_queue_details(responses, lidarr_client): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/queue/details", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_queue_details() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/queue/details?includeArtist=True&includeAlbum=True&artistId=1&albumIds=1&albumIds=2", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_queue_details( + include_artist=True, include_album=True, artistId=1, albumIds=[1, 2] + ) + assert isinstance(data, list) + + +# TODO: get correct fixture +@pytest.mark.usefixtures +def test_get_release(responses, lidarr_client): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/release", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_release() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/release?artistId=1&albumId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_release(artistId=1, albumId=1) + assert isinstance(data, list) + + +# TODO: get correct fixture +@pytest.mark.usefixtures +def test_get_rename(responses, lidarr_client): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/rename?artistId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_rename(artistId=1) + assert isinstance(data, list) + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/rename?artistId=1&albumId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_rename(artistId=1, albumId=1) + assert isinstance(data, list) + + with contextlib.suppress(TypeError): + data = lidarr_client.get_rename() + assert False + + +# TODO: get correct fixture +@pytest.mark.usefixtures +def test_get_manual_import(responses, lidarr_client): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/manualimport?folder=/music/", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_manual_import(folder="/music/") + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/manualimport?folder=/music/&downloadId=1&artistId=1&filterExistingFiles=True&replaceExistingFiles=True", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_manual_import( + folder="/music/", + downloadId=1, + artistId=1, + filterExistingFiles=True, + replaceExistingFiles=True, + ) + assert isinstance(data, list) + + +# TODO: get correct fixture, confirm update returns dict +@pytest.mark.usefixtures +def test_upd_manual_import(responses, lidarr_client): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/manualimport?folder=/music/", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + man_import = lidarr_client.get_manual_import(folder="/music/") + + responses.add( + responses.PUT, + "https://127.0.0.1:8686/api/v1/manualimport", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_dict.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.upd_manual_import(data=man_import) + assert isinstance(data, dict) + + +# TODO: get correct fixture +@pytest.mark.usefixtures +def test_get_manual_import(responses, lidarr_client): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/retag", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_retag() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/retag?artistId=1&albumId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + data = lidarr_client.get_retag(artistId=1, albumId=1) + assert isinstance(data, list) From f913151c10af52ab2d0749816a86a56e47bde6c0 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Tue, 20 Sep 2022 15:35:42 +0000 Subject: [PATCH 34/53] tests: added all lidarr tests --- pyarr/lidarr.py | 6 +- pyarr/models/readarr.py | 4 + pyarr/readarr.py | 353 +++++--- tests/fixtures/readarr/author.json | 80 ++ tests/fixtures/readarr/author_all.json | 82 ++ tests/fixtures/readarr/book.json | 96 ++ tests/fixtures/readarr/book_all.json | 98 ++ tests/fixtures/readarr/command.json | 30 + tests/fixtures/readarr/command_all.json | 260 ++++++ tests/fixtures/readarr/delayprofile.json | 10 + tests/fixtures/readarr/delayprofile_all.json | 12 + tests/fixtures/readarr/logfile_all.json | 16 + tests/fixtures/readarr/lookup.json | 146 +++ tests/fixtures/readarr/lookup_author.json | 89 ++ tests/fixtures/readarr/lookup_book.json | 43 + tests/fixtures/readarr/metadataprofile.json | 10 + .../fixtures/readarr/metadataprofile_all.json | 23 + tests/fixtures/readarr/metadataprovider.json | 8 + tests/fixtures/readarr/qualityprofile.json | 162 ++++ tests/fixtures/readarr/queue.json | 8 + tests/fixtures/readarr/releaseprofile.json | 15 + .../fixtures/readarr/releaseprofile_all.json | 17 + tests/fixtures/readarr/rootfolder.json | 17 + tests/fixtures/readarr/rootfolder_all.json | 53 ++ tests/fixtures/readarr/wanted_cutoff.json | 8 + tests/fixtures/readarr/wanted_missing.json | 57 ++ tests/test_readarr.py | 842 ++++++++++++++++++ 27 files changed, 2401 insertions(+), 144 deletions(-) create mode 100644 tests/fixtures/readarr/author.json create mode 100644 tests/fixtures/readarr/author_all.json create mode 100644 tests/fixtures/readarr/book.json create mode 100644 tests/fixtures/readarr/book_all.json create mode 100644 tests/fixtures/readarr/command.json create mode 100644 tests/fixtures/readarr/command_all.json create mode 100644 tests/fixtures/readarr/delayprofile.json create mode 100644 tests/fixtures/readarr/delayprofile_all.json create mode 100644 tests/fixtures/readarr/logfile_all.json create mode 100644 tests/fixtures/readarr/lookup.json create mode 100644 tests/fixtures/readarr/lookup_author.json create mode 100644 tests/fixtures/readarr/lookup_book.json create mode 100644 tests/fixtures/readarr/metadataprofile.json create mode 100644 tests/fixtures/readarr/metadataprofile_all.json create mode 100644 tests/fixtures/readarr/metadataprovider.json create mode 100644 tests/fixtures/readarr/qualityprofile.json create mode 100644 tests/fixtures/readarr/queue.json create mode 100644 tests/fixtures/readarr/releaseprofile.json create mode 100644 tests/fixtures/readarr/releaseprofile_all.json create mode 100644 tests/fixtures/readarr/rootfolder.json create mode 100644 tests/fixtures/readarr/rootfolder_all.json create mode 100644 tests/fixtures/readarr/wanted_cutoff.json create mode 100644 tests/fixtures/readarr/wanted_missing.json create mode 100644 tests/test_readarr.py diff --git a/pyarr/lidarr.py b/pyarr/lidarr.py index b5c9f8a..a42de92 100644 --- a/pyarr/lidarr.py +++ b/pyarr/lidarr.py @@ -35,7 +35,7 @@ def add_root_folder( metadataProfile: int, defaultTags: list[int] = None, ) -> dict[str, Any]: - """Adds a root folder + """Add a new location to store files Args: name (str): Name for this root folder @@ -47,10 +47,8 @@ def add_root_folder( Returns: dict[str, Any]: Dictonary with added record """ - if defaultTags is None: - defaultTags = [] folder_json = { - "defaultTags": defaultTags, + "defaultTags": defaultTags or [], "defaultQualityProfileId": qualityProfile, "defaultMetadataProfileId": metadataProfile, "name": name, diff --git a/pyarr/models/readarr.py b/pyarr/models/readarr.py index 0f032b9..3e6ea42 100644 --- a/pyarr/models/readarr.py +++ b/pyarr/models/readarr.py @@ -15,7 +15,11 @@ class ReadarrCommands(str, Enum): REFRESH_AUTHOR = "RefreshAuthor" REFRESH_BOOK = "RefreshBook" RENAME_AUTHOR = "RenameAuthor" + RENAME_FILES = "RenameFiles" RESCAN_FOLDERS = "RescanFolders" + RSS_SYNC = "RssSync" + BACKUP = "Backup" + MISSING_BOOK_SEARCH = "MissingBookSearch" @enum_tools.documentation.document_enum diff --git a/pyarr/readarr.py b/pyarr/readarr.py index 4ca5886..71cf0af 100644 --- a/pyarr/readarr.py +++ b/pyarr/readarr.py @@ -3,8 +3,7 @@ from requests import Response from .base import BaseArrAPI -from .const import PAGE, PAGE_SIZE -from .exceptions import PyarrMissingProfile +from .exceptions import PyarrMissingArgument, PyarrMissingProfile from .models.common import PyarrSortDirection from .models.readarr import ( ReadarrAuthorMonitor, @@ -28,9 +27,58 @@ def __init__(self, host_url: str, api_key: str): ver_uri = "/v1" super().__init__(host_url, api_key, ver_uri) + def lookup(self, term: str) -> list[dict[str, Any]]: + """Search for an author / book + + Note: + You can also search using the Goodreads ID, work, or author, the ISBN or ASIN:: + + readarr.lookup(term="edition:656") + readarr.lookup(term="work:4912789") + readarr.lookup(term="author:128382") + readarr.lookup(term="isbn:067003469X") + readarr.lookup(term="asin:B00JCDK5ME") + + Args: + term (str): Search term + + Returns: + list[dict[str, Any]]: List of dictionaries with items + """ + return self.assert_return("search", self.ver_uri, list, params={"term": term}) + + # GET /book/lookup + def lookup_book(self, term: str) -> list[dict[str, Any]]: + """Searches for new books using a term, goodreads ID, isbn or asin. + + Args: + term (str): Search term:: + + goodreads:656 + isbn:067003469X + asin:B00JCDK5ME + + Returns: + list[dict[str, Any]]: List of dictionaries with items + """ + return self.assert_return("book/lookup", self.ver_uri, list, {"term": term}) + + # GET /author/lookup/ + def lookup_author(self, term: str) -> list[dict[str, Any]]: + """Searches for new authors using a term + + Args: + term (str): Author name or book + + Returns: + list[dict[str, Any]]: List of dictionaries with items + """ + params = {"term": term} + return self.assert_return("author/lookup", self.ver_uri, list, params) + def _book_json( self, - db_id: str, + id_: str, book_id_type: ReadarrBookTypes, root_dir: str, quality_profile_id: Optional[int] = None, @@ -43,7 +91,7 @@ def _book_json( """Constructs the JSON required to add a new book to Readarr Args: - db_id (str): Book ID from Goodreads, ISBN or ASIN + id_ (str): Book ID from Goodreads, ISBN or ASIN book_id_type (ReadarrBookTypes): Type of book ID root_dir (str): Root directory for books quality_profile_id (Optional[int], optional): Quality profile ID. Defaults to None. @@ -61,21 +109,24 @@ def _book_json( """ if quality_profile_id is None: try: - quality_profiles = self.get_quality_profile()[0]["id"] - quality_profile_id = quality_profiles[0]["id"] + quality_profile_id = self.get_quality_profile()[0]["id"] except IndexError as exception: raise PyarrMissingProfile( "There is no Quality Profile setup" ) from exception if metadata_profile_id is None: try: - metadata_profile_id = self.get_metadata_profile()[0]["id"] + metadata_profile = self.get_metadata_profile() + if isinstance(metadata_profile, list): + metadata_profile_id = metadata_profile[0]["id"] + else: + metadata_profile_id = metadata_profile["id"] except IndexError as exception: raise PyarrMissingProfile( "There is no Metadata Profile setup" ) from exception - book = self.lookup_book(f"{book_id_type}:{db_id}")[0] - + book = self.lookup_book(f"{book_id_type}:{id_}")[0] + book["author"] = {} book["author"]["metadataProfileId"] = metadata_profile_id book["author"]["qualityProfileId"] = quality_profile_id book["author"]["rootFolderPath"] = root_dir @@ -125,7 +176,11 @@ def _author_json( ) from exception if metadata_profile_id is None: try: - metadata_profile_id = self.get_metadata_profile()[0]["id"] + metadata_profile = self.get_metadata_profile() + if isinstance(metadata_profile, list): + metadata_profile_id = metadata_profile[0]["id"] + else: + metadata_profile_id = metadata_profile["id"] except IndexError as exception: raise PyarrMissingProfile( "There is no Metadata Profile setup" @@ -147,29 +202,39 @@ def _author_json( # COMMAND # GET /command/:id - def get_command(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_command( + self, id_: Optional[int] = None + ) -> Union[list[dict[str, Any]], dict[str, Any]]: """Queries the status of a previously started command, or all currently started commands. Args: id_ (Optional[int], optional): Database ID of the command. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items """ path = f"command/{id_}" if id_ else "command" - return self.assert_return(path, self.ver_uri, list) + return self.assert_return(path, self.ver_uri, dict if id_ else list) # POST /command - # TODO: confirm return type & Kwargs - def post_command(self, name: ReadarrCommands, **kwargs) -> Any: + def post_command(self, name: ReadarrCommands, **kwargs) -> dict[str, Any]: """Performs any of the predetermined Readarr command routines Args: name (ReadarrCommands): Command name that should be executed **kwargs: Additional parameters for specific commands + Note: + Required Kwargs: + AuthorSearch: authorId (int) + BookSearch: bookId (int) + RefreshAuthor: authorId (int, optional) + RefreshBook: bookId (int, optional) + RenameAuthor: authorIds (list[int], optional) + RenameFiles: authorId (int, optional) + Returns: - _type_: _description_ + dict[str, Any]: Dictionary of command run """ data = { "name": name, @@ -182,58 +247,67 @@ def post_command(self, name: ReadarrCommands, **kwargs) -> Any: # GET /wanted/missing def get_missing( self, - sort_key: ReadarrSortKeys = ReadarrSortKeys.BOOK_ID, - page: int = PAGE, - page_size: int = PAGE_SIZE, - sort_dir: PyarrSortDirection = PyarrSortDirection.ASC, + page: Optional[int] = None, + page_size: Optional[int] = None, + sort_key: Optional[ReadarrSortKeys] = None, + sort_dir: Optional[PyarrSortDirection] = None, ) -> dict[str, Any]: """Gets missing episode (episodes without files) Args: - sort_key (ReadarrSortKeys, optional): id, title, ratings, bookid, or quality. (Others do not apply). Defaults to ReadarrSortKeys.BOOK_ID. - page (int, optional): Page number to return. Defaults to PAGE. - page_size (int, optional): Number of items per page. Defaults to PAGE_SIZE. - sort_dir (PyarrSortDirection, optional): Direction to sort the items. Defaults to PyarrSortDirection.ASC. + page (int, optional): Page number to return. Defaults to None. + page_size (int, optional): Number of items per page. Defaults to None. + sort_key (ReadarrSortKeys, optional): id, title, ratings, bookid, or quality. (Others do not apply). Defaults to None. + sort_dir (PyarrSortDirection, optional): Direction to sort the items. Defaults to None, Returns: dict[str, Any]: List of dictionaries with items """ - params = { - "sortKey": sort_key, - "page": page, - "pageSize": page_size, - "sortDir": sort_dir, - } + params: dict[str, Union[int, ReadarrSortKeys, PyarrSortDirection, bool]] = {} + if page: + params["page"] = page + if page_size: + params["pageSize"] = page_size + if sort_key and sort_dir: + params["sortKey"] = sort_key + params["sortDirection"] = sort_dir + elif sort_key or sort_dir: + raise PyarrMissingArgument("sort_key and sort_dir must be used together") return self.assert_return("wanted/missing", self.ver_uri, dict, params) # GET /wanted/cutoff def get_cutoff( self, - sort_key: ReadarrSortKeys = ReadarrSortKeys.BOOK_ID, - page: int = PAGE, - page_size: int = PAGE_SIZE, - sort_dir: PyarrSortDirection = PyarrSortDirection.DESC, - monitored: bool = True, + page: Optional[int] = None, + page_size: Optional[int] = None, + sort_key: Optional[ReadarrSortKeys] = None, + sort_dir: Optional[PyarrSortDirection] = None, + monitored: bool = None, ) -> dict[str, Any]: """Get wanted items where the cutoff is unmet Args: - sort_key (ReadarrSortKeys, optional): id, title, ratings, bookid, or quality". (others do not apply). Defaults to ReadarrSortKeys.BOOK_ID. - page (int, optional): Page number to return. Defaults to PAGE. - page_size (int, optional): Number of items per page. Defaults to PAGE_SIZE. - sort_dir (PyarrSortDirection, optional): Direction to sort. Defaults to PyarrSortDirection.DESC. - monitored (bool, optional): Search for monitored only. Defaults to True. + page (int, optional): Page number to return. Defaults to None. + page_size (int, optional): Number of items per page. Defaults to None. + sort_key (ReadarrSortKeys, optional): id, title, ratings, bookid, or quality". (others do not apply). Defaults to None. + sort_dir (PyarrSortDirection, optional): Direction to sort. Defaults to None. + monitored (bool, optional): Search for monitored only. Defaults to None. Returns: dict[str, Any]: List of dictionaries with items """ - params = { - "sortKey": sort_key, - "page": page, - "pageSize": page_size, - "sortDir": sort_dir, - "monitored": monitored, - } + params: dict[str, Union[int, ReadarrSortKeys, PyarrSortDirection, bool]] = {} + if page: + params["page"] = page + if page_size: + params["pageSize"] = page_size + if sort_key and sort_dir: + params["sortKey"] = sort_key + params["sortDirection"] = sort_dir + elif sort_key or sort_dir: + raise PyarrMissingArgument("sort_key and sort_dir must be used together") + if monitored: + params["monitored"] = monitored return self.assert_return("wanted/cutoff", self.ver_uri, dict, params) ## QUEUE @@ -241,82 +315,98 @@ def get_cutoff( # GET /queue def get_queue( self, - page: int = PAGE, - page_size: int = PAGE_SIZE, - sort_dir: PyarrSortDirection = PyarrSortDirection.ASC, - sort_key: ReadarrSortKeys = ReadarrSortKeys.TIMELEFT, - unknown_authors: bool = False, - include_author: bool = False, - include_book: bool = False, + page: Optional[int] = None, + page_size: Optional[int] = None, + sort_key: Optional[ReadarrSortKeys] = None, + sort_dir: Optional[PyarrSortDirection] = None, + unknown_authors: Optional[bool] = None, + include_author: Optional[bool] = None, + include_book: Optional[bool] = None, ) -> dict[str, Any]: """Get current download information Args: - page (int, optional): Page number. Defaults to PAGE. - page_size (int, optional): Number of items per page. Defaults to PAGE_SIZE. - sort_dir (PyarrSortDirection, optional): Direction to sort. Defaults to PyarrSortDirection.ASC. - sort_key (ReadarrSortKeys, optional): Field to sort by. Defaults to ReadarrSortKeys.TIMELEFT. - unknown_authors (bool, optional): Include items with an unknown author. Defaults to False. - include_author (bool, optional): Include the author. Defaults to False. - include_book (bool, optional): Include the book. Defaults to False. + page (int, optional): Page number. Defaults to None. + page_size (int, optional): Number of items per page. Defaults to None. + sort_key (ReadarrSortKeys, optional): Field to sort by. Defaults to None. + sort_dir (PyarrSortDirection, optional): Direction to sort. Defaults to None. + unknown_authors (bool, optional): Include items with an unknown author. Defaults to None. + include_author (bool, optional): Include the author. Defaults to None. + include_book (bool, optional): Include the book. Defaults to None. Returns: dict[str, Any]: List of dictionaries with items """ - params = { - "sortKey": sort_key, - "page": page, - "pageSize": page_size, - "sortDirection": sort_dir, - "includeUnknownAuthorItems": unknown_authors, - "includeAuthor": include_author, - "includeBook": include_book, - } + params: dict[str, Union[int, ReadarrSortKeys, PyarrSortDirection, bool]] = {} + if page: + params["page"] = page + if page_size: + params["pageSize"] = page_size + if sort_key and sort_dir: + params["sortKey"] = sort_key + params["sortDirection"] = sort_dir + elif sort_key or sort_dir: + raise PyarrMissingArgument("sort_key and sort_dir must be used together") + if unknown_authors: + params["includeUnknownAuthorItems"] = unknown_authors + if include_author: + params["includeAuthor"] = include_author + if include_book: + params["includeBook"] = include_book + return self.assert_return("queue", self.ver_uri, dict, params) # GET /metadataprofile/{id} - def get_metadata_profile(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_metadata_profile( + self, id_: Optional[int] = None + ) -> Union[list[dict[str, Any]], dict[str, Any]]: """Gets all metadata profiles or specific one with ID Args: id_ (Optional[int], optional): Metadata profile id from database. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items """ path = f"metadataprofile/{id_}" if id_ else "metadataprofile" - return self.assert_return(path, self.ver_uri, list) + return self.assert_return(path, self.ver_uri, dict if id_ else list) # GET /delayprofile/{id} - def get_delay_profile(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_delay_profile( + self, id_: Optional[int] = None + ) -> Union[list[dict[str, Any]], dict[str, Any]]: """Gets all delay profiles or specific one with ID Args: id_ (Optional[int], optional): Metadata profile ID from database. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items """ path = f"delayprofile/{id_}" if id_ else "delayprofile" - return self.assert_return(path, self.ver_uri, list) + return self.assert_return(path, self.ver_uri, dict if id_ else list) # GET /releaseprofile/{id} - def get_release_profile(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_release_profile( + self, id_: Optional[int] = None + ) -> Union[list[dict[str, Any]], dict[str, Any]]: """Gets all release profiles or specific one with ID Args: id_ (Optional[int], optional): Release profile ID from database. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items """ path = f"releaseprofile/{id_}" if id_ else "releaseprofile" - return self.assert_return(path, self.ver_uri, list) + return self.assert_return(path, self.ver_uri, dict if id_ else list) ## BOOKS # GET /book and /book/{id} - def get_book(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_book( + self, id_: Optional[int] = None + ) -> Union[list[dict[str, Any]], dict[str, Any]]: """Returns all books in your collection or the book with the matching book ID if one is found. @@ -324,31 +414,15 @@ def get_book(self, id_: Optional[int] = None) -> list[dict[str, Any]]: id_ (Optional[int], optional): Database id for book. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items """ path = f"book/{id_}" if id_ else "book" - return self.assert_return(path, self.ver_uri, list) - - # GET /book/lookup - def lookup_book(self, term: str) -> list[dict[str, Any]]: - """Searches for new books using a term, goodreads ID, isbn or asin. - - Args: - term (str): Search term:: - - goodreads:656 - isbn:067003469X - asin:B00JCDK5ME - - Returns: - list[dict[str, Any]]: List of dictionaries with items - """ - return self.assert_return("book/lookup", self.ver_uri, list, {"term": term}) + return self.assert_return(path, self.ver_uri, dict if id_ else list) # POST /book def add_book( self, - db_id: str, + id_: str, book_id_type: ReadarrBookTypes, root_dir: str, quality_profile_id: Optional[int] = None, @@ -361,7 +435,7 @@ def add_book( """Adds a new book and its associated author (if not already added) Args: - db_id (int): goodreads, isbn, asin ID for the book + id_ (str): goodreads, isbn, asin ID for the book book_id_type (str): goodreads / isbn / asin root_dir (str): Directory for book to be stored quality_profile_id (int, optional): quality profile id. Defaults to 1. @@ -376,7 +450,7 @@ def add_book( """ book_json = self._book_json( - db_id, + id_, book_id_type, root_dir, quality_profile_id, @@ -406,56 +480,50 @@ def upd_book(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: # DELETE /book/{id} def del_book( - self, id_: int, delete_files: bool = False, import_list_exclusion: bool = True + self, + id_: int, + delete_files: Optional[bool] = None, + import_list_exclusion: Optional[bool] = None, ) -> Union[Response, dict[str, Any], dict[Any, Any]]: """Delete the book with the given ID Args: id_ (int): Database ID for book - delete_files (bool, optional): If true book folder and files will be deleted. Defaults to False. - import_list_exclusion (bool, optional): Add an exclusion so book doesn't get re-added. Defaults to True. + delete_files (bool, optional): If true book folder and files will be deleted. Defaults to None. + import_list_exclusion (bool, optional): Add an exclusion so book doesn't get re-added. Defaults to None. Returns: Response: HTTP Response """ - params = { - "deleteFiles": delete_files, - "addImportListExclusion": import_list_exclusion, - } + params: dict[str, bool] = {} + if delete_files: + params["deleteFiles"] = delete_files + if import_list_exclusion: + params["addImportListExclusion"] = import_list_exclusion + return self._delete(f"book/{id_}", self.ver_uri, params=params) # AUTHOR # GET /author and /author/{id} - def get_author(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_author( + self, id_: Optional[int] = None + ) -> Union[list[dict[str, Any]], dict[str, Any]]: """Returns all authors in your collection or the author with the matching ID if one is found. Args: id_ (Optional[int], optional): Database ID for author. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items """ path = f"author/{id_}" if id_ else "author" - return self.assert_return(path, self.ver_uri, list) - - # GET /author/lookup/ - def lookup_author(self, term: str) -> list[dict[str, Any]]: - """Searches for new authors using a term - - Args: - term (str): Author name or book - - Returns: - list[dict[str, Any]]: List of dictionaries with items - """ - params = {"term": term} - return self.assert_return("author/lookup", self.ver_uri, list, params) + return self.assert_return(path, self.ver_uri, dict if id_ else list) # POST /author/ def add_author( self, - search_term: str, + term: str, root_dir: str, quality_profile_id: Optional[int] = None, metadata_profile_id: Optional[int] = None, @@ -466,7 +534,7 @@ def add_author( """Adds an authorbased on search term, must be author name or book by goodreads / isbn / asin ID Args: - search_term (str): Author name or Author book by ID + term (str): Author name or Author book by ID root_dir (str): Directory for book to be stored quality_profile_id (int, optional): Quality profile id. Defaults to 1. metadata_profile_id (int, optional): Metadata profile id. Defaults to 0. @@ -478,7 +546,7 @@ def add_author( dict[str, Any]: Dictonary of added record """ author_json = self._author_json( - search_term, + term, root_dir, quality_profile_id, metadata_profile_id, @@ -506,22 +574,27 @@ def upd_author(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: # DELETE /author/{id} def del_author( - self, id_: int, delete_files: bool = False, import_list_exclusion: bool = True + self, + id_: int, + delete_files: Optional[bool] = None, + import_list_exclusion: Optional[bool] = None, ) -> Union[Response, dict[str, Any], dict[Any, Any]]: """Delete the author with the given ID Args: id_ (int): Database ID for author - delete_files (bool, optional): If true author folder and files will be deleted. Defaults to False. - import_list_exclusion (bool, optional): Add an exclusion so author doesn't get re-added. Defaults to True. + delete_files (bool, optional): If true author folder and files will be deleted. Defaults to None. + import_list_exclusion (bool, optional): Add an exclusion so author doesn't get re-added. Defaults to None. Returns: Response: HTTP Response """ - params = { - "deleteFiles": delete_files, - "addImportListExclusion": import_list_exclusion, - } + params: dict[str, bool] = {} + if delete_files: + params["deleteFiles"] = delete_files + if import_list_exclusion: + params["addImportListExclusion"] = import_list_exclusion + return self._delete(f"author/{id_}", self.ver_uri, params=params) ## LOG @@ -541,27 +614,27 @@ def get_log_file(self) -> list[dict[str, Any]]: def add_root_folder( self, name: str, - directory: str, + path: str, is_calibre_lib: bool = False, calibre_host: str = "localhost", calibre_port: int = 8080, use_ssl: bool = False, output_profile: str = "default", - default_tags: Union[list, None] = None, + default_tags: Optional[list] = None, default_quality_profile_id: int = 1, default_metadata_profile_id: int = 1, ) -> dict[str, Any]: - """Add a new root directory to the Readarr Server + """Add a new location to store files Args: name (str): Friendly Name for folder - directory (str): Directory to use e.g. /books/ + path (str): Location the files should be stored is_calibre_lib (bool, optional): Use Calibre Content Server. Defaults to False. calibre_host (str, optional): Calibre Content Server address. Defaults to "localhost". calibre_port (int, optional): Calibre Content Server port. Defaults to 8080. use_ssl (bool, optional): Calibre Content Server SSL. Defaults to False. output_profile (str, optional): Books to monitor. Defaults to "default". - default_tags (Union[list, None], optional): List of tags to apply. Defaults to None. + default_tags (Optional[list], optional): List of tags to apply. Defaults to None. default_quality_profile_id (int, optional): Quality Profile. Defaults to 1. default_metadata_profile_id (int, optional): Metadata Profile. Defaults to 1. @@ -578,7 +651,7 @@ def add_root_folder( "defaultQualityProfileId": default_quality_profile_id, "defaultMetadataProfileId": default_metadata_profile_id, "name": name, - "path": directory, + "path": path, } return self.assert_return_post( "rootFolder", self.ver_uri, dict, data=folder_json diff --git a/tests/fixtures/readarr/author.json b/tests/fixtures/readarr/author.json new file mode 100644 index 0000000..73fab41 --- /dev/null +++ b/tests/fixtures/readarr/author.json @@ -0,0 +1,80 @@ +{ + "authorMetadataId": 1, + "status": "continuing", + "ended": false, + "authorName": "string", + "authorNameLastFirst": "string", + "foreignAuthorId": "string", + "titleSlug": "string", + "overview": "", + "links": [ + { + "url": "string", + "name": "Goodreads" + } + ], + "lastBook": { + "authorMetadataId": 1, + "foreignBookId": "string", + "titleSlug": "string", + "title": "string", + "releaseDate": "2020-11-22T00:00:00Z", + "links": [ + { + "url": "string", + "name": "Goodreads Editions" + } + ], + "genres": [], + "relatedBooks": [ + 123456 + ], + "ratings": { + "votes": 98, + "value": 4.54, + "popularity": 444.92 + }, + "cleanTitle": "", + "monitored": true, + "anyEditionOk": true, + "lastInfoSync": "2022-09-16T11:12:53Z", + "added": "2021-11-14T21:41:33Z", + "addOptions": { + "addType": "manual", + "searchForNewBook": false + }, + "authorMetadata": null, + "author": null, + "editions": null, + "bookFiles": null, + "seriesLinks": null, + "id": 392 + }, + "images": [], + "path": "string", + "qualityProfileId": 1, + "metadataProfileId": 1, + "monitored": false, + "monitorNewItems": "all", + "rootFolderPath": "string", + "genres": [], + "cleanName": "string", + "sortName": "string", + "sortNameLastFirst": "string", + "tags": [], + "added": "2021-08-15T19:50:13Z", + "ratings": { + "votes": 110, + "value": 4.57, + "popularity": 502.70000000000005 + }, + "statistics": { + "bookFileCount": 0, + "bookCount": 1, + "availableBookCount": 0, + "totalBookCount": 1, + "sizeOnDisk": 0, + "percentOfBooks": 0 + }, + "id": 1 +} diff --git a/tests/fixtures/readarr/author_all.json b/tests/fixtures/readarr/author_all.json new file mode 100644 index 0000000..5aa7932 --- /dev/null +++ b/tests/fixtures/readarr/author_all.json @@ -0,0 +1,82 @@ +[ + { + "authorMetadataId": 1, + "status": "continuing", + "ended": false, + "authorName": "string", + "authorNameLastFirst": "string", + "foreignAuthorId": "string", + "titleSlug": "string", + "overview": "", + "links": [ + { + "url": "string", + "name": "Goodreads" + } + ], + "lastBook": { + "authorMetadataId": 1, + "foreignBookId": "string", + "titleSlug": "string", + "title": "string", + "releaseDate": "2020-11-22T00:00:00Z", + "links": [ + { + "url": "string", + "name": "Goodreads Editions" + } + ], + "genres": [], + "relatedBooks": [ + 123456 + ], + "ratings": { + "votes": 98, + "value": 4.54, + "popularity": 444.92 + }, + "cleanTitle": "", + "monitored": true, + "anyEditionOk": true, + "lastInfoSync": "2022-09-16T11:12:53Z", + "added": "2021-11-14T21:41:33Z", + "addOptions": { + "addType": "manual", + "searchForNewBook": false + }, + "authorMetadata": null, + "author": null, + "editions": null, + "bookFiles": null, + "seriesLinks": null, + "id": 392 + }, + "images": [], + "path": "string", + "qualityProfileId": 1, + "metadataProfileId": 1, + "monitored": false, + "monitorNewItems": "all", + "rootFolderPath": "string", + "genres": [], + "cleanName": "string", + "sortName": "string", + "sortNameLastFirst": "string", + "tags": [], + "added": "2021-08-15T19:50:13Z", + "ratings": { + "votes": 110, + "value": 4.57, + "popularity": 502.70000000000005 + }, + "statistics": { + "bookFileCount": 0, + "bookCount": 1, + "availableBookCount": 0, + "totalBookCount": 1, + "sizeOnDisk": 0, + "percentOfBooks": 0 + }, + "id": 1 + } +] diff --git a/tests/fixtures/readarr/book.json b/tests/fixtures/readarr/book.json new file mode 100644 index 0000000..c961a4a --- /dev/null +++ b/tests/fixtures/readarr/book.json @@ -0,0 +1,96 @@ +{ + "title": "string", + "authorTitle": "string", + "seriesTitle": "", + "disambiguation": "", + "authorId": 24, + "foreignBookId": "string", + "titleSlug": "string", + "monitored": true, + "anyEditionOk": true, + "ratings": { + "votes": 0, + "value": 0, + "popularity": 0 + }, + "releaseDate": "2022-11-29T00:00:00Z", + "pageCount": 0, + "genres": [ + "string" + ], + "author": { + "authorMetadataId": 12, + "status": "continuing", + "ended": false, + "authorName": "string", + "authorNameLastFirst": "string", + "foreignAuthorId": "string", + "titleSlug": "string", + "overview": "string", + "links": [ + { + "url": "string", + "name": "Goodreads" + } + ], + "images": [ + { + "url": "string", + "coverType": "poster", + "extension": ".jpg" + } + ], + "path": "string", + "qualityProfileId": 1, + "metadataProfileId": 1, + "monitored": false, + "monitorNewItems": "all", + "genres": [], + "cleanName": "string", + "sortName": "string", + "sortNameLastFirst": "string", + "tags": [], + "added": "2022-05-26T09:19:35Z", + "ratings": { + "votes": 280381, + "value": 4.03, + "popularity": 1129935.4300000002 + }, + "statistics": { + "bookFileCount": 0, + "bookCount": 0, + "availableBookCount": 0, + "totalBookCount": 0, + "sizeOnDisk": 0, + "percentOfBooks": 0 + }, + "id": 24 + }, + "images": [ + { + "url": "string", + "coverType": "cover", + "extension": ".jpg" + } + ], + "links": [ + { + "url": "string", + "name": "Goodreads Editions" + }, + { + "url": "string", + "name": "Goodreads Book" + } + ], + "statistics": { + "bookFileCount": 0, + "bookCount": 0, + "totalBookCount": 1, + "sizeOnDisk": 0, + "percentOfBooks": 0 + }, + "added": "2022-09-10T16:37:29Z", + "grabbed": false, + "id": 1321 +} diff --git a/tests/fixtures/readarr/book_all.json b/tests/fixtures/readarr/book_all.json new file mode 100644 index 0000000..a33ae5d --- /dev/null +++ b/tests/fixtures/readarr/book_all.json @@ -0,0 +1,98 @@ +[ + { + "title": "string", + "authorTitle": "string", + "seriesTitle": "", + "disambiguation": "", + "authorId": 24, + "foreignBookId": "string", + "titleSlug": "string", + "monitored": true, + "anyEditionOk": true, + "ratings": { + "votes": 0, + "value": 0, + "popularity": 0 + }, + "releaseDate": "2022-11-29T00:00:00Z", + "pageCount": 0, + "genres": [ + "string" + ], + "author": { + "authorMetadataId": 12, + "status": "continuing", + "ended": false, + "authorName": "string", + "authorNameLastFirst": "string", + "foreignAuthorId": "string", + "titleSlug": "string", + "overview": "string", + "links": [ + { + "url": "string", + "name": "Goodreads" + } + ], + "images": [ + { + "url": "string", + "coverType": "poster", + "extension": ".jpg" + } + ], + "path": "string", + "qualityProfileId": 1, + "metadataProfileId": 1, + "monitored": false, + "monitorNewItems": "all", + "genres": [], + "cleanName": "string", + "sortName": "string", + "sortNameLastFirst": "string", + "tags": [], + "added": "2022-05-26T09:19:35Z", + "ratings": { + "votes": 280381, + "value": 4.03, + "popularity": 1129935.4300000002 + }, + "statistics": { + "bookFileCount": 0, + "bookCount": 0, + "availableBookCount": 0, + "totalBookCount": 0, + "sizeOnDisk": 0, + "percentOfBooks": 0 + }, + "id": 24 + }, + "images": [ + { + "url": "string", + "coverType": "cover", + "extension": ".jpg" + } + ], + "links": [ + { + "url": "string", + "name": "Goodreads Editions" + }, + { + "url": "string", + "name": "Goodreads Book" + } + ], + "statistics": { + "bookFileCount": 0, + "bookCount": 0, + "totalBookCount": 1, + "sizeOnDisk": 0, + "percentOfBooks": 0 + }, + "added": "2022-09-10T16:37:29Z", + "grabbed": false, + "id": 1321 + } +] diff --git a/tests/fixtures/readarr/command.json b/tests/fixtures/readarr/command.json new file mode 100644 index 0000000..65fc189 --- /dev/null +++ b/tests/fixtures/readarr/command.json @@ -0,0 +1,30 @@ +{ + "name": "RefreshMonitoredDownloads", + "commandName": "Refresh Monitored Downloads", + "message": "Completed", + "body": { + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "requiresDiskAccess": false, + "isExclusive": false, + "isTypeExclusive": false, + "name": "RefreshMonitoredDownloads", + "lastExecutionTime": "2022-09-16T10:52:26Z", + "lastStartTime": "2022-09-16T10:52:26Z", + "trigger": "scheduled", + "suppressMessages": false + }, + "priority": "low", + "status": "completed", + "queued": "2022-09-16T10:53:56Z", + "started": "2022-09-16T10:53:56Z", + "ended": "2022-09-16T10:53:56Z", + "duration": "00:00:00.0213480", + "trigger": "scheduled", + "stateChangeTime": "2022-09-16T10:53:56Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "lastExecutionTime": "2022-09-16T10:52:26Z", + "id": 883340 +} diff --git a/tests/fixtures/readarr/command_all.json b/tests/fixtures/readarr/command_all.json new file mode 100644 index 0000000..c4daec9 --- /dev/null +++ b/tests/fixtures/readarr/command_all.json @@ -0,0 +1,260 @@ +[ + { + "name": "RefreshMonitoredDownloads", + "commandName": "Refresh Monitored Downloads", + "message": "Completed", + "body": { + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "requiresDiskAccess": false, + "isExclusive": false, + "isTypeExclusive": false, + "name": "RefreshMonitoredDownloads", + "lastExecutionTime": "2022-09-16T10:52:26Z", + "lastStartTime": "2022-09-16T10:52:26Z", + "trigger": "scheduled", + "suppressMessages": false + }, + "priority": "low", + "status": "completed", + "queued": "2022-09-16T10:53:56Z", + "started": "2022-09-16T10:53:56Z", + "ended": "2022-09-16T10:53:56Z", + "duration": "00:00:00.0213480", + "trigger": "scheduled", + "stateChangeTime": "2022-09-16T10:53:56Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "lastExecutionTime": "2022-09-16T10:52:26Z", + "id": 883340 + }, + { + "name": "ProcessMonitoredDownloads", + "commandName": "Process Monitored Downloads", + "message": "Completed", + "body": { + "requiresDiskAccess": true, + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "isExclusive": false, + "isTypeExclusive": false, + "name": "ProcessMonitoredDownloads", + "trigger": "unspecified", + "suppressMessages": false + }, + "priority": "normal", + "status": "completed", + "queued": "2022-09-16T10:53:56Z", + "started": "2022-09-16T10:53:56Z", + "ended": "2022-09-16T10:53:56Z", + "duration": "00:00:00.0358423", + "trigger": "unspecified", + "stateChangeTime": "2022-09-16T10:53:56Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "id": 883341 + }, + { + "name": "RefreshMonitoredDownloads", + "commandName": "Refresh Monitored Downloads", + "message": "Completed", + "body": { + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "requiresDiskAccess": false, + "isExclusive": false, + "isTypeExclusive": false, + "name": "RefreshMonitoredDownloads", + "lastExecutionTime": "2022-09-16T10:53:56Z", + "lastStartTime": "2022-09-16T10:53:56Z", + "trigger": "scheduled", + "suppressMessages": false + }, + "priority": "low", + "status": "completed", + "queued": "2022-09-16T10:55:26Z", + "started": "2022-09-16T10:55:26Z", + "ended": "2022-09-16T10:55:26Z", + "duration": "00:00:00.0283894", + "trigger": "scheduled", + "stateChangeTime": "2022-09-16T10:55:26Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "lastExecutionTime": "2022-09-16T10:53:56Z", + "id": 883342 + }, + { + "name": "ProcessMonitoredDownloads", + "commandName": "Process Monitored Downloads", + "message": "Completed", + "body": { + "requiresDiskAccess": true, + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "isExclusive": false, + "isTypeExclusive": false, + "name": "ProcessMonitoredDownloads", + "trigger": "unspecified", + "suppressMessages": false + }, + "priority": "normal", + "status": "completed", + "queued": "2022-09-16T10:55:26Z", + "started": "2022-09-16T10:55:26Z", + "ended": "2022-09-16T10:55:26Z", + "duration": "00:00:00.0095763", + "trigger": "unspecified", + "stateChangeTime": "2022-09-16T10:55:26Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "id": 883343 + }, + { + "name": "RefreshMonitoredDownloads", + "commandName": "Refresh Monitored Downloads", + "message": "Completed", + "body": { + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "requiresDiskAccess": false, + "isExclusive": false, + "isTypeExclusive": false, + "name": "RefreshMonitoredDownloads", + "lastExecutionTime": "2022-09-16T10:55:27Z", + "lastStartTime": "2022-09-16T10:55:26Z", + "trigger": "scheduled", + "suppressMessages": false + }, + "priority": "low", + "status": "completed", + "queued": "2022-09-16T10:56:56Z", + "started": "2022-09-16T10:56:56Z", + "ended": "2022-09-16T10:56:56Z", + "duration": "00:00:00.0311637", + "trigger": "scheduled", + "stateChangeTime": "2022-09-16T10:56:56Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "lastExecutionTime": "2022-09-16T10:55:27Z", + "id": 883344 + }, + { + "name": "ProcessMonitoredDownloads", + "commandName": "Process Monitored Downloads", + "message": "Completed", + "body": { + "requiresDiskAccess": true, + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "isExclusive": false, + "isTypeExclusive": false, + "name": "ProcessMonitoredDownloads", + "trigger": "unspecified", + "suppressMessages": false + }, + "priority": "normal", + "status": "completed", + "queued": "2022-09-16T10:56:56Z", + "started": "2022-09-16T10:56:56Z", + "ended": "2022-09-16T10:56:56Z", + "duration": "00:00:00.0239153", + "trigger": "unspecified", + "stateChangeTime": "2022-09-16T10:56:56Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "id": 883345 + }, + { + "name": "MessagingCleanup", + "commandName": "Messaging Cleanup", + "message": "Completed", + "body": { + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "requiresDiskAccess": false, + "isExclusive": false, + "isTypeExclusive": false, + "name": "MessagingCleanup", + "lastExecutionTime": "2022-09-16T10:52:56Z", + "lastStartTime": "2022-09-16T10:52:56Z", + "trigger": "scheduled", + "suppressMessages": false + }, + "priority": "low", + "status": "completed", + "queued": "2022-09-16T10:57:56Z", + "started": "2022-09-16T10:57:56Z", + "ended": "2022-09-16T10:57:57Z", + "duration": "00:00:00.0471090", + "trigger": "scheduled", + "stateChangeTime": "2022-09-16T10:57:56Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "lastExecutionTime": "2022-09-16T10:52:56Z", + "id": 883346 + }, + { + "name": "RefreshMonitoredDownloads", + "commandName": "Refresh Monitored Downloads", + "message": "Completed", + "body": { + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "requiresDiskAccess": false, + "isExclusive": false, + "isTypeExclusive": false, + "name": "RefreshMonitoredDownloads", + "lastExecutionTime": "2022-09-16T10:56:57Z", + "lastStartTime": "2022-09-16T10:56:56Z", + "trigger": "scheduled", + "suppressMessages": false + }, + "priority": "low", + "status": "completed", + "queued": "2022-09-16T10:58:26Z", + "started": "2022-09-16T10:58:27Z", + "ended": "2022-09-16T10:58:27Z", + "duration": "00:00:00.0350084", + "trigger": "scheduled", + "stateChangeTime": "2022-09-16T10:58:27Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "lastExecutionTime": "2022-09-16T10:56:57Z", + "id": 883347 + }, + { + "name": "ProcessMonitoredDownloads", + "commandName": "Process Monitored Downloads", + "message": "Completed", + "body": { + "requiresDiskAccess": true, + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "completionMessage": "Completed", + "isExclusive": false, + "isTypeExclusive": false, + "name": "ProcessMonitoredDownloads", + "trigger": "unspecified", + "suppressMessages": false + }, + "priority": "normal", + "status": "completed", + "queued": "2022-09-16T10:58:27Z", + "started": "2022-09-16T10:58:27Z", + "ended": "2022-09-16T10:58:27Z", + "duration": "00:00:00.0851726", + "trigger": "unspecified", + "stateChangeTime": "2022-09-16T10:58:27Z", + "sendUpdatesToClient": false, + "updateScheduledTask": true, + "id": 883348 + } +] diff --git a/tests/fixtures/readarr/delayprofile.json b/tests/fixtures/readarr/delayprofile.json new file mode 100644 index 0000000..4876761 --- /dev/null +++ b/tests/fixtures/readarr/delayprofile.json @@ -0,0 +1,10 @@ +{ + "enableUsenet": true, + "enableTorrent": true, + "preferredProtocol": "usenet", + "usenetDelay": 0, + "torrentDelay": 0, + "order": 2147483647, + "tags": [], + "id": 1 +} diff --git a/tests/fixtures/readarr/delayprofile_all.json b/tests/fixtures/readarr/delayprofile_all.json new file mode 100644 index 0000000..b9f9759 --- /dev/null +++ b/tests/fixtures/readarr/delayprofile_all.json @@ -0,0 +1,12 @@ +[ + { + "enableUsenet": true, + "enableTorrent": true, + "preferredProtocol": "usenet", + "usenetDelay": 0, + "torrentDelay": 0, + "order": 2147483647, + "tags": [], + "id": 1 + } +] diff --git a/tests/fixtures/readarr/logfile_all.json b/tests/fixtures/readarr/logfile_all.json new file mode 100644 index 0000000..df04a9b --- /dev/null +++ b/tests/fixtures/readarr/logfile_all.json @@ -0,0 +1,16 @@ +[ + { + "filename": "Readarr.txt", + "lastWriteTime": "2022-09-20T11:49:10Z", + "contentsUrl": "/api/v1//Readarr.txt", + "downloadUrl": "/logfile/Readarr.txt", + "id": 8 + }, + { + "filename": "Readarr.0.txt", + "lastWriteTime": "2022-09-20T09:49:05Z", + "contentsUrl": "/api/v1//Readarr.0.txt", + "downloadUrl": "/logfile/Readarr.0.txt", + "id": 7 + } +] diff --git a/tests/fixtures/readarr/lookup.json b/tests/fixtures/readarr/lookup.json new file mode 100644 index 0000000..87b4ea3 --- /dev/null +++ b/tests/fixtures/readarr/lookup.json @@ -0,0 +1,146 @@ +[ + { + "foreignId": "1234567", + "author": { + "authorMetadataId": 0, + "status": "continuing", + "ended": false, + "authorName": "string", + "authorNameLastFirst": "string", + "foreignAuthorId": "1234567", + "titleSlug": "1234567", + "overview": "string", + "links": [ + { + "url": "string", + "name": "Goodreads" + } + ], + "images": [ + { + "url": "string", + "coverType": "poster", + "extension": ".jpg" + } + ], + "remotePoster": "string", + "qualityProfileId": 0, + "metadataProfileId": 0, + "monitored": false, + "monitorNewItems": "all", + "genres": [], + "cleanName": "string", + "sortName": "string", + "sortNameLastFirst": "string", + "tags": [], + "added": "0001-01-01T00:01:00Z", + "ratings": { + "votes": 31221602, + "value": 4.46, + "popularity": 139248344.92 + }, + "statistics": { + "bookFileCount": 0, + "bookCount": 0, + "availableBookCount": 0, + "totalBookCount": 0, + "sizeOnDisk": 0, + "percentOfBooks": 0 + } + }, + "id": 1 + }, + { + "foreignId": "1234567", + "book": { + "title": "string", + "authorTitle": "string", + "seriesTitle": "string", + "disambiguation": "US Edition", + "overview": "string", + "authorId": 0, + "foreignBookId": "1234567", + "titleSlug": "1234567", + "monitored": false, + "anyEditionOk": true, + "ratings": { + "votes": 2745211, + "value": 4.5, + "popularity": 12353449.5 + }, + "releaseDate": "2003-06-21T00:00:00Z", + "pageCount": 870, + "genres": [ + "string" + ], + "author": { + "authorMetadataId": 0, + "status": "continuing", + "ended": false, + "authorName": "string", + "authorNameLastFirst": "v", + "foreignAuthorId": "1234567", + "titleSlug": "1234567", + "overview": "string", + "links": [ + { + "url": "string", + "name": "Goodreads" + } + ], + "images": [ + { + "url": "string", + "coverType": "poster", + "extension": ".jpg" + } + ], + "qualityProfileId": 0, + "metadataProfileId": 0, + "monitored": false, + "monitorNewItems": "all", + "genres": [], + "cleanName": "string", + "sortName": "string", + "sortNameLastFirst": "string", + "tags": [], + "added": "0001-01-01T00:01:00Z", + "ratings": { + "votes": 31221602, + "value": 4.46, + "popularity": 139248344.92 + }, + "statistics": { + "bookFileCount": 0, + "bookCount": 0, + "availableBookCount": 0, + "totalBookCount": 0, + "sizeOnDisk": 0, + "percentOfBooks": 0 + } + }, + "images": [ + { + "url": "string", + "coverType": "cover", + "extension": ".jpg" + } + ], + "links": [ + { + "url": "string", + "name": "Goodreads Editions" + }, + { + "url": "string", + "name": "Goodreads Book" + } + ], + "added": "0001-01-01T00:01:00Z", + "remoteCover": "string", + "editions": [], + "grabbed": false + }, + "id": 2 + } +] diff --git a/tests/fixtures/readarr/lookup_author.json b/tests/fixtures/readarr/lookup_author.json new file mode 100644 index 0000000..5c92b1d --- /dev/null +++ b/tests/fixtures/readarr/lookup_author.json @@ -0,0 +1,89 @@ +[ + { + "authorMetadataId": 0, + "status": "continuing", + "ended": false, + "authorName": "string", + "authorNameLastFirst": "string", + "foreignAuthorId": "1234567", + "titleSlug": "1234567", + "overview": "string", + "links": [ + { + "url": "string", + "name": "Goodreads" + } + ], + "images": [ + { + "url": "string", + "coverType": "poster", + "extension": ".jpg" + } + ], + "remotePoster": "string", + "qualityProfileId": 0, + "metadataProfileId": 0, + "monitored": false, + "monitorNewItems": "all", + "genres": [], + "cleanName": "string", + "sortName": "string", + "sortNameLastFirst": "string", + "tags": [], + "added": "0001-01-01T00:01:00Z", + "ratings": { + "votes": 31221602, + "value": 4.46, + "popularity": 139248344.92 + }, + "statistics": { + "bookFileCount": 0, + "bookCount": 0, + "availableBookCount": 0, + "totalBookCount": 0, + "sizeOnDisk": 0, + "percentOfBooks": 0 + } + }, + { + "authorMetadataId": 0, + "status": "continuing", + "ended": false, + "authorName": "string", + "authorNameLastFirst": "string", + "foreignAuthorId": "1234567", + "titleSlug": "1234567", + "overview": "", + "links": [ + { + "url": "string", + "name": "Goodreads" + } + ], + "images": [], + "qualityProfileId": 0, + "metadataProfileId": 0, + "monitored": false, + "monitorNewItems": "all", + "genres": [], + "cleanName": "string", + "sortName": "string", + "sortNameLastFirst": "string", + "tags": [], + "added": "0001-01-01T00:01:00Z", + "ratings": { + "votes": 18032, + "value": 4.72, + "popularity": 85111.04 + }, + "statistics": { + "bookFileCount": 0, + "bookCount": 0, + "availableBookCount": 0, + "totalBookCount": 0, + "sizeOnDisk": 0, + "percentOfBooks": 0 + } + } +] diff --git a/tests/fixtures/readarr/lookup_book.json b/tests/fixtures/readarr/lookup_book.json new file mode 100644 index 0000000..4980ea1 --- /dev/null +++ b/tests/fixtures/readarr/lookup_book.json @@ -0,0 +1,43 @@ +[ + { + "title": "string", + "authorTitle": "string", + "seriesTitle": "", + "disambiguation": "", + "authorId": 0, + "foreignBookId": "12345678", + "titleSlug": "12345678", + "monitored": false, + "anyEditionOk": true, + "ratings": { + "votes": 8085, + "value": 4.74, + "popularity": 38322.9 + }, + "releaseDate": "2015-07-03T23:00:00Z", + "pageCount": 30, + "genres": [ + "string" + ], + "images": [ + { + "url": "string", + "coverType": "cover", + "extension": ".jpg" + } + ], + "links": [ + { + "url": "string", + "name": "Goodreads Editions" + }, + { + "url": "string", + "name": "Goodreads Book" + } + ], + "added": "0001-01-01T00:01:00Z", + "remoteCover": "string", + "grabbed": false + } +] diff --git a/tests/fixtures/readarr/metadataprofile.json b/tests/fixtures/readarr/metadataprofile.json new file mode 100644 index 0000000..312b14a --- /dev/null +++ b/tests/fixtures/readarr/metadataprofile.json @@ -0,0 +1,10 @@ +{ + "name": "None", + "minPopularity": 10000000000, + "skipMissingDate": false, + "skipMissingIsbn": false, + "skipPartsAndSets": false, + "skipSeriesSecondary": false, + "minPages": 0, + "id": 2 +} diff --git a/tests/fixtures/readarr/metadataprofile_all.json b/tests/fixtures/readarr/metadataprofile_all.json new file mode 100644 index 0000000..08800a3 --- /dev/null +++ b/tests/fixtures/readarr/metadataprofile_all.json @@ -0,0 +1,23 @@ +[ + { + "name": "Standard", + "minPopularity": 350, + "skipMissingDate": true, + "skipMissingIsbn": false, + "skipPartsAndSets": true, + "skipSeriesSecondary": false, + "allowedLanguages": "eng, en-US, en-GB, null", + "minPages": 0, + "id": 1 + }, + { + "name": "None", + "minPopularity": 10000000000, + "skipMissingDate": false, + "skipMissingIsbn": false, + "skipPartsAndSets": false, + "skipSeriesSecondary": false, + "minPages": 0, + "id": 2 + } +] diff --git a/tests/fixtures/readarr/metadataprovider.json b/tests/fixtures/readarr/metadataprovider.json new file mode 100644 index 0000000..fe66dfb --- /dev/null +++ b/tests/fixtures/readarr/metadataprovider.json @@ -0,0 +1,8 @@ +{ + "writeAudioTags": "no", + "scrubAudioTags": false, + "writeBookTags": "newFiles", + "updateCovers": true, + "embedMetadata": false, + "id": 1 +} diff --git a/tests/fixtures/readarr/qualityprofile.json b/tests/fixtures/readarr/qualityprofile.json new file mode 100644 index 0000000..0c4d61d --- /dev/null +++ b/tests/fixtures/readarr/qualityprofile.json @@ -0,0 +1,162 @@ +[ + { + "name": "eBook", + "upgradeAllowed": false, + "cutoff": 2, + "items": [ + { + "quality": { + "id": 0, + "name": "Unknown Text" + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 1, + "name": "PDF" + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 2, + "name": "MOBI" + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 3, + "name": "EPUB" + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 4, + "name": "AZW3" + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 13, + "name": "Unknown Audio" + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 10, + "name": "MP3" + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 12, + "name": "M4B" + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 11, + "name": "FLAC" + }, + "items": [], + "allowed": false + } + ], + "id": 1 + }, + { + "name": "Spoken", + "upgradeAllowed": false, + "cutoff": 10, + "items": [ + { + "quality": { + "id": 0, + "name": "Unknown Text" + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 1, + "name": "PDF" + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 2, + "name": "MOBI" + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 3, + "name": "EPUB" + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 4, + "name": "AZW3" + }, + "items": [], + "allowed": false + }, + { + "quality": { + "id": 13, + "name": "Unknown Audio" + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 10, + "name": "MP3" + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 12, + "name": "M4B" + }, + "items": [], + "allowed": true + }, + { + "quality": { + "id": 11, + "name": "FLAC" + }, + "items": [], + "allowed": true + } + ], + "id": 2 + } +] diff --git a/tests/fixtures/readarr/queue.json b/tests/fixtures/readarr/queue.json new file mode 100644 index 0000000..16f1468 --- /dev/null +++ b/tests/fixtures/readarr/queue.json @@ -0,0 +1,8 @@ +{ + "page": 1, + "pageSize": 10, + "sortKey": "timeleft", + "sortDirection": "ascending", + "totalRecords": 0, + "records": [] +} diff --git a/tests/fixtures/readarr/releaseprofile.json b/tests/fixtures/readarr/releaseprofile.json new file mode 100644 index 0000000..2b9a4fb --- /dev/null +++ b/tests/fixtures/readarr/releaseprofile.json @@ -0,0 +1,15 @@ +{ + "enabled": true, + "required": "daa", + "ignored": "ddd", + "preferred": [ + { + "key": "qwe", + "value": 3 + } + ], + "includePreferredWhenRenaming": false, + "indexerId": 0, + "tags": [], + "id": 1 +} diff --git a/tests/fixtures/readarr/releaseprofile_all.json b/tests/fixtures/readarr/releaseprofile_all.json new file mode 100644 index 0000000..f7ec6ee --- /dev/null +++ b/tests/fixtures/readarr/releaseprofile_all.json @@ -0,0 +1,17 @@ +[ + { + "enabled": true, + "required": "daa", + "ignored": "ddd", + "preferred": [ + { + "key": "qwe", + "value": 3 + } + ], + "includePreferredWhenRenaming": false, + "indexerId": 0, + "tags": [], + "id": 1 + } +] diff --git a/tests/fixtures/readarr/rootfolder.json b/tests/fixtures/readarr/rootfolder.json new file mode 100644 index 0000000..d2882b6 --- /dev/null +++ b/tests/fixtures/readarr/rootfolder.json @@ -0,0 +1,17 @@ +{ + "name": "books", + "path": "/books/", + "defaultMetadataProfileId": 1, + "defaultQualityProfileId": 1, + "defaultMonitorOption": "all", + "defaultNewItemMonitorOption": "all", + "defaultTags": [], + "isCalibreLibrary": false, + "port": 0, + "outputProfile": "default", + "useSsl": false, + "accessible": true, + "freeSpace": 25373036544, + "totalSpace": 30006984704, + "id": 1 +} diff --git a/tests/fixtures/readarr/rootfolder_all.json b/tests/fixtures/readarr/rootfolder_all.json new file mode 100644 index 0000000..f815a30 --- /dev/null +++ b/tests/fixtures/readarr/rootfolder_all.json @@ -0,0 +1,53 @@ +[ + { + "name": "books", + "path": "/books/", + "defaultMetadataProfileId": 1, + "defaultQualityProfileId": 1, + "defaultMonitorOption": "all", + "defaultNewItemMonitorOption": "all", + "defaultTags": [], + "isCalibreLibrary": false, + "port": 0, + "outputProfile": "default", + "useSsl": false, + "accessible": true, + "freeSpace": 25373036544, + "totalSpace": 30006984704, + "id": 1 + }, + { + "name": "TSDF", + "path": "/app/", + "defaultMetadataProfileId": 1, + "defaultQualityProfileId": 1, + "defaultMonitorOption": "all", + "defaultNewItemMonitorOption": "all", + "defaultTags": [], + "isCalibreLibrary": false, + "port": 0, + "outputProfile": "default", + "useSsl": false, + "accessible": true, + "freeSpace": 7650742272, + "totalSpace": 42924511232, + "id": 6 + }, + { + "name": "test", + "path": "/downloads/", + "defaultMetadataProfileId": 1, + "defaultQualityProfileId": 1, + "defaultMonitorOption": "all", + "defaultNewItemMonitorOption": "all", + "defaultTags": [], + "isCalibreLibrary": false, + "port": 0, + "outputProfile": "default", + "useSsl": false, + "accessible": true, + "freeSpace": 198678937600, + "totalSpace": 315006910464, + "id": 7 + } +] diff --git a/tests/fixtures/readarr/wanted_cutoff.json b/tests/fixtures/readarr/wanted_cutoff.json new file mode 100644 index 0000000..556ef9f --- /dev/null +++ b/tests/fixtures/readarr/wanted_cutoff.json @@ -0,0 +1,8 @@ +{ + "page": 1, + "pageSize": 10, + "sortKey": "Books.Id", + "sortDirection": "default", + "totalRecords": 0, + "records": [] +} diff --git a/tests/fixtures/readarr/wanted_missing.json b/tests/fixtures/readarr/wanted_missing.json new file mode 100644 index 0000000..02a23d2 --- /dev/null +++ b/tests/fixtures/readarr/wanted_missing.json @@ -0,0 +1,57 @@ +{ + "page": 1, + "pageSize": 10, + "sortKey": "Books.Id", + "sortDirection": "default", + "totalRecords": 82, + "records": [ + { + "title": "string", + "authorTitle": "string", + "seriesTitle": "", + "disambiguation": "string", + "authorId": 22, + "foreignBookId": "string", + "titleSlug": "string", + "monitored": true, + "anyEditionOk": true, + "ratings": { + "votes": 403868, + "value": 4.02, + "popularity": 1623549.3599999999 + }, + "releaseDate": "1961-11-01T00:00:00Z", + "pageCount": 146, + "genres": [ + "string" + ], + "images": [ + { + "url": "string", + "coverType": "cover", + "extension": ".jpg" + } + ], + "links": [ + { + "url": "string", + "name": "Goodreads Editions" + }, + { + "url": "string", + "name": "Goodreads Book" + } + ], + "statistics": { + "bookFileCount": 0, + "bookCount": 1, + "totalBookCount": 1, + "sizeOnDisk": 0, + "percentOfBooks": 0 + }, + "added": "2022-05-25T09:35:57Z", + "grabbed": false, + "id": 997 + } + ] +} diff --git a/tests/test_readarr.py b/tests/test_readarr.py new file mode 100644 index 0000000..420a79b --- /dev/null +++ b/tests/test_readarr.py @@ -0,0 +1,842 @@ +import contextlib + +import pytest + +from pyarr.exceptions import ( + PyarrMissingArgument, + PyarrMissingProfile, + PyarrResourceNotFound, +) +from pyarr.models.common import PyarrSortDirection +from pyarr.models.readarr import ( + ReadarrAuthorMonitor, + ReadarrBookTypes, + ReadarrCommands, + ReadarrSortKeys, +) + +from tests import load_fixture + + +@pytest.mark.usefixtures +def test_lookup(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/search?term=goodreads%3A123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/lookup.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.lookup(term="goodreads:123456") + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_lookup_book(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/book/lookup?term=goodreads%3A123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/lookup_book.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.lookup_book(term="goodreads:123456") + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_lookup_author(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/author/lookup?term=j.k. rowling", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/lookup_author.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.lookup_author(term="j.k. rowling") + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test__book_json(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/book/lookup?term=goodreads%3A123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/lookup_book.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/book/lookup?term=asin%3A123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/lookup_book.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/book/lookup?term=isbn%3A123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/lookup_book.json"), + status=200, + match_querystring=True, + ) + + data = readarr_client._book_json( + id_="123456", + book_id_type=ReadarrBookTypes.GOODREADS, + root_dir="/", + quality_profile_id=1, + metadata_profile_id=1, + monitored=False, + search_for_new_book=True, + author_monitor=ReadarrAuthorMonitor.EXISTING, + author_search_for_missing_books=False, + ) + assert isinstance(data, dict) + assert data["author"]["metadataProfileId"] == 1 + assert data["author"]["qualityProfileId"] == 1 + assert data["author"]["rootFolderPath"] == "/" + assert data["author"]["addOptions"]["monitor"] == "existing" + assert data["author"]["addOptions"]["searchForMissingBooks"] == False + assert data["monitored"] == False + assert data["author"]["manualAdd"] == True + assert data["addOptions"]["searchForNewBook"] == True + + data = readarr_client._book_json( + id_="123456", + book_id_type=ReadarrBookTypes.ASIN, + root_dir="/", + quality_profile_id=1, + metadata_profile_id=1, + monitored=False, + search_for_new_book=True, + author_monitor=ReadarrAuthorMonitor.EXISTING, + author_search_for_missing_books=False, + ) + assert isinstance(data, dict) + + data = readarr_client._book_json( + id_="123456", + book_id_type=ReadarrBookTypes.ISBN, + root_dir="/", + quality_profile_id=1, + metadata_profile_id=1, + monitored=False, + search_for_new_book=True, + author_monitor=ReadarrAuthorMonitor.EXISTING, + author_search_for_missing_books=False, + ) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test__book_json_2(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/qualityprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/metadataprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + with contextlib.suppress(PyarrMissingProfile): + data = readarr_client._book_json( + id_="123456", book_id_type=ReadarrBookTypes.ISBN, root_dir="/" + ) + assert False + + with contextlib.suppress(PyarrMissingProfile): + data = readarr_client._book_json( + id_="123456", + book_id_type=ReadarrBookTypes.ISBN, + root_dir="/", + quality_profile_id=1, + ) + assert False + + +@pytest.mark.usefixtures +def test__author_json(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/author/lookup?term=J.K.+Rowling", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/lookup_author.json"), + status=200, + match_querystring=True, + ) + + data = readarr_client._author_json( + term="J.K. Rowling", + root_dir="/", + quality_profile_id=1, + metadata_profile_id=1, + monitored=False, + author_monitor=ReadarrAuthorMonitor.EXISTING, + search_for_missing_books=False, + ) + assert isinstance(data, dict) + assert data["metadataProfileId"] == 1 + assert data["qualityProfileId"] == 1 + assert data["rootFolderPath"] == "/" + assert data["addOptions"]["monitor"] == "existing" + assert data["addOptions"]["searchForMissingBooks"] == False + assert data["monitored"] == False + + +@pytest.mark.usefixtures +def test__author_json_2(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/qualityprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/metadataprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + with contextlib.suppress(PyarrMissingProfile): + data = readarr_client._author_json(term="J.K. Rowling", root_dir="/") + assert False + + with contextlib.suppress(PyarrMissingProfile): + data = readarr_client._author_json( + term="J.K. Rowling", + root_dir="/", + quality_profile_id=1, + ) + assert False + + +@pytest.mark.usefixtures +def test_get_command(responses, readarr_client): + + # No args + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/command", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/command_all.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.get_command() + assert isinstance(data, list) + + # When an ID is supplied + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/command/4327826", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/command.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.get_command(4327826) + assert isinstance(data, dict) + + # when an incorrect ID is supplied, not found response + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/command/4321", + headers={"Content-Type": "application/json"}, + status=404, + match_querystring=True, + ) + with contextlib.suppress(PyarrResourceNotFound): + data = readarr_client.get_command(4321) + assert False + + +@pytest.mark.usefixtures +def test_post_command(responses, readarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8787/api/v1/command", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/command.json"), + status=201, + match_querystring=True, + ) + + data = readarr_client.post_command(name=ReadarrCommands.APP_UPDATE_CHECK) + assert isinstance(data, dict) + data = readarr_client.post_command(ReadarrCommands.AUTHOR_SEARCH, authorId=1) + assert isinstance(data, dict) + data = readarr_client.post_command(ReadarrCommands.BOOK_SEARCH, bookId=1) + assert isinstance(data, dict) + data = readarr_client.post_command(ReadarrCommands.REFRESH_AUTHOR, authorId=1) + assert isinstance(data, dict) + data = readarr_client.post_command(ReadarrCommands.REFRESH_BOOK, bookId=1) + assert isinstance(data, dict) + data = readarr_client.post_command( + ReadarrCommands.RENAME_AUTHOR, authorIds=[1, 2, 3] + ) + assert isinstance(data, dict) + data = readarr_client.post_command(ReadarrCommands.RESCAN_FOLDERS) + assert isinstance(data, dict) + data = readarr_client.post_command(ReadarrCommands.RSS_SYNC) + assert isinstance(data, dict) + data = readarr_client.post_command(ReadarrCommands.BACKUP) + assert isinstance(data, dict) + data = readarr_client.post_command(ReadarrCommands.MISSING_BOOK_SEARCH) + assert isinstance(data, dict) + data = readarr_client.post_command(ReadarrCommands.RENAME_FILES, authorId=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_missing(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/wanted/missing", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/wanted_missing.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.get_missing() + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/wanted/missing?page=2&pageSize=20&sortKey=Books.Id&sortDirection=ascending", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/wanted_missing.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.get_missing( + page=2, + page_size=20, + sort_key=ReadarrSortKeys.BOOK_ID, + sort_dir=PyarrSortDirection.ASC, + ) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = readarr_client.get_missing(sort_key=ReadarrSortKeys.TIMELEFT) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = readarr_client.get_missing(sort_dir=PyarrSortDirection.DEFAULT) + assert False + + +@pytest.mark.usefixtures +def test_get_cutoff(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/wanted/cutoff", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/wanted_cutoff.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.get_cutoff() + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/wanted/cutoff?page=2&pageSize=20&sortKey=Books.Id&sortDirection=ascending&monitored=True", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/wanted_cutoff.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.get_cutoff( + page=2, + page_size=20, + sort_key=ReadarrSortKeys.BOOK_ID, + sort_dir=PyarrSortDirection.ASC, + monitored=True, + ) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = readarr_client.get_cutoff(sort_key=ReadarrSortKeys.TIMELEFT) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = readarr_client.get_cutoff(sort_dir=PyarrSortDirection.DEFAULT) + assert False + + +@pytest.mark.usefixtures +def test_get_queue(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/queue", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/queue.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.get_queue() + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/queue?page=2&pageSize=20&sortKey=Books.Id&sortDirection=ascending&includeUnknownAuthorItems=True&includeAuthor=True&includeBook=True", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/queue.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.get_queue( + page=2, + page_size=20, + sort_key=ReadarrSortKeys.BOOK_ID, + sort_dir=PyarrSortDirection.ASC, + unknown_authors=True, + include_author=True, + include_book=True, + ) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = readarr_client.get_queue(sort_key=ReadarrSortKeys.TIMELEFT) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = readarr_client.get_queue(sort_dir=PyarrSortDirection.DEFAULT) + assert False + + +@pytest.mark.usefixtures +def test_get_metadata_profile(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/metadataprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/metadataprofile_all.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.get_metadata_profile() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/metadataprofile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/metadataprofile.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.get_metadata_profile(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_delay_profile(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/delayprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/delayprofile_all.json"), + status=200, + match_querystring=True, + ) + + data = readarr_client.get_delay_profile() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/delayprofile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/delayprofile.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.get_delay_profile(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_release_profile(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/releaseprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/releaseprofile_all.json"), + status=200, + match_querystring=True, + ) + + data = readarr_client.get_release_profile() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/releaseprofile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/releaseprofile.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.get_release_profile(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_book(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/book", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/book_all.json"), + status=200, + match_querystring=True, + ) + + data = readarr_client.get_book() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/book/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/book.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.get_book(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_add_book(responses, readarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8787/api/v1/book", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/book.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/book/lookup?term=goodreads%3A123456", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/lookup_book.json"), + status=200, + match_querystring=True, + ) + + data = readarr_client.add_book( + id_="123456", + book_id_type=ReadarrBookTypes.GOODREADS, + root_dir="/books/", + quality_profile_id=1, + metadata_profile_id=1, + ) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_add_book_2(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/qualityprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/metadataprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + with contextlib.suppress(PyarrMissingProfile): + data = readarr_client.add_book( + id_="123456", book_id_type=ReadarrBookTypes.ISBN, root_dir="/" + ) + assert False + + with contextlib.suppress(PyarrMissingProfile): + data = readarr_client.add_book( + id_="123456", + book_id_type=ReadarrBookTypes.ISBN, + root_dir="/", + quality_profile_id=1, + ) + assert False + + +@pytest.mark.usefixtures +def test_upd_book(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/book/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/book.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.PUT, + "https://127.0.0.1:8787/api/v1/book/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/book.json"), + status=200, + match_querystring=True, + ) + book = readarr_client.get_book(id_=1) + + data = readarr_client.upd_book(id_=1, data=book) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_del_book(responses, readarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8787/api/v1/book/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.del_book(1) + assert isinstance(data, dict) + responses.add( + responses.DELETE, + "https://127.0.0.1:8787/api/v1/book/1?deleteFiles=True&addImportListExclusion=True", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.del_book(id_=1, delete_files=True, import_list_exclusion=True) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_author(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/author", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/author_all.json"), + status=200, + match_querystring=True, + ) + + data = readarr_client.get_author() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/author/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/author.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.get_author(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_add_author(responses, readarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8787/api/v1/author", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/author.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/author/lookup?term=J.k+Rowling", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/lookup_author.json"), + status=200, + match_querystring=True, + ) + + data = readarr_client.add_author( + term="J.k Rowling", + root_dir="/books/", + quality_profile_id=1, + metadata_profile_id=1, + ) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_add_author_2(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/qualityprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/metadataprofile", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blank_list.json"), + status=200, + match_querystring=True, + ) + with contextlib.suppress(PyarrMissingProfile): + data = readarr_client.add_author(term="123456", root_dir="/") + assert False + + with contextlib.suppress(PyarrMissingProfile): + data = readarr_client.add_author( + term="123456", + root_dir="/", + quality_profile_id=1, + ) + assert False + + +@pytest.mark.usefixtures +def test_upd_author(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/author/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/author.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.PUT, + "https://127.0.0.1:8787/api/v1/author/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/author.json"), + status=200, + match_querystring=True, + ) + author = readarr_client.get_author(id_=1) + + data = readarr_client.upd_author(id_=1, data=author) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_del_author(responses, readarr_client): + responses.add( + responses.DELETE, + "https://127.0.0.1:8787/api/v1/author/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.del_author(1) + assert isinstance(data, dict) + responses.add( + responses.DELETE, + "https://127.0.0.1:8787/api/v1/author/1?deleteFiles=True&addImportListExclusion=True", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + data = readarr_client.del_author( + id_=1, delete_files=True, import_list_exclusion=True + ) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_log_file(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/log/file", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/logfile_all.json"), + status=200, + match_querystring=True, + ) + + data = readarr_client.get_log_file() + assert isinstance(data, list) + + +@pytest.mark.usefixtures +def test_add_root_folder(responses, readarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8787/api/v1/rootFolder", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/rootfolder.json"), + status=201, + match_querystring=True, + ) + data = readarr_client.add_root_folder( + name="test", + path="/path/to/folder", + default_quality_profile_id=1, + default_metadata_profile_id=1, + ) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_get_metadata_provider(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/config/metadataProvider", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/metadataprovider.json"), + status=200, + match_querystring=True, + ) + + data = readarr_client.get_metadata_provider() + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_upd_metadata_provider(responses, readarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8787/api/v1/config/metadataProvider", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/metadataprovider.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.PUT, + "https://127.0.0.1:8787/api/v1/config/metadataProvider", + headers={"Content-Type": "application/json"}, + body=load_fixture("readarr/metadataprovider.json"), + status=200, + match_querystring=True, + ) + provider = readarr_client.get_metadata_provider() + data = readarr_client.upd_metadata_provider(data=provider) + assert isinstance(data, dict) From 2cd33067b533bcd3822e34a453070fd9685311a4 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Wed, 21 Sep 2022 13:46:56 +0000 Subject: [PATCH 35/53] tests: added more tests --- pyarr/const.py | 3 - pyarr/readarr.py | 4 - tests/test_sonarr.py | 213 ++++++++++++++++++++++++++++++++----------- 3 files changed, 158 insertions(+), 62 deletions(-) diff --git a/pyarr/const.py b/pyarr/const.py index 7cef81c..4ff4522 100644 --- a/pyarr/const.py +++ b/pyarr/const.py @@ -2,6 +2,3 @@ from logging import Logger, getLogger LOGGER: Logger = getLogger(__package__) - -PAGE = 1 -PAGE_SIZE = 10 diff --git a/pyarr/readarr.py b/pyarr/readarr.py index 71cf0af..efc41ee 100644 --- a/pyarr/readarr.py +++ b/pyarr/readarr.py @@ -119,8 +119,6 @@ def _book_json( metadata_profile = self.get_metadata_profile() if isinstance(metadata_profile, list): metadata_profile_id = metadata_profile[0]["id"] - else: - metadata_profile_id = metadata_profile["id"] except IndexError as exception: raise PyarrMissingProfile( "There is no Metadata Profile setup" @@ -179,8 +177,6 @@ def _author_json( metadata_profile = self.get_metadata_profile() if isinstance(metadata_profile, list): metadata_profile_id = metadata_profile[0]["id"] - else: - metadata_profile_id = metadata_profile["id"] except IndexError as exception: raise PyarrMissingProfile( "There is no Metadata Profile setup" diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index afd248e..c5df414 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -745,6 +745,55 @@ def test_lookup_series_by_tvdb_id(responses, sonarr_client): assert isinstance(data, list) +@pytest.mark.usefixtures +def test_get_history(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/history", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/history.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_history() + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/history?episodeId=1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/history.json"), + status=200, + match_querystring=True, + ) + + data = sonarr_client.get_history(id_=1) + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/history?page=1&pageSize=10&sortKey=time&sortDirection=default", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/history.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.get_history( + page=1, + page_size=10, + sort_key=PyarrHistorySortKey.TIME, + sort_dir=PyarrSortDirection.DEFAULT, + ) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_history(sort_key=PyarrHistorySortKey.TIME) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_history(sort_dir=PyarrSortDirection.DESC) + assert False + + #### BASE TESTS #### # These tests are to make sure the base functions work as # expected for each api @@ -963,55 +1012,6 @@ def test_get_log(responses, sonarr_client): assert False -@pytest.mark.usefixtures -def test_get_history(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/history", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/history.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_history() - assert isinstance(data, dict) - - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/history?episodeId=1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/history.json"), - status=200, - match_querystring=True, - ) - - data = sonarr_client.get_history(id_=1) - assert isinstance(data, dict) - - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/history?page=1&pageSize=10&sortKey=time&sortDirection=default", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/history.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_history( - page=1, - page_size=10, - sort_key=PyarrHistorySortKey.TIME, - sort_dir=PyarrSortDirection.DEFAULT, - ) - assert isinstance(data, dict) - - with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_history(sort_key=PyarrHistorySortKey.TIME) - assert False - with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_history(sort_dir=PyarrSortDirection.DESC) - assert False - - @pytest.mark.usefixtures def test_get_blocklist(responses, sonarr_client): responses.add( @@ -1561,8 +1561,43 @@ def test_get_notification_schema(responses, sonarr_client): assert False -# TODO: add_notification -# TODO: upd_notification +@pytest.mark.usefixtures +def test_add_notification(responses, sonarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8989/api/v3/notification", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/notification.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.add_notification( + data={"implementationName": "Plex Media Server"} + ) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_upd_notification(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/notification/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/notification.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.PUT, + "https://127.0.0.1:8989/api/v3/notification/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/notification.json"), + status=200, + match_querystring=True, + ) + notification = sonarr_client.get_notification(id_=1) + data = sonarr_client.upd_notification(id_=1, data=notification) + assert isinstance(data, dict) @pytest.mark.usefixtures @@ -1719,8 +1754,43 @@ def test_get_download_client_schema(responses, sonarr_client): assert False -# TODO: add_download_client -# TODO: upd_download_client +@pytest.mark.usefixtures +def test_add_download_client(responses, sonarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8989/api/v3/downloadclient", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/downloadclient.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.add_download_client( + data={"implementationName": "Plex Media Server"} + ) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_upd_download_client(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/downloadclient/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/downloadclient.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.PUT, + "https://127.0.0.1:8989/api/v3/downloadclient/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/downloadclient.json"), + status=200, + match_querystring=True, + ) + download_client = sonarr_client.get_download_client(id_=1) + data = sonarr_client.upd_download_client(id_=1, data=download_client) + assert isinstance(data, dict) @pytest.mark.usefixtures @@ -1785,8 +1855,41 @@ def test_get_import_list_schema(responses, sonarr_client): assert False -# TODO: add_import_list -# TODO: upd_import_list +@pytest.mark.usefixtures +def test_add_import_list(responses, sonarr_client): + responses.add( + responses.POST, + "https://127.0.0.1:8989/api/v3/importlist", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/import_list.json"), + status=200, + match_querystring=True, + ) + data = sonarr_client.add_import_list(data={"implementationName": "Plex Watchlist"}) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +def test_upd_import_list(responses, sonarr_client): + responses.add( + responses.GET, + "https://127.0.0.1:8989/api/v3/importlist/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/import_list.json"), + status=200, + match_querystring=True, + ) + responses.add( + responses.PUT, + "https://127.0.0.1:8989/api/v3/importlist/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("sonarr/import_list.json"), + status=200, + match_querystring=True, + ) + import_list = sonarr_client.get_import_list(id_=1) + data = sonarr_client.upd_import_list(id_=1, data=import_list) + assert isinstance(data, dict) @pytest.mark.usefixtures From 0d913e5ce44cc96adfc4e205f5472b428ea5a4f1 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Mon, 3 Oct 2022 21:15:09 +0000 Subject: [PATCH 36/53] feat: added nox & updated workflows --- .devcontainer/recommended-Dockerfile | 2 +- .flake8 | 2 +- .github/workflows/check-version.yml | 32 ++++++++++ .github/workflows/greetings.yml | 16 ----- .github/workflows/pr.yml | 58 ------------------- .../{update_docs.yml => publish-docs.yml} | 0 .github/workflows/release.yml | 30 ++++------ .github/workflows/test.yml | 28 +++++++++ Makefile | 18 ------ noxfile.py | 58 +++++++++++++++++++ poetry.lock | 17 +++++- pyproject.toml | 10 +++- 12 files changed, 154 insertions(+), 117 deletions(-) create mode 100644 .github/workflows/check-version.yml delete mode 100644 .github/workflows/greetings.yml delete mode 100644 .github/workflows/pr.yml rename .github/workflows/{update_docs.yml => publish-docs.yml} (100%) create mode 100644 .github/workflows/test.yml delete mode 100644 Makefile create mode 100644 noxfile.py diff --git a/.devcontainer/recommended-Dockerfile b/.devcontainer/recommended-Dockerfile index aa7903c..495ca85 100644 --- a/.devcontainer/recommended-Dockerfile +++ b/.devcontainer/recommended-Dockerfile @@ -6,7 +6,7 @@ RUN apt upgrade -y RUN apt install zsh python3-sphinx -y -RUN pip install --user poetry +RUN pip install --user poetry nox ENV PATH="${PATH}:/root/.local/bin" RUN wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O - | zsh || true diff --git a/.flake8 b/.flake8 index 311602a..12cdfee 100644 --- a/.flake8 +++ b/.flake8 @@ -1,7 +1,7 @@ [flake8] max-line-length = 88 max-complexity = 18 -exclude = build/*, tests/* +exclude = build/*, tests/*, .nox/* extend-ignore = # See https://github.com/PyCQA/pycodestyle/issues/373 E203, diff --git a/.github/workflows/check-version.yml b/.github/workflows/check-version.yml new file mode 100644 index 0000000..a971b92 --- /dev/null +++ b/.github/workflows/check-version.yml @@ -0,0 +1,32 @@ +name: Check Version has been updated + +on: + pull_request: + branches: + - master + workflow_dispatch: +jobs: + checkVersion: + if: github.event_name == 'pull_request' + name: Check version updated + runs-on: ubuntu-latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: actions/checkout@v2 + - name: Check if Python files changed + id: changed-files + uses: tj-actions/changed-files@v9 + with: + files: | + .py + pyproject.toml + - name: Run step if any of the listed files above change + if: steps.changed-files.outputs.any_changed == 'true' + run: | + echo "One or more files has changed." + - name: Check package version + if: steps.changed-files.outputs.any_changed == 'true' + uses: dudo/tag_check@v1.1.1 + with: + git_tag_prefix: v diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml deleted file mode 100644 index 0df62ca..0000000 --- a/.github/workflows/greetings.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Greetings - -on: [pull_request, issues] - -jobs: - greeting: - runs-on: ubuntu-latest - steps: - - uses: actions/first-interaction@v1 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - pr-message: 'Hello @${{ github.actor }}, thank you for submitting a PR! We will respond as soon as possible.' - issue-message: | - Hello @${{ github.actor }}, thank you for your interest in our work! - - If this is a bug report, please provide screenshots and **minimum viable code to reproduce your issue**, otherwise we can not help you. \ No newline at end of file diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml deleted file mode 100644 index 9742c90..0000000 --- a/.github/workflows/pr.yml +++ /dev/null @@ -1,58 +0,0 @@ -name: pr - -on: - pull_request: - branches: - - master - workflow_dispatch: -jobs: - checkVersion: - if: github.event_name == 'pull_request' - name: Check version updated - runs-on: ubuntu-latest - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - steps: - - uses: actions/checkout@v2 - - name: Check if Python files changed - id: changed-files - uses: tj-actions/changed-files@v9 - with: - files: | - .py - pyproject.toml - - name: Run step if any of the listed files above change - if: steps.changed-files.outputs.any_changed == 'true' - run: | - echo "One or more files has changed." - - name: Check package version - if: steps.changed-files.outputs.any_changed == 'true' - uses: dudo/tag_check@v1.1.1 - with: - git_tag_prefix: v - code-quality: - name: ๐Ÿ“Š Check code quality - runs-on: ubuntu-latest - steps: - - name: Getting your configuration from GitHub - uses: actions/checkout@v1 - - name: Setup Python - uses: actions/setup-python@v1 - with: - python-version: 3.9 - - name: Run image - uses: abatilo/actions-poetry@v2.0.0 - - name: Install dependencies with Poetry - run: poetry install - - name: ๐Ÿ“ฆ Check imports - run: poetry run isort --diff pyarr - - name: ๐Ÿด Check Black formatting - run: poetry run black --check pyarr - - name: โ„๏ธ Check flake8 formatting - run: poetry run flake8 pyarr - - name: Check static type - run: poetry run mypy pyarr - - name: Check docstrings - run: poetry run interrogate pyarr - - name: ๐Ÿงช Check tests are passing - run: poetry run pytest tests diff --git a/.github/workflows/update_docs.yml b/.github/workflows/publish-docs.yml similarity index 100% rename from .github/workflows/update_docs.yml rename to .github/workflows/publish-docs.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 122eb18..b5944ee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,29 +10,19 @@ jobs: code-quality: name: ๐Ÿ“Š Check code quality runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] steps: - - name: Getting your configuration from GitHub - uses: actions/checkout@v1 - - name: Setup Python - uses: actions/setup-python@v1 + - uses: actions/checkout@v3 + - name: Setup Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 with: - python-version: 3.9 - - name: Run image - uses: abatilo/actions-poetry@v2.0.0 - - name: Install dependencies with Poetry - run: poetry install - - name: ๐Ÿ“ฆ Check imports - run: poetry run isort --diff pyarr - - name: ๐Ÿด Check Black formatting - run: poetry run black --check pyarr - - name: โ„๏ธ Check flake8 formatting - run: poetry run flake8 pyarr - - name: Check static type - run: poetry run mypy pyarr - - name: Check docstrings - run: poetry run interrogate pyarr + python-version: ${{ matrix.python-version }} - name: ๐Ÿงช Check tests are passing - run: poetry run pytest tests + run: | + pip install poetry nox + nox -s test build-n-publish: name: Create release and publish ๐Ÿ distribution ๐Ÿ“ฆ to PyPI diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..3a955bc --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,28 @@ +name: Test + +on: + push: + branches: + - main + pull_request: + branches: + - main + schedule: + - cron: "0 0 * * *" + +jobs: + source: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + steps: + - uses: actions/checkout@v3 + - name: Setup Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: ๐Ÿงช Check tests are passing + run: | + pip install poetry nox + nox -s test diff --git a/Makefile b/Makefile deleted file mode 100644 index d32f8db..0000000 --- a/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -.DEFAULT_GOAL := help - -help: ## Shows this help message - @printf "\033[1m%s\033[36m %s\033[32m %s\033[0m \n\n" "Development environment for" "pyarr" ""; - @awk 'BEGIN {FS = ":.*##";} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m make %-25s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST); - @echo - -requriements: ## Install requirements - @poetry Install - -lint: ## Lint all files - @isort . - @python -m black --fast . - @python -m flake8 pyarr tests - @python -m mypy pyarr - -coverage: ## Check the coverage of the package - @python -m pytest tests --cov=pyarr --cov-report term-missing -vv diff --git a/noxfile.py b/noxfile.py new file mode 100644 index 0000000..ddea3ad --- /dev/null +++ b/noxfile.py @@ -0,0 +1,58 @@ +from __future__ import annotations + +import nox +from nox.sessions import Session + + +@nox.session(reuse_venv=True) +def format(session: Session) -> None: + """Run automatic code formatters""" + session.run("poetry", "install", external=True) + session.run("black", ".") + session.run("isort", ".") + session.run("autoflake", "--in-place", ".") + + +@nox.session(reuse_venv=True) +def coverage(session: Session) -> None: + """Check tests cover all code""" + session.run("poetry", "install", external=True) + session.run("pytest", "tests", "--cov=pyarr", "--cov-report", "term-missing", "-vv") + + +@nox.session(reuse_venv=True) +def test(session: Session) -> None: + """Run the complete test suite""" + session.run("poetry", "install", external=True) + session.notify("test_types") + session.notify("test_style") + session.notify("test_suite") + + +@nox.session(reuse_venv=True) +def test_suite(session: Session) -> None: + """Run the Python-based test suite""" + session.run("poetry", "install", external=True) + session.run("pytest", "tests") + + +@nox.session(reuse_venv=True) +def test_types(session: Session) -> None: + """Check that typing is working as expected""" + session.run("poetry", "install", external=True) + session.run("mypy", "pyarr") + + +@nox.session(reuse_venv=True) +def test_style(session: Session) -> None: + """Check that style guidelines are being followed""" + session.run("poetry", "install", external=True) + session.run("flake8", "pyarr", "tests") + session.run( + "black", + ".", + "--check", + ) + session.run("isort", ".", "--check-only") + session.run("autoflake", ".") + session.run("interrogate", "pyarr") diff --git a/poetry.lock b/poetry.lock index e06cb73..85239ff 100644 --- a/poetry.lock +++ b/poetry.lock @@ -70,6 +70,18 @@ python-versions = ">=3.6" [package.dependencies] Sphinx = ">=2.2,<5.0" +[[package]] +name = "autoflake" +version = "1.6.1" +description = "Removes unused imports and unused variables" +category = "dev" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +pyflakes = ">=1.1.0" +tomli = {version = ">=2.0.1", markers = "python_version < \"3.11\""} + [[package]] name = "babel" version = "2.10.1" @@ -183,7 +195,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" [[package]] name = "coverage" -version = "6.4.2" +version = "6.5.0" description = "Code coverage measurement for Python" category = "dev" optional = false @@ -1158,7 +1170,7 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest- [metadata] lock-version = "1.1" python-versions = "^3.9" -content-hash = "fb9620c5d302288fb23b065ca548a897c45c727b661adc4325b8f1843b71b94a" +content-hash = "76b78ef5b82cf91c849bf4021ece56eb8e370880691a8a662ab177223013cd30" [metadata.files] alabaster = [ @@ -1185,6 +1197,7 @@ autodocsumm = [ {file = "autodocsumm-0.2.8-py3-none-any.whl", hash = "sha256:08f0401bb2c6f2bc92848ebd200c53a3966d1d23658e7d70c52f12b088941f79"}, {file = "autodocsumm-0.2.8.tar.gz", hash = "sha256:e67ebf6bb50a627d43f2ea3fcedfe31744eb7bfecd690e748a393248511ac6c5"}, ] +autoflake = [] babel = [ {file = "Babel-2.10.1-py3-none-any.whl", hash = "sha256:3f349e85ad3154559ac4930c3918247d319f21910d5ce4b25d439ed8693b98d2"}, {file = "Babel-2.10.1.tar.gz", hash = "sha256:98aeaca086133efb3e1e2aad0396987490c8425929ddbcfe0550184fdc54cd13"}, diff --git a/pyproject.toml b/pyproject.toml index 05fbf53..fe4ca4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,6 +48,7 @@ responses = "^0.21.0" pytest-responses = "^0.5.0" enum-tools = "^0.9.0" sphinx-toolbox = "^3.1.2" +autoflake = "^1.6.1" [tool.black] line-length = 88 @@ -62,6 +63,7 @@ exclude = ''' | \.hg | \.mypy_cache | \.tox + | \.nox | \.venv | _build | buck-out @@ -93,6 +95,12 @@ forced_separate = [ ] combine_as_imports = true +[tool.autoflake] +check = true +remove-unused-variables = true +remove-all-unused-imports = true +remove-duplicate-keys = true + [tool.interrogate] ignore-init-method = true ignore-init-module = false @@ -105,7 +113,7 @@ ignore-nested-functions = false ignore-nested-classes = true ignore-setters = false fail-under = 100 -exclude = ["setup.py", "sphinx-docs", "build", ".devcontainer"] +exclude = ["setup.py", "sphinx-docs", "build", ".devcontainer", ".nox"] ignore-regex = ["^get$", "^mock_.*", ".*BaseClass.*"] verbose = 0 quiet = false From b982d27e788049c74d184fcbced72ecb7633f0a5 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Tue, 8 Nov 2022 21:27:55 +0000 Subject: [PATCH 37/53] feat: added JSON type --- noxfile.py | 2 +- pyarr/base.py | 257 ++++++++++++++++++++++++++--------------------- pyarr/lidarr.py | 152 +++++++++++++++------------- pyarr/radarr.py | 126 ++++++++++++----------- pyarr/readarr.py | 124 ++++++++++++----------- pyarr/sonarr.py | 109 ++++++++++---------- pyarr/types.py | 5 + 7 files changed, 426 insertions(+), 349 deletions(-) create mode 100644 pyarr/types.py diff --git a/noxfile.py b/noxfile.py index ddea3ad..df20f95 100644 --- a/noxfile.py +++ b/noxfile.py @@ -40,7 +40,7 @@ def test_suite(session: Session) -> None: def test_types(session: Session) -> None: """Check that typing is working as expected""" session.run("poetry", "install", external=True) - session.run("mypy", "pyarr") + session.run("mypy", "--show-error-codes", "pyarr") @nox.session(reuse_venv=True) diff --git a/pyarr/base.py b/pyarr/base.py index 0e6d0d9..5d27510 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -16,6 +16,7 @@ PyarrSortDirection, PyarrTaskSortKey, ) +from pyarr.types import JsonDataType from .request_handler import RequestHandler @@ -120,7 +121,7 @@ def get_calendar( start_date: Optional[datetime] = None, end_date: Optional[datetime] = None, unmonitored: bool = True, - ) -> list[dict[str, Any]]: + ) -> list[dict[str, JsonDataType]]: """Gets upcoming releases by monitored, if start/end are not supplied, today and tomorrow will be returned @@ -130,7 +131,7 @@ def get_calendar( unmonitored (bool, optional): Include unmonitored movies. Defaults to True. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ params: dict[str, Any] = {} if start_date: @@ -144,59 +145,59 @@ def get_calendar( # SYSTEM # GET /system/status - def get_system_status(self) -> dict[str, Any]: + def get_system_status(self) -> dict[str, JsonDataType]: """Gets system status Returns: - dict[str, Any]: Dictionary with items + dict[str, JsonDataType]: Dictionary with items """ return self.assert_return("system/status", self.ver_uri, dict) # GET /health - def get_health(self) -> list[dict[str, Any]]: + def get_health(self) -> list[dict[str, JsonDataType]]: """Get health information Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return("health", self.ver_uri, list) # GET /metadata def get_metadata( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[str, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: """Get all metadata consumer settings Args: id_ (Optional[int], optional): ID for specific metadata record Returns: - Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return( f"metadata{f'/{id_}' if id_ else ''}", self.ver_uri, dict if id_ else list ) # GET /update - def get_update(self) -> list[dict[str, Any]]: + def get_update(self) -> list[dict[str, JsonDataType]]: """Will return a list of recent updated Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return("update", self.ver_uri, list) # GET /rootfolder def get_root_folder( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[str, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: """Get list of root folders, free space and any unmappedFolders Args: id_ (Optional[int], optional): ID of the folder to return. Defaults to None. Returns: - Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return( f"rootfolder{f'/{id_}' if id_ else ''}", self.ver_uri, dict if id_ else list @@ -206,7 +207,7 @@ def get_root_folder( def del_root_folder( self, id_: int ) -> Union[ - Response, dict[str, Any], dict[Any, Any] + Response, dict[str, JsonDataType], dict[Any, Any] ]: # sourcery skip: class-extract-method """Delete root folder with specified id @@ -219,21 +220,21 @@ def del_root_folder( return self._delete(f"rootfolder/{id_}", self.ver_uri) # GET /diskspace - def get_disk_space(self) -> list[dict[str, Any]]: + def get_disk_space(self) -> list[dict[str, JsonDataType]]: """Query disk usage information System > Status Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return("diskspace", self.ver_uri, list) # GET /system/backup - def get_backup(self) -> list[dict[str, Any]]: + def get_backup(self) -> list[dict[str, JsonDataType]]: """Returns the list of available backups Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return("system/backup", self.ver_uri, list) @@ -248,7 +249,7 @@ def get_log( sort_dir: Optional[PyarrSortDirection] = None, filter_key: Optional[PyarrLogFilterKey] = None, filter_value: Optional[PyarrLogFilterValue] = None, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Gets logs from instance Args: @@ -260,7 +261,7 @@ def get_log( filter_value (Optional[PyarrFilterValue], optional): Value of the filter. Defaults to None. Returns: - dict[str, Any]: List of dictionaries with items + dict[str, JsonDataType]: List of dictionaries with items """ params: dict[ str, @@ -301,7 +302,7 @@ def get_history( page_size: Optional[int] = None, sort_key: Optional[PyarrHistorySortKey] = None, sort_dir: Optional[PyarrSortDirection] = None, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Gets history (grabs/failures/completed) Args: @@ -311,7 +312,7 @@ def get_history( sort_dir (Optional[PyarrSortDirection], optional): Direction to sort the items. Defaults to None. Returns: - dict[str, Any]: Dictionary with items + dict[str, JsonDataType]: Dictionary with items """ params: dict[str, Union[int, PyarrHistorySortKey, PyarrSortDirection]] = {} @@ -338,7 +339,7 @@ def get_blocklist( page_size: Optional[int] = None, sort_key: Optional[PyarrBlocklistSortKey] = None, sort_dir: Optional[PyarrSortDirection] = None, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Returns blocked releases. Args: @@ -348,7 +349,7 @@ def get_blocklist( sort_dir (Optional[PyarrSortDirection], optional): Direction to sort the items. Defaults to None. Returns: - dict[str, Any]: Dictionary with items + dict[str, JsonDataType]: Dictionary with items """ params: dict[str, Union[int, PyarrBlocklistSortKey, PyarrSortDirection]] = {} @@ -369,7 +370,7 @@ def get_blocklist( # DELETE /blocklist def del_blocklist( self, id_: int - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Removes a specific release (the id provided) from the blocklist Args: @@ -383,7 +384,7 @@ def del_blocklist( # DELETE /blocklist/bulk def del_blocklist_bulk( self, ids: list[int] - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Delete blocked releases in bulk Args: @@ -400,21 +401,23 @@ def del_blocklist_bulk( # GET /qualityprofile/{id} def get_quality_profile( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[Any, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[Any, Any]]: """Gets all quality profiles or specific one with id Args: id_ (Optional[int], optional): Quality profile id from database. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ path = f"qualityprofile{f'/{id_}' if id_ else ''}" return self.assert_return(path, self.ver_uri, dict if id_ else list) # PUT /qualityprofile/{id} - def upd_quality_profile(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: + def upd_quality_profile( + self, id_: int, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Update the quality profile data Note: @@ -422,10 +425,10 @@ def upd_quality_profile(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: Args: id_ (int): Profile ID to Update - data (dict[str, Any]): All parameters to update + data (dict[str, JsonDataType]): All parameters to update Returns: - dict[str, Any]: Dictionary of updated record + dict[str, JsonDataType]: Dictionary of updated record """ return self.assert_return_put( @@ -435,7 +438,7 @@ def upd_quality_profile(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: # DELETE /qualityprofile def del_quality_profile( self, id_: int - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Removes a specific quality profile from the blocklist Args: @@ -449,20 +452,22 @@ def del_quality_profile( # GET /qualitydefinition/{id} def get_quality_definition( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[Any, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[Any, Any]]: """Gets all quality definitions or specific one by ID Args: id_ (Optional[int], optional): Import list database id. Defaults to None. Returns: - Union[list[dict[str, Any]], dict[Any, Any]]: List of dictionaries with items + Union[list[dict[str, JsonDataType]], dict[Any, Any]]: List of dictionaries with items """ path = f"qualitydefinition/{id_}" if id_ else "qualitydefinition" return self.assert_return(path, self.ver_uri, dict if id_ else list) # PUT /qualitydefinition/{id} - def upd_quality_definition(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: + def upd_quality_definition( + self, id_: int, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Update the quality definitions. Note: @@ -470,10 +475,10 @@ def upd_quality_definition(self, id_: int, data: dict[str, Any]) -> dict[str, An Args: id_ (int): ID of definition to update - data (dict[str, Any]): All parameters to update + data (dict[str, JsonDataType]): All parameters to update Returns: - dict[str, Any]: Dictionary of updated record + dict[str, JsonDataType]: Dictionary of updated record """ return self.assert_return_put( f"qualitydefinition/{id_}", self.ver_uri, dict, data=data @@ -484,20 +489,22 @@ def upd_quality_definition(self, id_: int, data: dict[str, Any]) -> dict[str, An # GET /indexer/{id} def get_indexer( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[Any, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[Any, Any]]: """Get all indexers or specific by id Args: id_ (Optional[int], optional): Database if of indexer to return. Defaults to None. Returns: - Union[list[dict[str, Any]], dict[Any, Any]]: List of dictionaries with items + Union[list[dict[str, JsonDataType]], dict[Any, Any]]: List of dictionaries with items """ path = f"indexer/{id_}" if id_ else "indexer" return self.assert_return(path, self.ver_uri, dict if id_ else list) # PUT /indexer/{id} - def upd_indexer(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: + def upd_indexer( + self, id_: int, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Edit a Indexer by database id Note: @@ -505,15 +512,17 @@ def upd_indexer(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: Args: id_ (int): Indexer database id - data (dict[str, Any]): Data to be updated within Indexer + data (dict[str, JsonDataType]): Data to be updated within Indexer Returns: - dict[str, Any]: Dictionary of updated record + dict[str, JsonDataType]: Dictionary of updated record """ return self.assert_return_put(f"indexer/{id_}", self.ver_uri, dict, data=data) # DELETE /indexer - def del_indexer(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, Any]]: + def del_indexer( + self, id_: int + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Removes a specific indexer from the blocklist Args: @@ -533,7 +542,7 @@ def del_queue( id_: int, remove_from_client: Optional[bool] = None, blocklist: Optional[bool] = None, - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Remove an item from the queue and blocklist it Args: @@ -560,7 +569,7 @@ def get_task( sort_key: Optional[PyarrTaskSortKey] = None, sort_dir: Optional[PyarrSortDirection] = None, id_: Optional[int] = None, - ) -> dict[Any, Any]: + ) -> dict[str, JsonDataType]: """Return a list of tasks, or specify a task ID to return single task Args: @@ -571,7 +580,7 @@ def get_task( id_ (Optional[int], optional): ID for task. Defaults to None. Returns: - Union[list[dict[str, Any]], dict[Any, Any]]: List of dictionaries with items + dict[str, JsonDataType]: List of dictionaries with items """ params: dict[ str, @@ -597,14 +606,14 @@ def get_task( # GET /remotepathmapping def get_remote_path_mapping( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[Any, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[Any, Any]]: """Get remote path mappings for downloads Directory Args: id_ (Optional[int], optional): ID for specific record. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ _path = f"remotepathmapping{'' if id_ is None else f'/{id_}'}" return self.assert_return(_path, self.ver_uri, dict if id_ else list) @@ -615,89 +624,93 @@ def get_remote_path_mapping( # CONFIG # GET /config/ui - def get_config_ui(self) -> dict[str, Any]: + def get_config_ui(self) -> dict[str, JsonDataType]: """Query Radarr for UI configuration Returns: - dict[str, Any]: List of dictionaries with items + dict[str, JsonDataType]: List of dictionaries with items """ return self.assert_return("config/ui", self.ver_uri, dict) # PUT /config/ui - def upd_config_ui(self, data: dict[str, Any]) -> dict[str, Any]: + def upd_config_ui(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: """Edit one or many UI settings and save to to the database Args: - data (dict[str, Any]): Data to be Updated. + data (dict[str, JsonDataType]): Data to be Updated. Returns: - dict[str, Any]: Dictionary with items + dict[str, JsonDataType]: Dictionary with items """ return self.assert_return_put("config/ui", self.ver_uri, dict, data=data) # GET /config/host - def get_config_host(self) -> dict[str, Any]: + def get_config_host(self) -> dict[str, JsonDataType]: """Get General/Host settings. Returns: - dict[str, Any]: Dictionaries with items + dict[str, JsonDataType]: Dictionaries with items """ return self.assert_return("config/host", self.ver_uri, dict) # PUT /config/host - def upd_config_host(self, data: dict[str, Any]) -> dict[str, Any]: + def upd_config_host(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: """Edit General/Host settings. Args: - data (dict[str, Any]): data to be updated + data (dict[str, JsonDataType]): data to be updated Returns: - dict[str, Any]: Dictionaries with items + dict[str, JsonDataType]: Dictionaries with items """ return self.assert_return_put("config/host", self.ver_uri, dict, data=data) # GET /config/naming - def get_config_naming(self) -> dict[str, Any]: + def get_config_naming(self) -> dict[str, JsonDataType]: """Get Settings for file and folder naming. Returns: - dict[str, Any]: Dictionary with items + dict[str, JsonDataType]: Dictionary with items """ return self.assert_return("config/naming", self.ver_uri, dict) # PUT /config/naming - def upd_config_naming(self, data: dict[str, Any]) -> dict[str, Any]: + def upd_config_naming( + self, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Edit Settings for file and folder naming. Args: - data (dict[str, Any]): data to be updated + data (dict[str, JsonDataType]): data to be updated Returns: - dict[str, Any]: Dictionary with items + dict[str, JsonDataType]: Dictionary with items """ return self.assert_return_put("config/naming", self.ver_uri, dict, data=data) # GET /config/mediamanagement - def get_media_management(self) -> dict[str, Any]: + def get_media_management(self) -> dict[str, JsonDataType]: """Get media management configuration Returns: - dict[str, Any]: Dictionary with items + dict[str, JsonDataType]: Dictionary with items """ return self.assert_return("config/mediamanagement", self.ver_uri, dict) # PUT /config/mediamanagement - def upd_media_management(self, data: dict[str, Any]) -> dict[str, Any]: + def upd_media_management( + self, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Get media management configuration Note: Recommended to use with get_media_management() Args: - data (dict[str, Any]): data to be updated + data (dict[str, JsonDataType]): data to be updated Returns: - dict[str, Any]: Dictionary with items + dict[str, JsonDataType]: Dictionary with items """ return self.assert_return_put( "config/mediamanagement", self.ver_uri, dict, data=data @@ -708,14 +721,14 @@ def upd_media_management(self, data: dict[str, Any]) -> dict[str, Any]: # GET /notification def get_notification( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[Any, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[Any, Any]]: """Get a list of all notification services, or single by ID Args: id_ (Optional[int], optional): Notification ID. Defaults to None. Returns: - Union[list[dict[str, Any]], dict[Any, Any]]: List of dictionaries with items + Union[list[dict[str, JsonDataType]], dict[Any, Any]]: List of dictionaries with items """ _path = "" if id_ is None else f"/{id_}" return self.assert_return( @@ -725,14 +738,14 @@ def get_notification( # GET /notification/schema def get_notification_schema( self, implementation: Optional[PyarrNotificationSchema] = None - ) -> Union[list[dict[str, Any]], dict[str, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: """Get possible notification connections Args: implementation (Optional[PyarrNotificationSchema], optional): notification system Returns: - Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ response = self.assert_return("notification/schema", self.ver_uri, list) if implementation: @@ -747,30 +760,34 @@ def get_notification_schema( return response # POST /notification - def add_notification(self, data: dict[str, Any]) -> dict[str, Any]: + def add_notification( + self, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Add an import list based on the schema information supplied Note: Recommended to be used in conjunction with get_notification_schema() Args: - data (dict[str, Any]): dictionary with import list schema and settings + data (dict[str, JsonDataType]): dictionary with import list schema and settings Returns: - dict[str, Any]: dictionary of added item + dict[str, JsonDataType]: dictionary of added item """ return self.assert_return_post("notification", self.ver_uri, dict, data=data) # PUT /notification/{id} - def upd_notification(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: + def upd_notification( + self, id_: int, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Edit notification by database id Args: id_ (int): Database id of notification - data (dict[str, Any]): data that requires updating + data (dict[str, JsonDataType]): data that requires updating Returns: - dict[str, Any]: Dictionary of updated record + dict[str, JsonDataType]: Dictionary of updated record """ return self.assert_return_put( f"notification/{id_}", self.ver_uri, dict, data=data @@ -779,7 +796,7 @@ def upd_notification(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: # DELETE /notification/{id} def del_notification( self, id_: int - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Delete a notification by its database id Args: @@ -795,14 +812,14 @@ def del_notification( # GET /tag/{id} def get_tag( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[str, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: """Returns all tags or specific tag by database id Args: id_ (Optional[int], optional): Database id for tag. Defaults to None. Returns: - Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"tag/{id_}" if id_ else "tag" return self.assert_return(path, self.ver_uri, dict if id_ else list) @@ -810,33 +827,33 @@ def get_tag( # GET /tag/detail/{id} def get_tag_detail( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[str, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: """Returns all tags or specific tag by database id with detailed information Args: id_ (Optional[int], optional): Database id for tag. Defaults to None. Returns: - Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"tag/detail/{id_}" if id_ else "tag/detail" return self.assert_return(path, self.ver_uri, dict if id_ else list) # POST /tag - def create_tag(self, label: str) -> dict[str, Any]: + def create_tag(self, label: str) -> dict[str, JsonDataType]: """Adds a new tag Args: label (str): Tag name / label Returns: - dict[str, Any]: Dictionary of new record + dict[str, JsonDataType]: Dictionary of new record """ data = {"label": label} return self.assert_return_post("tag", self.ver_uri, dict, data=data) # PUT /tag/{id} - def upd_tag(self, id_: int, label: str) -> dict[str, Any]: + def upd_tag(self, id_: int, label: str) -> dict[str, JsonDataType]: """Update an existing tag Note: @@ -847,13 +864,15 @@ def upd_tag(self, id_: int, label: str) -> dict[str, Any]: label (str): tag name / label Returns: - dict[str, Any]: Dictionary of updated items + dict[str, JsonDataType]: Dictionary of updated items """ data = {"id": id_, "label": label} return self.assert_return_put("tag", self.ver_uri, dict, data=data) # DELETE /tag/{id} - def del_tag(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, Any]]: + def del_tag( + self, id_: int + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Delete the tag with the given ID Args: @@ -869,14 +888,14 @@ def del_tag(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, Any]]: # GET /downloadclient/{id} def get_download_client( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[str, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: """Get a list of all the download clients or a single client by its database id Args: id_ (Optional[int], optional): Download client database id. Defaults to None. Returns: - Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"downloadclient/{id_}" if id_ else "downloadclient" return self.assert_return(path, self.ver_uri, dict if id_ else list) @@ -884,14 +903,14 @@ def get_download_client( # GET /downloadclient/schema def get_download_client_schema( self, implementation: Optional[PyarrDownloadClientSchema] = None - ) -> list[dict[str, Any]]: + ) -> list[dict[str, JsonDataType]]: """Gets the schemas for the different download Clients Args: implementation (Optional[PyarrDownloadClientSchema], optional): Client implementation name. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ response = self.assert_return("downloadclient/schema", self.ver_uri, list) if implementation: @@ -907,30 +926,34 @@ def get_download_client_schema( return response # POST /downloadclient/ - def add_download_client(self, data: dict[str, Any]) -> dict[str, Any]: + def add_download_client( + self, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Add a download client based on the schema information supplied Note: Recommended to be used in conjunction with get_download_client_schema() Args: - data (dict[str, Any]): dictionary with download client schema and settings + data (dict[str, JsonDataType]): dictionary with download client schema and settings Returns: - dict[str, Any]: dictionary of added item + dict[str, JsonDataType]: dictionary of added item """ return self.assert_return_post("downloadclient", self.ver_uri, dict, data=data) # PUT /downloadclient/{id} - def upd_download_client(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: + def upd_download_client( + self, id_: int, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Edit a downloadclient by database id Args: id_ (int): Download client database id - data (dict[str, Any]): data to be updated within download client + data (dict[str, JsonDataType]): data to be updated within download client Returns: - dict[str, Any]: dictionary of updated item + dict[str, v]: dictionary of updated item """ return self.assert_return_put( f"downloadclient/{id_}", self.ver_uri, dict, data=data @@ -939,7 +962,7 @@ def upd_download_client(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: # DELETE /downloadclient/{id} def del_download_client( self, id_: int - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Delete a download client by database id Args: @@ -953,28 +976,30 @@ def del_download_client( # IMPORT LIST # GET /importlist - def get_import_list(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_import_list( + self, id_: Optional[int] = None + ) -> list[dict[str, JsonDataType]]: """Query for all lists or a single list by its database id Args: id_ (Optional[int], optional): Import list database id. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ path = f"importlist/{id_}" if id_ else "importlist" return self.assert_return(path, self.ver_uri, dict if id_ else list) def get_import_list_schema( self, implementation: Optional[PyarrImportListSchema] = None - ) -> list[dict[str, Any]]: + ) -> list[dict[str, JsonDataType]]: """Gets the schemas for the different import list sources Args: implementation (Optional[PyarrImportListSchema], optional): Client implementation name. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ response = self.assert_return("importlist/schema", self.ver_uri, list) if implementation: @@ -990,30 +1015,32 @@ def get_import_list_schema( return response # POST /importlist/ - def add_import_list(self, data: dict[str, Any]) -> dict[str, Any]: + def add_import_list(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: """Add an import list based on the schema information supplied Note: Recommended to be used in conjunction with get_import_list_schema() Args: - data (dict[str, Any]): dictionary with import list schema and settings + data (dict[str, JsonDataType]): dictionary with import list schema and settings Returns: - dict[str, Any]: dictionary of added item + dict[str, JsonDataType]: dictionary of added item """ return self.assert_return_post("importlist", self.ver_uri, dict, data=data) # PUT /importlist/{id} - def upd_import_list(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: + def upd_import_list( + self, id_: int, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Edit an importlist Args: id_ (int): Import list database id - data (dict[str, Any]): data to be updated within the import list + data (dict[str, JsonDataType]): data to be updated within the import list Returns: - dict[str, Any]: Dictionary of updated data + dict[str, JsonDataType]: Dictionary of updated data """ return self.assert_return_put( f"importlist/{id_}", self.ver_uri, dict, data=data @@ -1022,7 +1049,7 @@ def upd_import_list(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: # DELETE /importlist/{id} def del_import_list( self, id_: int - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Delete an import list Args: @@ -1034,25 +1061,27 @@ def del_import_list( return self._delete(f"importlist/{id_}", self.ver_uri) # GET /config/downloadclient - def get_config_download_client(self) -> dict[str, Any]: + def get_config_download_client(self) -> dict[str, JsonDataType]: """Gets download client page configuration Returns: - dict[str, Any]: Dictionary of configuration + dict[str, JsonDataType]: Dictionary of configuration """ return self.assert_return("config/downloadclient", self.ver_uri, dict) - def upd_config_download_client(self, data: dict[str, Any]) -> dict[str, Any]: + def upd_config_download_client( + self, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Update download client page configurations Note: Recommended to be used in conjunction with get_config_download_client() Args: - data (dict[str, Any]): data to be updated + data (dict[str, JsonDataType]): data to be updated Returns: - dict[str, Any]: dictionary with updated items + dict[str, JsonDataType]: dictionary with updated items """ return self.assert_return_put( "config/downloadclient", self.ver_uri, dict, data=data diff --git a/pyarr/lidarr.py b/pyarr/lidarr.py index a42de92..719b514 100644 --- a/pyarr/lidarr.py +++ b/pyarr/lidarr.py @@ -2,6 +2,8 @@ from requests import Response +from pyarr.types import JsonDataType + from .base import BaseArrAPI from .exceptions import PyarrMissingArgument, PyarrMissingProfile from .models.common import PyarrSortDirection @@ -34,7 +36,7 @@ def add_root_folder( qualityProfile: int, metadataProfile: int, defaultTags: list[int] = None, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Add a new location to store files Args: @@ -45,7 +47,7 @@ def add_root_folder( metadataProfile (int): Default metadata profile ID Returns: - dict[str, Any]: Dictonary with added record + dict[str, JsonDataType]: Dictonary with added record """ folder_json = { "defaultTags": defaultTags or [], @@ -59,7 +61,7 @@ def add_root_folder( "rootfolder", self.ver_uri, dict, data=folder_json ) - def lookup(self, term: str) -> list[dict[str, Any]]: + def lookup(self, term: str) -> list[dict[str, JsonDataType]]: """Search for an artist / album / song Args: @@ -68,11 +70,11 @@ def lookup(self, term: str) -> list[dict[str, Any]]: lidarr.lookup(term="lidarr:cc197bad-dc9c-440d-a5b5-d52ba2e14234") Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return("search", self.ver_uri, list, params={"term": term}) - def lookup_artist(self, term: str) -> list[dict[str, Any]]: + def lookup_artist(self, term: str) -> list[dict[str, JsonDataType]]: """Search for an Artist to add to the database Args: @@ -81,14 +83,14 @@ def lookup_artist(self, term: str) -> list[dict[str, Any]]: lidarr.lookup(term="lidarr:cc197bad-dc9c-440d-a5b5-d52ba2e14234") Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return( "artist/lookup", self.ver_uri, list, params={"term": term} ) - def lookup_album(self, term: str) -> list[dict[str, Any]]: + def lookup_album(self, term: str) -> list[dict[str, JsonDataType]]: """Search for an Album to add to the database Args: @@ -97,13 +99,15 @@ def lookup_album(self, term: str) -> list[dict[str, Any]]: lidarr.lookup(term="lidarr:1dc4c347-a1db-32aa-b14f-bc9cc507b843") Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return( "album/lookup", self.ver_uri, list, params={"term": term} ) - def get_artist(self, id_: Optional[Union[str, int]] = None) -> list[dict[str, Any]]: + def get_artist( + self, id_: Optional[Union[str, int]] = None + ) -> list[dict[str, JsonDataType]]: """Get an artist by ID or get all artists Args: @@ -113,7 +117,7 @@ def get_artist(self, id_: Optional[Union[str, int]] = None) -> list[dict[str, An Include a string to search by MusicBrainz id. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ _path = "" if isinstance(id_, str) or id_ is None else f"/{id_}" @@ -133,7 +137,7 @@ def _artist_json( monitored: bool = True, artist_monitor: LidarrArtistMonitor = LidarrArtistMonitor.ALL_ALBUMS, artist_search_for_missing_albums: bool = False, - ) -> dict[str, Any]: + ) -> dict: """Method to help build the JSON for adding an artist Args: @@ -166,7 +170,7 @@ def _artist_json( "There is no Metadata Profile setup" ) from exception - artist = self.lookup_artist(term=f"lidarr:{id_}")[0] + artist: dict[str, Any] = self.lookup_artist(term=f"lidarr:{id_}")[0] artist["id"] = 0 artist["metadataProfileId"] = metadata_profile_id artist["qualityProfileId"] = quality_profile_id @@ -188,7 +192,7 @@ def add_artist( monitored: bool = True, artist_monitor: LidarrArtistMonitor = LidarrArtistMonitor.ALL_ALBUMS, artist_search_for_missing_albums: bool = False, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Adds an artist based on a search term, must be artist name or album/single by lidarr guid @@ -202,7 +206,7 @@ def add_artist( artist_search_for_missing_albums (bool, optional): Search for missing albums by this artist. Defaults to False. Returns: - dict[str, Any]: Dictonary with added record + dict[str, JsonDataType]: Dictonary with added record """ artist_json = self._artist_json( @@ -216,22 +220,22 @@ def add_artist( ) return self.assert_return_post("artist", self.ver_uri, dict, data=artist_json) - def upd_artist(self, data: dict[str, Any]) -> dict[str, Any]: + def upd_artist(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: """Update an existing artist note: Args: - data (dict[str, Any]): Dictionary containing an object obtained from get_artist() + data (dict[str, JsonDataType]): Dictionary containing an object obtained from get_artist() Returns: - dict[str, Any]: Dictionary of updated record + dict[str, JsonDataType]: Dictionary of updated record """ return self.assert_return_put("artist", self.ver_uri, dict, data=data) def delete_artist( self, id_: int - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Delete an artist with the provided ID Args: @@ -248,7 +252,7 @@ def get_album( artistId: Optional[int] = None, foreignAlbumId: Optional[int] = None, allArtistAlbums: bool = False, - ) -> list[dict[str, Any]]: + ) -> list[dict[str, JsonDataType]]: """Get a specific album by ID, or get all albums Args: @@ -258,7 +262,7 @@ def get_album( allArtistAlbums (bool, optional): Get all artists albums. Defaults to False. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ params: dict[str, Any] = {"includeAllArtistAlbums": allArtistAlbums} @@ -285,7 +289,7 @@ def _album_json( monitored: bool = True, artist_monitor: LidarrArtistMonitor = LidarrArtistMonitor.ALL_ALBUMS, artist_search_for_missing_albums: bool = False, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Method to help build the JSON for adding an album Args: @@ -301,7 +305,7 @@ def _album_json( PyarrMissingProfile: Error if there are no quality or metadata profiles that match Returns: - dict[str, Any]: Dictionary with album data + dict[str, JsonDataType]: Dictionary with album data """ if quality_profile_id is None: try: @@ -318,7 +322,7 @@ def _album_json( "There is no Metadata Profile setup" ) from exception - album = self.lookup_album(term=f"lidarr:{id_}")[0] + album: dict[str, Any] = self.lookup_album(term=f"lidarr:{id_}")[0] album["id"] = 0 album["metadataProfileId"] = metadata_profile_id album["qualityProfileId"] = quality_profile_id @@ -340,7 +344,7 @@ def add_album( monitored: bool = True, artist_monitor: LidarrArtistMonitor = LidarrArtistMonitor.ALL_ALBUMS, artist_search_for_missing_albums: bool = False, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Adds an album to Lidarr Args: @@ -353,9 +357,9 @@ def add_album( artist_search_for_missing_albums (bool, optional): Search for any missing albums by this artist. Defaults to False. Returns: - dict[str, Any]: Dictionary with added record + dict[str, JsonDataType]: Dictionary with added record """ - album_json = self._album_json( + album_json: dict[str, JsonDataType] = self._album_json( id_, root_dir, quality_profile_id, @@ -366,21 +370,23 @@ def add_album( ) return self.assert_return_post("album", self.ver_uri, dict, data=album_json) - def upd_album(self, data: dict[str, Any]) -> dict[str, Any]: + def upd_album(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: """Update an album Args: - data (dict[str, Any]): data to update albums + data (dict[str, JsonDataType]): data to update albums Note: To be used in conjunction with get_album() Returns: - dict[str, Any]: Dictionary of updated record + dict[str, JsonDataType]: Dictionary of updated record """ return self.assert_return_put("album", self.ver_uri, dict, data=data) - def delete_album(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, Any]]: + def delete_album( + self, id_: int + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Delete an album with the provided ID Args: @@ -392,14 +398,14 @@ def delete_album(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, An return self._delete(f"album/{id_}", self.ver_uri) # POST /command - def post_command(self, name: LidarrCommand) -> dict[str, Any]: + def post_command(self, name: LidarrCommand) -> dict[str, JsonDataType]: """Send a command to Lidarr Args: name (LidarrCommand): Command to be run against Lidarr Returns: - dict[str, Any]: dictionary of executed command information + dict[str, JsonDataType]: dictionary of executed command information """ return self.assert_return_post( "command", self.ver_uri, dict, data={"name": name} @@ -414,7 +420,7 @@ def get_wanted( sort_key: Optional[LidarrSortKey] = None, sort_dir: Optional[PyarrSortDirection] = None, missing: bool = True, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Get wanted albums that are missing or not meeting cutoff Args: @@ -426,7 +432,7 @@ def get_wanted( missing (bool, optional): Search for missing (True) or cutoff not met (False). Defaults to True. Returns: - dict[str, Any]: List of dictionaries with items + dict[str, JsonDataType]: List of dictionaries with items """ params: dict[str, Union[int, LidarrSortKey, PyarrSortDirection, bool]] = {} if page: @@ -449,14 +455,14 @@ def get_wanted( # GET /parse # TODO: Confirm response type - def get_parse(self, title: str) -> list[dict[str, Any]]: + def get_parse(self, title: str) -> list[dict[str, JsonDataType]]: """Return the music / artist with a matching filename Args: title (str): file Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return("parse", self.ver_uri, list, params={"title": title}) @@ -467,7 +473,7 @@ def get_tracks( albumId: Optional[int] = None, albumReleaseId: Optional[int] = None, trackIds: Optional[Union[int, list[int]]] = None, - ) -> list[dict[str, Any]]: + ) -> list[dict[str, JsonDataType]]: """Get tracks based on provided IDs Args: @@ -477,7 +483,7 @@ def get_tracks( trackIds (Optional[Union[int, list[int]]], optional): Track IDs. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ params: dict[str, Any] = {} if artistId is not None: @@ -513,7 +519,7 @@ def get_track_file( albumId: Optional[int] = None, trackFileIds: Union[int, list[int], None] = None, unmapped: Optional[bool] = None, - ) -> list[dict[str, Any]]: + ) -> list[dict[str, JsonDataType]]: """Get track files based on IDs, or get all unmapped files Args: @@ -526,7 +532,7 @@ def get_track_file( PyarrError: Where no IDs or unmapped params provided Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ if ( artistId is None @@ -554,24 +560,24 @@ def get_track_file( ) # PUT /trackfile/{id_} - def upd_track_file(self, data: dict[str, Any]) -> dict[str, Any]: + def upd_track_file(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: """Update an existing track file Note: To be used in conjunction with get_track_file() Args: - data (dict[str, Any]): Updated data for track files + data (dict[str, JsonDataType]): Updated data for track files Returns: - dict[str, Any]: Dictionary of updated record + dict[str, JsonDataType]: Dictionary of updated record """ return self.assert_return_put("trackfile", self.ver_uri, dict, data=data) # DEL /trackfile/{ids_} def delete_track_file( self, ids_: Union[int, list[int]] - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Delete track files. Use integer for one file or list for mass deletion. Args: @@ -587,14 +593,16 @@ def delete_track_file( ) # GET /metadataprofile/{id} - def get_metadata_profile(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_metadata_profile( + self, id_: Optional[int] = None + ) -> list[dict[str, JsonDataType]]: """Gets all metadata profiles or specific one with id Args: id_ (Optional[int], optional): Metadata profile id from database. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return( f"metadataprofile{f'/{id_}' if id_ else ''}", @@ -605,38 +613,42 @@ def get_metadata_profile(self, id_: Optional[int] = None) -> list[dict[str, Any] # TODO: POST /metadataprofile # PUT /metadataprofile - def upd_metadata_profile(self, data: dict[str, Any]) -> dict[str, Any]: + def upd_metadata_profile( + self, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Update a metadata profile Args: - data (dict[str, Any]): Data containing metadata profile and changes + data (dict[str, JsonDataType]): Data containing metadata profile and changes Returns: - dict[str, Any]: Dictionary of updated record + dict[str, JsonDataType]: Dictionary of updated record """ return self.assert_return_put("metadataprofile", self.ver_uri, dict, data=data) # GET /config/metadataProvider - def get_metadata_provider(self) -> dict[str, Any]: + def get_metadata_provider(self) -> dict[str, JsonDataType]: """Get metadata provider config (settings/metadata) Returns: - dict[str, Any]: Dictionary with data + dict[str, JsonDataType]: Dictionary with data """ return self.assert_return("config/metadataProvider", self.ver_uri, dict) # PUT /config/metadataprovider - def upd_metadata_provider(self, data: dict[str, Any]) -> dict[str, Any]: + def upd_metadata_provider( + self, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Update metadata provider by providing json data update Note: To be used in conjunction with get_metadata_provider() Args: - data (dict[str, Any]): Configuration data + data (dict[str, JsonDataType]): Configuration data Returns: - dict[str, Any]: Dictionary of updated record + dict[str, JsonDataType]: Dictionary of updated record """ return self.assert_return_put( "config/metadataProvider", self.ver_uri, dict, data=data @@ -652,7 +664,7 @@ def get_queue( unknown_artists: Optional[bool] = None, include_artist: Optional[bool] = None, include_album: Optional[bool] = None, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Get the queue of download_release Args: @@ -665,7 +677,7 @@ def get_queue( include_album (Optional[bool], optional): Include albums. Defaults to None. Returns: - dict[str, Any]: List of dictionaries with items + dict[str, JsonDataType]: List of dictionaries with items """ params: dict[str, Union[int, str, PyarrSortDirection, LidarrSortKey]] = {} if page: @@ -694,7 +706,7 @@ def get_queue_details( albumIds: Union[list[int], None] = None, include_artist: Optional[bool] = None, include_album: Optional[bool] = None, - ) -> list[dict[str, Any]]: + ) -> list[dict[str, JsonDataType]]: """Get queue details for artist or album Args: @@ -704,7 +716,7 @@ def get_queue_details( include_album (Optional[bool], optional): Include the album. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ params: dict[str, Any] = {} @@ -722,7 +734,7 @@ def get_queue_details( # GET /release def get_release( self, artistId: Optional[int] = None, albumId: Optional[int] = None - ) -> list[dict[str, Any]]: + ) -> list[dict[str, JsonDataType]]: """Search indexers for specified fields. Args: @@ -730,7 +742,7 @@ def get_release( albumId (Optional[int], optional): Album IT from Database. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ params = {} if artistId: @@ -742,7 +754,7 @@ def get_release( # GET /rename def get_rename( self, artistId: int, albumId: Optional[int] = None - ) -> list[dict[str, Any]]: + ) -> list[dict[str, JsonDataType]]: """Get files matching specified id that are not properly renamed yet. Args: @@ -750,7 +762,7 @@ def get_rename( albumId (Optional[int], optional): Album ID. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ params = {"artistId": artistId} if albumId: @@ -770,7 +782,7 @@ def get_manual_import( artistId: Optional[int] = None, filterExistingFiles: Optional[bool] = None, replaceExistingFiles: Optional[bool] = None, - ) -> list[dict[str, Any]]: + ) -> list[dict[str, JsonDataType]]: """Gets a manual import list Args: @@ -781,7 +793,7 @@ def get_manual_import( replaceExistingFiles (bool, optional): replace files. Defaults to True. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ params: dict[str, Union[str, int, bool]] = {"folder": folder} if downloadId: @@ -796,24 +808,26 @@ def get_manual_import( return self.assert_return("manualimport", self.ver_uri, list, params=params) # PUT /manualimport - def upd_manual_import(self, data: dict[str, Any]) -> dict[str, Any]: + def upd_manual_import( + self, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Update a manual import Note: To be used in conjunction with get_manual_import() Args: - data (dict[str, Any]): Data containing changes + data (dict[str, JsonDataType]): Data containing changes Returns: - dict[str, Any]: Dictionary of updated record + dict[str, JsonDataType]: Dictionary of updated record """ return self.assert_return_put("manualimport", self.ver_uri, dict, data=data) # GET /retag def get_retag( self, artistId: Optional[int] = None, albumId: Optional[int] = None - ) -> list[dict[str, Any]]: + ) -> list[dict[str, JsonDataType]]: """Get Retag Args: @@ -821,7 +835,7 @@ def get_retag( albumId Optional[int], optional): ID foir the album. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ params = {} if artistId: diff --git a/pyarr/radarr.py b/pyarr/radarr.py index 2eaeef9..c986ff0 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -3,6 +3,8 @@ from requests import Response +from pyarr.types import JsonDataType + from .base import BaseArrAPI from .exceptions import PyarrMissingArgument, PyarrRecordNotFound from .models.common import PyarrSortDirection @@ -35,7 +37,7 @@ def _movie_json( monitored: bool = True, search_for_movie: bool = True, tmdb: Optional[bool] = None, - ) -> dict[str, Any]: + ) -> dict: """Searches for movie on tmdb and returns Movie json to add. Args: @@ -50,7 +52,7 @@ def _movie_json( PyarrRecordNotFound: Movie doesnt exist Returns: - dict[str, Any]: Dictionary containing movie information + dict: Dictionary containing movie information """ if tmdb is not None: warn( @@ -59,11 +61,12 @@ def _movie_json( stacklevel=2, ) if isinstance(id_, int): - movies = self.lookup_movie(term=f"tmdb:{id_}") + movies: list[dict[str, Any]] = self.lookup_movie(term=f"tmdb:{id_}") else: movies = self.lookup_movie(term=f"imdb:{id_}") if movies: movie = movies[0] + return { "title": movie["title"], "rootFolderPath": root_dir, @@ -75,6 +78,7 @@ def _movie_json( "monitored": monitored, "addOptions": {"searchForMovie": search_for_movie}, } + else: raise PyarrRecordNotFound("Movie Doesn't Exist") @@ -83,14 +87,14 @@ def _movie_json( def add_root_folder( self, directory: str, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Adds a new root folder Args: directory (str): The directory path Returns: - dict[str, Any]: Dictionary containing path details + dict[str, JsonDataType]: Dictionary containing path details """ return self.assert_return_post( "rootfolder", self.ver_uri, dict, data={"path": directory} @@ -102,7 +106,7 @@ def add_root_folder( def get_movie( self, id_: Optional[int] = None, tmdb: bool = False ) -> Union[ - list[dict[str, Any]], dict[str, Any] + list[dict[str, JsonDataType]], dict[str, JsonDataType] ]: # sourcery skip: class-extract-method """Returns all movies in the database, movie based on the Radarr ID or TMDB id. @@ -114,7 +118,7 @@ def get_movie( tmdb (bool): Use TMDB Id. Defaults to False Returns: - Union[list[dict[str, Any]], dict[str, Any]]: List or Dictionary with items + Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List or Dictionary with items """ params = {} if tmdb: @@ -136,7 +140,7 @@ def add_movie( monitored: bool = True, search_for_movie: bool = True, tmdb: Optional[bool] = None, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Adds a movie to the database Args: @@ -148,7 +152,7 @@ def add_movie( tmdb (Optional[bool], optional): Not in use, Deprecated. Defaults to None. Returns: - dict[str, Any]: Dictonary with added record + dict[str, JsonDataType]: Dictonary with added record """ if tmdb: @@ -168,7 +172,7 @@ def upd_movie( self, data: Union[dict[Any, Any], list[dict[Any, Any]]], move_files: Optional[bool] = None, - ) -> Union[dict[str, Any], list[dict[str, Any]]]: + ) -> Union[dict[str, JsonDataType], list[dict[str, JsonDataType]]]: """Updates a movie in the database. Args: @@ -176,7 +180,7 @@ def upd_movie( move_files (Optional[bool], optional): Have radarr move files when updating. Defaults to None. Returns: - dict[str, Any]: Dictionary with updated record + dict[str, JsonDataType]: Dictionary with updated record """ params = {} if move_files is not None: @@ -191,7 +195,7 @@ def upd_movie( ) # GET /movie/{id} - def get_movie_by_movie_id(self, id_: int) -> dict[str, Any]: + def get_movie_by_movie_id(self, id_: int) -> dict[str, JsonDataType]: """Get a movie by the Radarr database ID Args: @@ -202,7 +206,7 @@ def get_movie_by_movie_id(self, id_: int) -> dict[str, Any]: future release. Please use get_movie() Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. Please use get_movie()", @@ -217,7 +221,7 @@ def del_movie( id_: Union[int, list], delete_files: Optional[bool] = None, add_exclusion: Optional[bool] = None, - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Delete a single movie or multiple movies by database id. Args: @@ -245,7 +249,7 @@ def del_movie( ) # GET /movie/lookup - def lookup_movie(self, term: str) -> list[dict[str, Any]]: + def lookup_movie(self, term: str) -> list[dict[str, JsonDataType]]: """Search for a movie to add to the database (Uses TMDB for search results) Args: @@ -255,20 +259,20 @@ def lookup_movie(self, term: str) -> list[dict[str, Any]]: radarr.lookup_movie(term="tmdb:123456") Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ params = {"term": term} return self.assert_return("movie/lookup", self.ver_uri, list, params) # GET /movie/lookup - def lookup_movie_by_tmdb_id(self, id_: int) -> list[dict[str, Any]]: + def lookup_movie_by_tmdb_id(self, id_: int) -> list[dict[str, JsonDataType]]: """Search for movie by TMDB ID Args: id_ (str): TMDB ID Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. use lookup_movie(term='tmdb:123456')", @@ -279,14 +283,14 @@ def lookup_movie_by_tmdb_id(self, id_: int) -> list[dict[str, Any]]: return self.assert_return("movie/lookup", self.ver_uri, list, params) # GET /movie/lookup - def lookup_movie_by_imdb_id(self, id_: str) -> list[dict[str, Any]]: + def lookup_movie_by_imdb_id(self, id_: str) -> list[dict[str, JsonDataType]]: """Search for movie by IMDB ID Args: id_ (str): IMDB ID Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. use lookup_movie(term='imdb:123456')", @@ -297,14 +301,16 @@ def lookup_movie_by_imdb_id(self, id_: str) -> list[dict[str, Any]]: return self.assert_return("movie/lookup", self.ver_uri, list, params) # PUT /movie/editor - def upd_movies(self, data: dict[str, Any]) -> list[dict[str, Any]]: + def upd_movies( + self, data: dict[str, JsonDataType] + ) -> list[dict[str, JsonDataType]]: """The Updates operation allows to edit properties of multiple movies at once Args: - data (dict[str, Any]): Updated movie information + data (dict[str, JsonDataType]): Updated movie information Returns: - dict[str, Any]: Dictionary containing updated record + dict[str, JsonDataType]: Dictionary containing updated record """ warn( @@ -316,12 +322,12 @@ def upd_movies(self, data: dict[str, Any]) -> list[dict[str, Any]]: # DELETE /movie/editor def del_movies( - self, data: dict[str, Any] - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + self, data: dict[str, JsonDataType] + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """The delete operation allows mass deletion of movies (and optionally files) Args: - data (dict[str, Any]): dictionary of movies to be deleted:: + data (dict[str, JsonDataType]): dictionary of movies to be deleted:: { "movieIds": [ @@ -342,14 +348,16 @@ def del_movies( return self._delete("movie/editor", self.ver_uri, data=data) # POST /movie/import - def import_movies(self, data: list[dict[str, Any]]) -> list[dict[str, Any]]: + def import_movies( + self, data: list[dict[str, JsonDataType]] + ) -> list[dict[str, JsonDataType]]: """The movie import endpoint is used by the bulk import view in Radarr UI. It allows movies to be bulk added to the Radarr database. Args: - data (dict[str, Any]): dictionary of all movies to be imported + data (dict[str, JsonDataType]): dictionary of all movies to be imported Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return_post("movie/import", self.ver_uri, list, data=data) @@ -357,28 +365,28 @@ def import_movies(self, data: list[dict[str, Any]]) -> list[dict[str, Any]]: # GET /moviefile # TODO: merge this with get_movie_file - def get_movie_files_by_movie_id(self, id_: int) -> list[dict[str, Any]]: + def get_movie_files_by_movie_id(self, id_: int) -> list[dict[str, JsonDataType]]: """Get a movie file object by Movie database ID. Args: id_ (int): Movie database ID Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ params = {"movieId": id_} return self.assert_return("moviefile", self.ver_uri, list, params) # GET /moviefile - def get_movie_file(self, id_: Union[int, list]) -> list[dict[str, Any]]: + def get_movie_file(self, id_: Union[int, list]) -> list[dict[str, JsonDataType]]: """Get movie file by database ID Args: id_ (int, list): Movie file ID, or multiple in a list Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ if not isinstance(id_, list): return self.assert_return( @@ -392,7 +400,7 @@ def get_movie_file(self, id_: Union[int, list]) -> list[dict[str, Any]]: # DELETE /moviefile/{id} def del_movie_file( self, id_: Union[int, list] - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Allows for deletion of a moviefile by its database ID. Args: @@ -413,7 +421,7 @@ def del_movie_file( # GET /history/movie def get_movie_history( self, id_: int, event_type: Optional[RadarrEventType] = None - ) -> list[dict[str, Any]]: + ) -> list[dict[str, JsonDataType]]: """Get history for a given movie in database by its database ID Args: @@ -421,7 +429,7 @@ def get_movie_history( event_type (Optional[RadarrEventType], optional): History event type to retrieve. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ params: dict[str, Union[int, str]] = {"movieId": id_} if event_type: @@ -434,14 +442,14 @@ def get_movie_history( def get_blocklist_by_movie_id( self, id_: int, - ) -> list[dict[str, Any]]: + ) -> list[dict[str, JsonDataType]]: """Retrieves blocklisted releases that are tied to a given movie in the database. Args: id_ (int): Movie id from Database Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ params = {"movieId": id_} return self.assert_return("blocklist/movie", self.ver_uri, list, params) @@ -456,7 +464,7 @@ def get_queue( sort_dir: Optional[PyarrSortDirection] = None, sort_key: Optional[RadarrSortKeys] = None, include_unknown_movie_items: Optional[bool] = None, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Return a list of items in the queue Args: @@ -467,7 +475,7 @@ def get_queue( include_unknown_movie_items (Optional[bool], optional): Include unknown movie items. Defaults to None. Returns: - dict[str, Any]: List of dictionaries with items + dict[str, JsonDataType]: List of dictionaries with items """ params: dict[str, Union[int, PyarrSortDirection, RadarrSortKeys, bool]] = {} @@ -490,7 +498,7 @@ def get_queue_details( self, id_: Optional[int] = None, include_movie: Optional[bool] = None, - ) -> list[dict[str, Any]]: + ) -> list[dict[str, JsonDataType]]: """Get details of all items in queue Args: @@ -498,7 +506,7 @@ def get_queue_details( include_movie (Optional[bool], optional): Include movie object if linked. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ params = {} if id_: @@ -509,11 +517,11 @@ def get_queue_details( return self.assert_return("queue/details", self.ver_uri, list, params) # GET /queue/status - def get_queue_status(self) -> dict[str, Any]: + def get_queue_status(self) -> dict[str, JsonDataType]: """Queue item status Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return("queue/status", self.ver_uri, dict) @@ -523,7 +531,7 @@ def del_queue_bulk( id_: list[int], remove_from_client: Optional[bool] = None, blocklist: Optional[bool] = None, - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Remove multiple items from queue by their IDs Args: @@ -539,47 +547,51 @@ def del_queue_bulk( return self._delete("queue/bulk", self.ver_uri, params=params, data=data) # POST /queue/grab/{id} - def force_grab_queue_item(self, id_: int) -> dict[str, Any]: + def force_grab_queue_item(self, id_: int) -> dict[str, JsonDataType]: """Perform a Radarr "force grab" on a pending queue item by its ID. Args: id_ (int): Queue item ID from database. Returns: - dict[str, Any]: Dictionary with record + dict[str, JsonDataType]: Dictionary with record """ return self.assert_return_post(f"queue/grab/{id_}", self.ver_uri, dict) ## INDEXER # GET /indexer and /indexer/{id} - def get_indexer(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_indexer(self, id_: Optional[int] = None) -> list[dict[str, JsonDataType]]: """Get all indexers or a single indexer by its database ID. Args: id_ (Optional[int], optional): indexer database ID. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ path = f"indexer/{id_}" if id_ else "indexer" return self.assert_return(path, self.ver_uri, dict if id_ else list) # PUT /indexer/{id} - def upd_indexer(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: + def upd_indexer( + self, id_: int, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Edit an indexer Args: id_ (int): Database ID of indexer - data (dict[str, Any]): information to be changed within the indexer + data (dict[str, JsonDataType]): information to be changed within the indexer Returns: - dict[str, Any]: Dictionary with updated record + dict[str, JsonDataType]: Dictionary with updated record """ return self.assert_return_put(f"indexer/{id_}", self.ver_uri, dict, data=data) # DELETE /indexer/{id} - def del_indexer(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, Any]]: + def del_indexer( + self, id_: int + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Delete indexer by database ID Args: @@ -596,7 +608,7 @@ def del_indexer(self, id_: int) -> Union[Response, dict[str, Any], dict[Any, Any # TODO: type for kwargs and response def post_command( self, name: RadarrCommands, **kwargs: Optional[Union[int, list[int]]] - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Performs any of the predetermined Radarr command routines. Args: @@ -615,7 +627,7 @@ def post_command( MovieSearch: movieid (Optional) Returns: - dict[str, Any]: Dictionary containing job + dict[str, JsonDataType]: Dictionary containing job """ data: dict[str, Any] = { "name": name, @@ -627,10 +639,10 @@ def post_command( ## CUSTOM FILTERS # GET /customfilter - def get_custom_filter(self) -> list[dict[str, Any]]: + def get_custom_filter(self) -> list[dict[str, JsonDataType]]: """Query Radarr for custom filters Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return("customfilter", self.ver_uri, list) diff --git a/pyarr/readarr.py b/pyarr/readarr.py index efc41ee..8510733 100644 --- a/pyarr/readarr.py +++ b/pyarr/readarr.py @@ -2,6 +2,8 @@ from requests import Response +from pyarr.types import JsonDataType + from .base import BaseArrAPI from .exceptions import PyarrMissingArgument, PyarrMissingProfile from .models.common import PyarrSortDirection @@ -27,7 +29,7 @@ def __init__(self, host_url: str, api_key: str): ver_uri = "/v1" super().__init__(host_url, api_key, ver_uri) - def lookup(self, term: str) -> list[dict[str, Any]]: + def lookup(self, term: str) -> list[dict[str, JsonDataType]]: """Search for an author / book Note: @@ -43,12 +45,12 @@ def lookup(self, term: str) -> list[dict[str, Any]]: term (str): Search term Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return("search", self.ver_uri, list, params={"term": term}) # GET /book/lookup - def lookup_book(self, term: str) -> list[dict[str, Any]]: + def lookup_book(self, term: str) -> list[dict[str, JsonDataType]]: """Searches for new books using a term, goodreads ID, isbn or asin. Args: @@ -59,19 +61,19 @@ def lookup_book(self, term: str) -> list[dict[str, Any]]: asin:B00JCDK5ME Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return("book/lookup", self.ver_uri, list, {"term": term}) # GET /author/lookup/ - def lookup_author(self, term: str) -> list[dict[str, Any]]: + def lookup_author(self, term: str) -> list[dict[str, JsonDataType]]: """Searches for new authors using a term Args: term (str): Author name or book Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ params = {"term": term} return self.assert_return("author/lookup", self.ver_uri, list, params) @@ -87,7 +89,7 @@ def _book_json( search_for_new_book: bool = False, author_monitor: ReadarrAuthorMonitor = ReadarrAuthorMonitor.ALL, author_search_for_missing_books: bool = False, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Constructs the JSON required to add a new book to Readarr Args: @@ -105,7 +107,7 @@ def _book_json( PyarrMissingProfile: Error if Metadata or Quality profile ID are incorrect Returns: - dict[str, Any]: Dictionary of generated record + dict[str, JsonDataType]: Dictionary of generated record """ if quality_profile_id is None: try: @@ -116,14 +118,16 @@ def _book_json( ) from exception if metadata_profile_id is None: try: - metadata_profile = self.get_metadata_profile() + metadata_profile: Union[ + list[dict[str, Any]], dict[str, Any] + ] = self.get_metadata_profile() if isinstance(metadata_profile, list): metadata_profile_id = metadata_profile[0]["id"] except IndexError as exception: raise PyarrMissingProfile( "There is no Metadata Profile setup" ) from exception - book = self.lookup_book(f"{book_id_type}:{id_}")[0] + book: dict[str, Any] = self.lookup_book(f"{book_id_type}:{id_}")[0] book["author"] = {} book["author"]["metadataProfileId"] = metadata_profile_id book["author"]["qualityProfileId"] = quality_profile_id @@ -147,7 +151,7 @@ def _author_json( monitored: bool = True, author_monitor: ReadarrAuthorMonitor = ReadarrAuthorMonitor.NONE, search_for_missing_books: bool = False, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Constructs the JSON required to add a new book to Readarr Args: @@ -163,7 +167,7 @@ def _author_json( PyarrMissingProfile: Error if Metadata or Quality profile ID are incorrect Returns: - dict[str, Any]: Dictionary of author data + dict[str, JsonDataType]: Dictionary of author data """ if quality_profile_id is None: try: @@ -174,7 +178,9 @@ def _author_json( ) from exception if metadata_profile_id is None: try: - metadata_profile = self.get_metadata_profile() + metadata_profile: Union[ + list[dict[str, Any]], dict[str, Any] + ] = self.get_metadata_profile() if isinstance(metadata_profile, list): metadata_profile_id = metadata_profile[0]["id"] except IndexError as exception: @@ -182,7 +188,7 @@ def _author_json( "There is no Metadata Profile setup" ) from exception - author = self.lookup_author(term)[0] + author: dict[str, Any] = self.lookup_author(term)[0] author["metadataProfileId"] = metadata_profile_id author["qualityProfileId"] = quality_profile_id @@ -200,20 +206,20 @@ def _author_json( # GET /command/:id def get_command( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[str, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: """Queries the status of a previously started command, or all currently started commands. Args: id_ (Optional[int], optional): Database ID of the command. Defaults to None. Returns: - Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"command/{id_}" if id_ else "command" return self.assert_return(path, self.ver_uri, dict if id_ else list) # POST /command - def post_command(self, name: ReadarrCommands, **kwargs) -> dict[str, Any]: + def post_command(self, name: ReadarrCommands, **kwargs) -> dict[str, JsonDataType]: """Performs any of the predetermined Readarr command routines Args: @@ -230,7 +236,7 @@ def post_command(self, name: ReadarrCommands, **kwargs) -> dict[str, Any]: RenameFiles: authorId (int, optional) Returns: - dict[str, Any]: Dictionary of command run + dict[str, JsonDataType]: Dictionary of command run """ data = { "name": name, @@ -247,7 +253,7 @@ def get_missing( page_size: Optional[int] = None, sort_key: Optional[ReadarrSortKeys] = None, sort_dir: Optional[PyarrSortDirection] = None, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Gets missing episode (episodes without files) Args: @@ -257,7 +263,7 @@ def get_missing( sort_dir (PyarrSortDirection, optional): Direction to sort the items. Defaults to None, Returns: - dict[str, Any]: List of dictionaries with items + dict[str, JsonDataType]: List of dictionaries with items """ params: dict[str, Union[int, ReadarrSortKeys, PyarrSortDirection, bool]] = {} if page: @@ -279,7 +285,7 @@ def get_cutoff( sort_key: Optional[ReadarrSortKeys] = None, sort_dir: Optional[PyarrSortDirection] = None, monitored: bool = None, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Get wanted items where the cutoff is unmet Args: @@ -290,7 +296,7 @@ def get_cutoff( monitored (bool, optional): Search for monitored only. Defaults to None. Returns: - dict[str, Any]: List of dictionaries with items + dict[str, JsonDataType]: List of dictionaries with items """ params: dict[str, Union[int, ReadarrSortKeys, PyarrSortDirection, bool]] = {} if page: @@ -318,7 +324,7 @@ def get_queue( unknown_authors: Optional[bool] = None, include_author: Optional[bool] = None, include_book: Optional[bool] = None, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Get current download information Args: @@ -331,7 +337,7 @@ def get_queue( include_book (bool, optional): Include the book. Defaults to None. Returns: - dict[str, Any]: List of dictionaries with items + dict[str, JsonDataType]: List of dictionaries with items """ params: dict[str, Union[int, ReadarrSortKeys, PyarrSortDirection, bool]] = {} if page: @@ -355,14 +361,14 @@ def get_queue( # GET /metadataprofile/{id} def get_metadata_profile( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[str, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: """Gets all metadata profiles or specific one with ID Args: id_ (Optional[int], optional): Metadata profile id from database. Defaults to None. Returns: - Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"metadataprofile/{id_}" if id_ else "metadataprofile" return self.assert_return(path, self.ver_uri, dict if id_ else list) @@ -370,14 +376,14 @@ def get_metadata_profile( # GET /delayprofile/{id} def get_delay_profile( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[str, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: """Gets all delay profiles or specific one with ID Args: id_ (Optional[int], optional): Metadata profile ID from database. Defaults to None. Returns: - Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"delayprofile/{id_}" if id_ else "delayprofile" return self.assert_return(path, self.ver_uri, dict if id_ else list) @@ -385,14 +391,14 @@ def get_delay_profile( # GET /releaseprofile/{id} def get_release_profile( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[str, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: """Gets all release profiles or specific one with ID Args: id_ (Optional[int], optional): Release profile ID from database. Defaults to None. Returns: - Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"releaseprofile/{id_}" if id_ else "releaseprofile" return self.assert_return(path, self.ver_uri, dict if id_ else list) @@ -402,7 +408,7 @@ def get_release_profile( # GET /book and /book/{id} def get_book( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[str, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: """Returns all books in your collection or the book with the matching book ID if one is found. @@ -410,7 +416,7 @@ def get_book( id_ (Optional[int], optional): Database id for book. Defaults to None. Returns: - Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"book/{id_}" if id_ else "book" return self.assert_return(path, self.ver_uri, dict if id_ else list) @@ -427,7 +433,7 @@ def add_book( search_for_new_book: bool = False, author_monitor: ReadarrAuthorMonitor = ReadarrAuthorMonitor.ALL, author_search_for_missing_books: bool = False, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Adds a new book and its associated author (if not already added) Args: @@ -442,10 +448,10 @@ def add_book( author_search_for_missing_books (bool, optional): search for missing books from this author. Defaults to False. Returns: - dict[str, Any]: Dictionary of added record + dict[str, JsonDataType]: Dictionary of added record """ - book_json = self._book_json( + book_json: dict[str, Any] = self._book_json( id_, book_id_type, root_dir, @@ -459,7 +465,9 @@ def add_book( return self.assert_return_post("book", self.ver_uri, dict, data=book_json) # PUT /book/{id} - def upd_book(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: + def upd_book( + self, id_: int, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Update the given book, currently only monitored is changed, all other modifications are ignored. Note: @@ -467,10 +475,10 @@ def upd_book(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: Args: id_ (int): Book database ID to update - data (dict[str, Any]): All parameters to update book + data (dict[str, JsonDataType]): All parameters to update book Returns: - dict[str, Any]: Dictionary with updated record + dict[str, JsonDataType]: Dictionary with updated record """ return self.assert_return_put(f"book/{id_}", self.ver_uri, dict, data=data) @@ -480,7 +488,7 @@ def del_book( id_: int, delete_files: Optional[bool] = None, import_list_exclusion: Optional[bool] = None, - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Delete the book with the given ID Args: @@ -504,14 +512,14 @@ def del_book( # GET /author and /author/{id} def get_author( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[str, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: """Returns all authors in your collection or the author with the matching ID if one is found. Args: id_ (Optional[int], optional): Database ID for author. Defaults to None. Returns: - Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items + Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"author/{id_}" if id_ else "author" return self.assert_return(path, self.ver_uri, dict if id_ else list) @@ -526,7 +534,7 @@ def add_author( monitored: bool = True, author_monitor: ReadarrAuthorMonitor = ReadarrAuthorMonitor.NONE, author_search_for_missing_books: bool = False, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Adds an authorbased on search term, must be author name or book by goodreads / isbn / asin ID Args: @@ -539,9 +547,9 @@ def add_author( author_search_for_missing_books (bool, optional): Search for any missing books by the author. Defaults to False. Returns: - dict[str, Any]: Dictonary of added record + dict[str, JsonDataType]: Dictonary of added record """ - author_json = self._author_json( + author_json: dict[str, Any] = self._author_json( term, root_dir, quality_profile_id, @@ -553,7 +561,9 @@ def add_author( return self.assert_return_post("author", self.ver_uri, dict, data=author_json) # PUT /author/{id} - def upd_author(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: + def upd_author( + self, id_: int, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Update the given author, currently only monitored is changed, all other modifications are ignored. Note: @@ -561,10 +571,10 @@ def upd_author(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: Args: id_ (int): Author database ID to update - data (dict[str, Any]): All parameters to update author + data (dict[str, JsonDataType]): All parameters to update author Returns: - dict[str, Any]: Dictionary with updated record + dict[str, JsonDataType]: Dictionary with updated record """ return self.assert_return_put(f"author/{id_}", self.ver_uri, dict, data=data) @@ -574,7 +584,7 @@ def del_author( id_: int, delete_files: Optional[bool] = None, import_list_exclusion: Optional[bool] = None, - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Delete the author with the given ID Args: @@ -596,11 +606,11 @@ def del_author( ## LOG # GET /log/file - def get_log_file(self) -> list[dict[str, Any]]: + def get_log_file(self) -> list[dict[str, JsonDataType]]: """Get log file Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return("log/file", self.ver_uri, list) @@ -619,7 +629,7 @@ def add_root_folder( default_tags: Optional[list] = None, default_quality_profile_id: int = 1, default_metadata_profile_id: int = 1, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Add a new location to store files Args: @@ -635,7 +645,7 @@ def add_root_folder( default_metadata_profile_id (int, optional): Metadata Profile. Defaults to 1. Returns: - dict[str, Any]: Dictionary of added record + dict[str, JsonDataType]: Dictionary of added record """ folder_json = { "isCalibreLibrary": is_calibre_lib, @@ -654,23 +664,25 @@ def add_root_folder( ) # GET /config/metadataProvider - def get_metadata_provider(self) -> dict[str, Any]: + def get_metadata_provider(self) -> dict[str, JsonDataType]: """Get metadata provider from settings/metadata Returns: - dict[str, Any]: Dictionary of record + dict[str, JsonDataType]: Dictionary of record """ return self.assert_return("config/metadataProvider", self.ver_uri, dict) # PUT /config/metadataProvider - def upd_metadata_provider(self, data: dict[str, Any]) -> dict[str, Any]: + def upd_metadata_provider( + self, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Update the metadata provider data. Note: To be used in conjunction with get_metadata_provider() Args: - data (dict[str, Any]): All parameters to update + data (dict[str, JsonDataType]): All parameters to update Returns: dict[str, Any]: Dictionary of updated record diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index d065d15..e82b2c7 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -5,6 +5,7 @@ from requests import Response from pyarr.exceptions import PyarrMissingArgument +from pyarr.types import JsonDataType from .base import BaseArrAPI from .models.common import PyarrHistorySortKey, PyarrSortDirection @@ -51,7 +52,7 @@ def _series_json( Returns: dict: dictionary of series data """ - series = self.lookup_series_by_tvdb_id(tvdb_id)[0] + series: dict[str, Any] = self.lookup_series_by_tvdb_id(tvdb_id)[0] if not monitored and series.get("seasons"): for season in series["seasons"]: season["monitored"] = False @@ -77,14 +78,14 @@ def _series_json( def add_root_folder( self, directory: str, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Adds a new root folder Args: directory (str): The directory path Returns: - dict[str, Any]: Dictionary containing path details + dict[str, JsonDataType]: Dictionary containing path details """ return self.assert_return_post( "rootfolder", self.ver_uri, dict, data={"path": directory} @@ -95,14 +96,14 @@ def add_root_folder( # GET /command def get_command( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[str, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: """Queries the status of a previously started command, or all currently started commands. Args: id_ (Optional[int], optional): Database ID of the command. Defaults to None. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ path = f"command{f'/{id_}' if id_ else ''}" return self.assert_return(path, self.ver_uri, dict if id_ else list) @@ -112,7 +113,7 @@ def get_command( # TODO: look into DownloadedEpisodesScan and how to use it def post_command( self, name: SonarrCommands, **kwargs: Optional[Union[int, list[int]]] - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Performs any of the predetermined Sonarr command routines Args: @@ -134,7 +135,7 @@ def post_command( missingEpisodeSearch: None Returns: - dict[str, Any]: Dictionary containing job + dict[str, JsonDataType]: Dictionary containing job """ data: dict[str, Any] = { "name": name, @@ -146,7 +147,7 @@ def post_command( ## EPISODE # GET /episode - def get_episode(self, id_: int, series: bool = False) -> dict[str, Any]: + def get_episode(self, id_: int, series: bool = False) -> dict[str, JsonDataType]: """Get get episodes by ID or series Args: @@ -154,7 +155,7 @@ def get_episode(self, id_: int, series: bool = False) -> dict[str, Any]: series (bool, optional): Set to true if the ID is for a Series. Defaults to false. Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return( f"episode{'' if series else f'/{id_}'}", @@ -164,7 +165,7 @@ def get_episode(self, id_: int, series: bool = False) -> dict[str, Any]: ) # GET /episode - def get_episodes_by_series_id(self, id_: int) -> list[dict[str, Any]]: + def get_episodes_by_series_id(self, id_: int) -> list[dict[str, JsonDataType]]: # sourcery skip: class-extract-method """Gets all episodes from a given series ID @@ -176,7 +177,7 @@ def get_episodes_by_series_id(self, id_: int) -> list[dict[str, Any]]: future release. Please use get_episode() Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. Please use get_episode()", @@ -187,7 +188,7 @@ def get_episodes_by_series_id(self, id_: int) -> list[dict[str, Any]]: return self.assert_return("episode", self.ver_uri, list, params) # GET /episode/{id} - def get_episode_by_episode_id(self, id_: int) -> dict[str, Any]: + def get_episode_by_episode_id(self, id_: int) -> dict[str, JsonDataType]: """Gets a specific episode by database id Args: @@ -198,7 +199,7 @@ def get_episode_by_episode_id(self, id_: int) -> dict[str, Any]: future release. Please use get_episode() Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. Please use get_episode()", @@ -208,7 +209,9 @@ def get_episode_by_episode_id(self, id_: int) -> dict[str, Any]: return self.assert_return(f"episode/{id_}", self.ver_uri, dict) # PUT /episode - def upd_episode(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: + def upd_episode( + self, id_: int, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Update the given episodes, currently only monitored is supported Args: @@ -222,21 +225,21 @@ def upd_episode(self, id_: int, data: dict[str, Any]) -> dict[str, Any]: sonarr.upd_episode(1, payload) Returns: - dict[str, Any]: Dictionary with updated record + dict[str, JsonDataType]: Dictionary with updated record """ return self.assert_return_put(f"episode/{id_}", self.ver_uri, dict, data=data) ## EPISODE FILE # GET /episodefile - def get_episode_files_by_series_id(self, id_: int) -> list[dict[str, Any]]: + def get_episode_files_by_series_id(self, id_: int) -> list[dict[str, JsonDataType]]: """Returns all episode file information for series id specified Args: id_ (int): Database id of series Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. Please use get_episode_file()", @@ -247,7 +250,9 @@ def get_episode_files_by_series_id(self, id_: int) -> list[dict[str, Any]]: return self.assert_return("episodefile", self.ver_uri, list, params) # GET /episodefile/{id} - def get_episode_file(self, id_: int, series: bool = False) -> dict[str, Any]: + def get_episode_file( + self, id_: int, series: bool = False + ) -> dict[str, JsonDataType]: """Returns episode file information for specified id Args: @@ -255,7 +260,7 @@ def get_episode_file(self, id_: int, series: bool = False) -> dict[str, Any]: series (bool, optional): Set to true if the ID is for a Series. Defaults to false. Returns: - dict[str, Any]: Dictionary with data + dict[str, JsonDataType]: Dictionary with data """ return self.assert_return( f"episodefile{'' if series else f'/{id_}'}", @@ -267,7 +272,7 @@ def get_episode_file(self, id_: int, series: bool = False) -> dict[str, Any]: # DELETE /episodefile/{id} def del_episode_file( self, id_: int - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Deletes the episode file with corresponding id Args: @@ -280,13 +285,13 @@ def del_episode_file( # PUT /episodefile/{id} def upd_episode_file_quality( - self, id_: int, data: dict[str, Any] - ) -> dict[str, Any]: + self, id_: int, data: dict[str, JsonDataType] + ) -> dict[str, JsonDataType]: """Updates the quality of the episode file and returns the episode file Args: id_ (int): Database id for episode file - data (dict[str, Any]): data with quality:: + data (dict[str, JsonDataType]): data with quality:: { "quality": { @@ -301,7 +306,7 @@ def upd_episode_file_quality( } Returns: - dict[str, Any]: Dictionary with updated record + dict[str, JsonDataType]: Dictionary with updated record """ return self.assert_return_put( f"episodefile/{id_}", self.ver_uri, dict, data=data @@ -315,7 +320,7 @@ def get_wanted( sort_key: Optional[SonarrSortKey] = None, sort_dir: Optional[PyarrSortDirection] = None, include_series: Optional[bool] = None, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Gets missing episode (episodes without files) Args: @@ -326,7 +331,7 @@ def get_wanted( include_series (Optional[bool], optional): Include the whole series. Defaults to None Returns: - dict[str, Any]: Dictionary with items + dict[str, JsonDataType]: Dictionary with items """ params: dict[str, Union[int, SonarrSortKey, PyarrSortDirection, bool]] = {} if page: @@ -355,7 +360,7 @@ def get_queue( include_unknown_series_items: Optional[bool] = None, include_series: Optional[bool] = None, include_episode: Optional[bool] = None, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Gets currently downloading info Args: @@ -368,7 +373,7 @@ def get_queue( include_episode (Optional[bool], optional): Include episodes. Defaults to None. Returns: - dict[str, Any]: Dictionary with queue items + dict[str, JsonDataType]: Dictionary with queue items """ params: dict[str, Union[int, bool, SonarrSortKey, PyarrSortDirection]] = {} @@ -394,7 +399,7 @@ def get_queue( def get_parse_title_path( self, title: Optional[str] = None, path: Optional[str] = None - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Returns the result of parsing a title or path. series and episodes will be returned only if the parsing matches to a specific series and one or more episodes. series and episodes will be formatted the same as Series and Episode @@ -408,7 +413,7 @@ def get_parse_title_path( PyarrMissingArgument: If no argument is passed, error Returns: - dict[str, Any]: Dictionary with items + dict[str, JsonDataType]: Dictionary with items """ if title is None and path is None: raise PyarrMissingArgument("A title or path must be specified") @@ -420,7 +425,7 @@ def get_parse_title_path( return self.assert_return("parse", self.ver_uri, dict, params) # GET /parse - def get_parsed_title(self, title: str) -> dict[str, Any]: + def get_parsed_title(self, title: str) -> dict[str, JsonDataType]: """Returns the result of parsing a title. series and episodes will be returned only if the parsing matches to a specific series and one or more episodes. series and episodes will be formatted the same as Series and Episode @@ -430,7 +435,7 @@ def get_parsed_title(self, title: str) -> dict[str, Any]: title (str): Title of series / episode Returns: - dict[str, Any]: List of dictionaries with items + dict[str, JsonDataType]: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. Please use get_parse_title_path()", @@ -440,7 +445,7 @@ def get_parsed_title(self, title: str) -> dict[str, Any]: return self.assert_return("parse", self.ver_uri, dict, {"title": title}) # GET /parse - def get_parsed_path(self, file_path: str) -> dict[str, Any]: + def get_parsed_path(self, file_path: str) -> dict[str, JsonDataType]: """Returns the result of parsing a file path. series and episodes will be returned only if the parsing matches to a specific series and one or more episodes. series and episodes will be formatted the same as Series and Episode @@ -450,7 +455,7 @@ def get_parsed_path(self, file_path: str) -> dict[str, Any]: file_path (str): file path of series / episode Returns: - dict[str, Any]: List of dictionaries with items + dict[str, JsonDataType]: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. Please use get_parse_title_path()", @@ -462,21 +467,21 @@ def get_parsed_path(self, file_path: str) -> dict[str, Any]: ## RELEASE # GET /release - def get_releases(self, id_: Optional[int] = None) -> list[dict[str, Any]]: + def get_releases(self, id_: Optional[int] = None) -> list[dict[str, JsonDataType]]: """Query indexers for latest releases. Args: id_ (int): Database id for episode to check Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ return self.assert_return( "release", self.ver_uri, list, {"episodeId": id_} if id_ else None ) # POST /release - def download_release(self, guid: str, indexer_id: int) -> dict[str, Any]: + def download_release(self, guid: str, indexer_id: int) -> dict[str, JsonDataType]: """Adds a previously searched release to the download client, if the release is still in Sonarr's search cache (30 minute cache). If the release is not found in the cache Sonarr will return a 404. @@ -486,7 +491,7 @@ def download_release(self, guid: str, indexer_id: int) -> dict[str, Any]: indexer_id (int): Database id of indexer to use Returns: - dict[str, Any]: Dictionary with download release details + dict[str, JsonDataType]: Dictionary with download release details """ data = {"guid": guid, "indexerId": indexer_id} return self.assert_return_post("release", self.ver_uri, dict, data=data) @@ -519,7 +524,7 @@ def push_release( # GET /series and /series/{id} def get_series( self, id_: Optional[int] = None - ) -> Union[list[dict[str, Any]], dict[str, Any]]: + ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: """Returns all series in your collection or the series with the matching series ID if one is found. @@ -527,7 +532,7 @@ def get_series( id_ (Optional[int], optional): Database id for series. Defaults to None. Returns: - Union[list[dict[str, Any]], dict[str, Any]]: List of dictionaries with items, or a + Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items, or a dictionary with single item """ path = f"series{f'/{id_}' if id_ else ''}" @@ -544,7 +549,7 @@ def add_series( ignore_episodes_with_files: bool = False, ignore_episodes_without_files: bool = False, search_for_missing_episodes: bool = False, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Adds a new series to your collection Note: @@ -562,7 +567,7 @@ def add_series( search_for_missing_episodes (bool, optional): Search for missing episodes to download. Defaults to False. Returns: - dict[str, Any]: Dictionary of added record + dict[str, JsonDataType]: Dictionary of added record """ series_json = self._series_json( tvdb_id, @@ -578,21 +583,21 @@ def add_series( return self.assert_return_post("series", self.ver_uri, dict, data=series_json) # PUT /series - def upd_series(self, data: dict[str, Any]) -> dict[str, Any]: + def upd_series(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: """Update an existing series Args: - data (dict[str, Any]): contains data obtained by get_series() + data (dict[str, JsonDataType]): contains data obtained by get_series() Returns: - dict[str, Any]: Dictionary or updated record + dict[str, JsonDataType]: Dictionary or updated record """ return self.assert_return_put("series", self.ver_uri, dict, data=data) # DELETE /series/{id} def del_series( self, id_: int, delete_files: bool = False - ) -> Union[Response, dict[str, Any], dict[Any, Any]]: + ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: """Delete the series with the given ID Args: @@ -609,7 +614,7 @@ def del_series( # GET /series/lookup def lookup_series( self, term: Optional[str] = None, id_: Optional[int] = None - ) -> list[dict[str, Any]]: + ) -> list[dict[str, JsonDataType]]: """Searches for new shows on TheTVDB.com utilizing sonarr.tv's caching and augmentation proxy. Args: @@ -617,7 +622,7 @@ def lookup_series( id_ (Optional[int], optional): TVDB ID for series Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ if term is None and id_ is None: raise PyarrMissingArgument("A term or TVDB id must be included") @@ -627,14 +632,14 @@ def lookup_series( ) # GET /series/lookup - def lookup_series_by_tvdb_id(self, id_: int) -> list[dict[str, Any]]: + def lookup_series_by_tvdb_id(self, id_: int) -> list[dict[str, JsonDataType]]: """Searches for new shows on TheTVDB.com utilizing sonarr.tv's caching and augmentation proxy. Args: id_ (int): TVDB ID Returns: - list[dict[str, Any]]: List of dictionaries with items + list[dict[str, JsonDataType]]: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. Please use lookup_series()", @@ -653,7 +658,7 @@ def get_history( sort_key: Optional[PyarrHistorySortKey] = None, sort_dir: Optional[PyarrSortDirection] = None, id_: Optional[int] = None, - ) -> dict[str, Any]: + ) -> dict[str, JsonDataType]: """Gets history (grabs/failures/completed) Args: @@ -664,7 +669,7 @@ def get_history( id_ (Optional[int], optional): Filter to a specific episode ID. Defaults to None. Returns: - dict[str, Any]: Dictionary with items + dict[str, JsonDataType]: Dictionary with items """ params: dict[str, Union[int, PyarrHistorySortKey, PyarrSortDirection]] = {} diff --git a/pyarr/types.py b/pyarr/types.py new file mode 100644 index 0000000..4f9457d --- /dev/null +++ b/pyarr/types.py @@ -0,0 +1,5 @@ +from typing import TypeVar, Union + +JsonDataType = TypeVar( + "JsonDataType", bound=Union[str, int, float, list, dict, bool, None] +) From 8509e59e567c78a2ca9ddf8ee6d5be9511fe3a13 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Wed, 9 Nov 2022 15:38:30 +0000 Subject: [PATCH 38/53] refactor: improve typing and assertions --- pyarr/base.py | 231 ++++++++++++--------------------------- pyarr/lidarr.py | 72 +++++------- pyarr/models/sonarr.py | 2 +- pyarr/radarr.py | 54 ++++----- pyarr/readarr.py | 46 ++++---- pyarr/request_handler.py | 17 ++- pyarr/sonarr.py | 58 ++++------ pyarr/types.py | 2 + tests/test_sonarr.py | 6 +- 9 files changed, 178 insertions(+), 310 deletions(-) diff --git a/pyarr/base.py b/pyarr/base.py index 5d27510..f8ac980 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -36,83 +36,6 @@ def __init__(self, host_url: str, api_key: str, ver_uri: str = "/"): self.ver_uri = ver_uri super().__init__(host_url, api_key) - def assert_return( - self, - path: str, - ver_uri: str, - typearg: type, - params: Optional[Union[dict[str, Any], list[tuple[str, Any]]]] = None, - ) -> Any: - """Helper function to add assert to enforce typing responses - - Args: - path (str): Path on API - ver_uri (str): API Version - typearg (type): Python Type - params (Union[dict[str, Any], None], optional): Any required params. Defaults to None. - - Returns: - Any: Any - """ - if params is None: - response = self._get(path, ver_uri) - else: - response = self._get(path, ver_uri, params=params) - assert isinstance(response, typearg) - return response - - def assert_return_put( - self, - path: str, - ver_uri: str, - typearg: type, - params: Optional[dict] = None, - data: Optional[Union[dict[str, Any], list[dict[str, Any]]]] = None, - ) -> Any: - """Helper function to add assert to enforce typing responses - - Args: - path (str): Path on API - ver_uri (str): API Version - typearg (type): Python Type - params (Union[dict[str, Any], None], optional): Any required params. Defaults to None. - - Returns: - Any: Any - """ - if params is None: - response = self._put(path, ver_uri, data=data) - else: - response = self._put(path, ver_uri, params=params, data=data) - assert isinstance(response, typearg) - return response - - def assert_return_post( - self, - path: str, - ver_uri: str, - typearg: type, - params: Optional[dict] = None, - data: Optional[Union[dict[str, Any], list[dict[str, Any]]]] = None, - ) -> Any: - """Helper function to add assert to enforce typing responses - - Args: - path (str): Path on API - ver_uri (str): API Version - typearg (type): Python Type - params (Union[dict[str, Any], None], optional): Any required params. Defaults to None. - - Returns: - Any: Any - """ - if params is None: - response = self._post(path, ver_uri, data=data) - else: - response = self._post(path, ver_uri, params=params, data=data) - assert isinstance(response, typearg) - return response - # CALENDAR # GET /calendar/ @@ -140,7 +63,7 @@ def get_calendar( params["end"] = end_date.strftime("%Y-%m-%d") params["unmonitored"] = unmonitored - return self.assert_return("calendar", self.ver_uri, list, params) + return self._get("calendar", self.ver_uri, params) # SYSTEM @@ -151,7 +74,7 @@ def get_system_status(self) -> dict[str, JsonDataType]: Returns: dict[str, JsonDataType]: Dictionary with items """ - return self.assert_return("system/status", self.ver_uri, dict) + return self._get("system/status", self.ver_uri) # GET /health def get_health(self) -> list[dict[str, JsonDataType]]: @@ -160,7 +83,7 @@ def get_health(self) -> list[dict[str, JsonDataType]]: Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return("health", self.ver_uri, list) + return self._get("health", self.ver_uri) # GET /metadata def get_metadata( @@ -174,9 +97,7 @@ def get_metadata( Returns: Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return( - f"metadata{f'/{id_}' if id_ else ''}", self.ver_uri, dict if id_ else list - ) + return self._get(f"metadata{f'/{id_}' if id_ else ''}", self.ver_uri) # GET /update def get_update(self) -> list[dict[str, JsonDataType]]: @@ -185,7 +106,7 @@ def get_update(self) -> list[dict[str, JsonDataType]]: Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return("update", self.ver_uri, list) + return self._get("update", self.ver_uri) # GET /rootfolder def get_root_folder( @@ -199,9 +120,7 @@ def get_root_folder( Returns: Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return( - f"rootfolder{f'/{id_}' if id_ else ''}", self.ver_uri, dict if id_ else list - ) + return self._get(f"rootfolder{f'/{id_}' if id_ else ''}", self.ver_uri) # DELETE /rootfolder def del_root_folder( @@ -227,7 +146,7 @@ def get_disk_space(self) -> list[dict[str, JsonDataType]]: Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return("diskspace", self.ver_uri, list) + return self._get("diskspace", self.ver_uri) # GET /system/backup def get_backup(self) -> list[dict[str, JsonDataType]]: @@ -236,7 +155,7 @@ def get_backup(self) -> list[dict[str, JsonDataType]]: Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return("system/backup", self.ver_uri, list) + return self._get("system/backup", self.ver_uri) # LOGS @@ -293,7 +212,7 @@ def get_log( "filter_key and filter_value must be used together" ) - return self.assert_return("log", self.ver_uri, dict, params) + return self._get("log", self.ver_uri, params) # GET /history def get_history( @@ -328,7 +247,7 @@ def get_history( elif sort_key or sort_dir: raise PyarrMissingArgument("sort_key and sort_dir must be used together") - return self.assert_return("history", self.ver_uri, dict, params) + return self._get("history", self.ver_uri, params) # BLOCKLIST @@ -365,7 +284,7 @@ def get_blocklist( elif sort_key or sort_dir: raise PyarrMissingArgument("sort_key and sort_dir must be used together") - return self.assert_return("blocklist", self.ver_uri, dict, params) + return self._get("blocklist", self.ver_uri, params) # DELETE /blocklist def del_blocklist( @@ -412,7 +331,7 @@ def get_quality_profile( """ path = f"qualityprofile{f'/{id_}' if id_ else ''}" - return self.assert_return(path, self.ver_uri, dict if id_ else list) + return self._get(path, self.ver_uri) # PUT /qualityprofile/{id} def upd_quality_profile( @@ -431,9 +350,7 @@ def upd_quality_profile( dict[str, JsonDataType]: Dictionary of updated record """ - return self.assert_return_put( - f"qualityprofile/{id_}", self.ver_uri, dict, data=data - ) + return self._put(f"qualityprofile/{id_}", self.ver_uri, data=data) # DELETE /qualityprofile def del_quality_profile( @@ -462,7 +379,7 @@ def get_quality_definition( Union[list[dict[str, JsonDataType]], dict[Any, Any]]: List of dictionaries with items """ path = f"qualitydefinition/{id_}" if id_ else "qualitydefinition" - return self.assert_return(path, self.ver_uri, dict if id_ else list) + return self._get(path, self.ver_uri) # PUT /qualitydefinition/{id} def upd_quality_definition( @@ -480,9 +397,7 @@ def upd_quality_definition( Returns: dict[str, JsonDataType]: Dictionary of updated record """ - return self.assert_return_put( - f"qualitydefinition/{id_}", self.ver_uri, dict, data=data - ) + return self._put(f"qualitydefinition/{id_}", self.ver_uri, data=data) # INDEXER @@ -499,7 +414,7 @@ def get_indexer( Union[list[dict[str, JsonDataType]], dict[Any, Any]]: List of dictionaries with items """ path = f"indexer/{id_}" if id_ else "indexer" - return self.assert_return(path, self.ver_uri, dict if id_ else list) + return self._get(path, self.ver_uri) # PUT /indexer/{id} def upd_indexer( @@ -517,7 +432,7 @@ def upd_indexer( Returns: dict[str, JsonDataType]: Dictionary of updated record """ - return self.assert_return_put(f"indexer/{id_}", self.ver_uri, dict, data=data) + return self._put(f"indexer/{id_}", self.ver_uri, data=data) # DELETE /indexer def del_indexer( @@ -601,7 +516,7 @@ def get_task( raise PyarrMissingArgument("sort_key and sort_dir must be used together") path = f"system/task/{id_}" if id_ else "system/task" - return self.assert_return(path, self.ver_uri, dict, params) + return self._get(path, self.ver_uri, params) # GET /remotepathmapping def get_remote_path_mapping( @@ -616,7 +531,7 @@ def get_remote_path_mapping( list[dict[str, JsonDataType]]: List of dictionaries with items """ _path = f"remotepathmapping{'' if id_ is None else f'/{id_}'}" - return self.assert_return(_path, self.ver_uri, dict if id_ else list) + return self._get(_path, self.ver_uri) # TODO: Add Delete remote path mapping # TODO: Add update remote path mapping @@ -630,7 +545,7 @@ def get_config_ui(self) -> dict[str, JsonDataType]: Returns: dict[str, JsonDataType]: List of dictionaries with items """ - return self.assert_return("config/ui", self.ver_uri, dict) + return self._get("config/ui", self.ver_uri) # PUT /config/ui def upd_config_ui(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: @@ -642,7 +557,7 @@ def upd_config_ui(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType Returns: dict[str, JsonDataType]: Dictionary with items """ - return self.assert_return_put("config/ui", self.ver_uri, dict, data=data) + return self._put("config/ui", self.ver_uri, data=data) # GET /config/host def get_config_host(self) -> dict[str, JsonDataType]: @@ -651,7 +566,7 @@ def get_config_host(self) -> dict[str, JsonDataType]: Returns: dict[str, JsonDataType]: Dictionaries with items """ - return self.assert_return("config/host", self.ver_uri, dict) + return self._get("config/host", self.ver_uri) # PUT /config/host def upd_config_host(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: @@ -663,7 +578,7 @@ def upd_config_host(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataTy Returns: dict[str, JsonDataType]: Dictionaries with items """ - return self.assert_return_put("config/host", self.ver_uri, dict, data=data) + return self._put("config/host", self.ver_uri, data=data) # GET /config/naming def get_config_naming(self) -> dict[str, JsonDataType]: @@ -672,7 +587,7 @@ def get_config_naming(self) -> dict[str, JsonDataType]: Returns: dict[str, JsonDataType]: Dictionary with items """ - return self.assert_return("config/naming", self.ver_uri, dict) + return self._get("config/naming", self.ver_uri) # PUT /config/naming def upd_config_naming( @@ -686,7 +601,7 @@ def upd_config_naming( Returns: dict[str, JsonDataType]: Dictionary with items """ - return self.assert_return_put("config/naming", self.ver_uri, dict, data=data) + return self._put("config/naming", self.ver_uri, data=data) # GET /config/mediamanagement def get_media_management(self) -> dict[str, JsonDataType]: @@ -695,7 +610,7 @@ def get_media_management(self) -> dict[str, JsonDataType]: Returns: dict[str, JsonDataType]: Dictionary with items """ - return self.assert_return("config/mediamanagement", self.ver_uri, dict) + return self._get("config/mediamanagement", self.ver_uri) # PUT /config/mediamanagement def upd_media_management( @@ -712,9 +627,7 @@ def upd_media_management( Returns: dict[str, JsonDataType]: Dictionary with items """ - return self.assert_return_put( - "config/mediamanagement", self.ver_uri, dict, data=data - ) + return self._put("config/mediamanagement", self.ver_uri, data=data) # NOTIFICATIONS @@ -731,9 +644,7 @@ def get_notification( Union[list[dict[str, JsonDataType]], dict[Any, Any]]: List of dictionaries with items """ _path = "" if id_ is None else f"/{id_}" - return self.assert_return( - f"notification{_path}", self.ver_uri, dict if id_ else list - ) + return self._get(f"notification{_path}", self.ver_uri) # GET /notification/schema def get_notification_schema( @@ -747,15 +658,17 @@ def get_notification_schema( Returns: Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ - response = self.assert_return("notification/schema", self.ver_uri, list) + response: list[dict[str, JsonDataType]] = self._get( + "notification/schema", self.ver_uri + ) if implementation: - response = next( - (item for item in response if item["implementation"] == implementation), - None, - ) - if not response: + if filter_response := [ + item for item in response if item["implementation"] == implementation + ]: + response = filter_response + else: raise PyarrRecordNotFound( - f"a record with implementation {implementation} was not found" + f"A record with implementation {implementation} was not found" ) return response @@ -774,7 +687,7 @@ def add_notification( Returns: dict[str, JsonDataType]: dictionary of added item """ - return self.assert_return_post("notification", self.ver_uri, dict, data=data) + return self._post("notification", self.ver_uri, data=data) # PUT /notification/{id} def upd_notification( @@ -789,9 +702,7 @@ def upd_notification( Returns: dict[str, JsonDataType]: Dictionary of updated record """ - return self.assert_return_put( - f"notification/{id_}", self.ver_uri, dict, data=data - ) + return self._put(f"notification/{id_}", self.ver_uri, data=data) # DELETE /notification/{id} def del_notification( @@ -822,7 +733,7 @@ def get_tag( Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"tag/{id_}" if id_ else "tag" - return self.assert_return(path, self.ver_uri, dict if id_ else list) + return self._get(path, self.ver_uri) # GET /tag/detail/{id} def get_tag_detail( @@ -837,7 +748,7 @@ def get_tag_detail( Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"tag/detail/{id_}" if id_ else "tag/detail" - return self.assert_return(path, self.ver_uri, dict if id_ else list) + return self._get(path, self.ver_uri) # POST /tag def create_tag(self, label: str) -> dict[str, JsonDataType]: @@ -850,7 +761,7 @@ def create_tag(self, label: str) -> dict[str, JsonDataType]: dict[str, JsonDataType]: Dictionary of new record """ data = {"label": label} - return self.assert_return_post("tag", self.ver_uri, dict, data=data) + return self._post("tag", self.ver_uri, data=data) # PUT /tag/{id} def upd_tag(self, id_: int, label: str) -> dict[str, JsonDataType]: @@ -867,7 +778,7 @@ def upd_tag(self, id_: int, label: str) -> dict[str, JsonDataType]: dict[str, JsonDataType]: Dictionary of updated items """ data = {"id": id_, "label": label} - return self.assert_return_put("tag", self.ver_uri, dict, data=data) + return self._put("tag", self.ver_uri, data=data) # DELETE /tag/{id} def del_tag( @@ -898,7 +809,7 @@ def get_download_client( Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"downloadclient/{id_}" if id_ else "downloadclient" - return self.assert_return(path, self.ver_uri, dict if id_ else list) + return self._get(path, self.ver_uri) # GET /downloadclient/schema def get_download_client_schema( @@ -912,17 +823,18 @@ def get_download_client_schema( Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - response = self.assert_return("downloadclient/schema", self.ver_uri, list) + response: list[dict[str, JsonDataType]] = self._get( + "downloadclient/schema", self.ver_uri + ) if implementation: - response = next( - (item for item in response if item["implementation"] == implementation), - None, - ) - if not response: + if filter_response := [ + item for item in response if item["implementation"] == implementation + ]: + response = filter_response + else: raise PyarrRecordNotFound( - f"a record with implementation {implementation} was not found" + f"A record with implementation {implementation} was not found" ) - return response # POST /downloadclient/ @@ -940,7 +852,7 @@ def add_download_client( Returns: dict[str, JsonDataType]: dictionary of added item """ - return self.assert_return_post("downloadclient", self.ver_uri, dict, data=data) + return self._post("downloadclient", self.ver_uri, data=data) # PUT /downloadclient/{id} def upd_download_client( @@ -955,9 +867,7 @@ def upd_download_client( Returns: dict[str, v]: dictionary of updated item """ - return self.assert_return_put( - f"downloadclient/{id_}", self.ver_uri, dict, data=data - ) + return self._put(f"downloadclient/{id_}", self.ver_uri, data=data) # DELETE /downloadclient/{id} def del_download_client( @@ -988,7 +898,7 @@ def get_import_list( list[dict[str, JsonDataType]]: List of dictionaries with items """ path = f"importlist/{id_}" if id_ else "importlist" - return self.assert_return(path, self.ver_uri, dict if id_ else list) + return self._get(path, self.ver_uri) def get_import_list_schema( self, implementation: Optional[PyarrImportListSchema] = None @@ -1001,17 +911,18 @@ def get_import_list_schema( Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - response = self.assert_return("importlist/schema", self.ver_uri, list) + response: list[dict[str, JsonDataType]] = self._get( + "importlist/schema", self.ver_uri + ) if implementation: - response = next( - (item for item in response if item["implementation"] == implementation), - None, - ) - if not response: + if filter_response := [ + item for item in response if item["implementation"] == implementation + ]: + response = filter_response + else: raise PyarrRecordNotFound( - f"a record with implementation {implementation} was not found" + f"A record with implementation {implementation} was not found" ) - return response # POST /importlist/ @@ -1027,7 +938,7 @@ def add_import_list(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataTy Returns: dict[str, JsonDataType]: dictionary of added item """ - return self.assert_return_post("importlist", self.ver_uri, dict, data=data) + return self._post("importlist", self.ver_uri, data=data) # PUT /importlist/{id} def upd_import_list( @@ -1042,9 +953,7 @@ def upd_import_list( Returns: dict[str, JsonDataType]: Dictionary of updated data """ - return self.assert_return_put( - f"importlist/{id_}", self.ver_uri, dict, data=data - ) + return self._put(f"importlist/{id_}", self.ver_uri, data=data) # DELETE /importlist/{id} def del_import_list( @@ -1067,7 +976,7 @@ def get_config_download_client(self) -> dict[str, JsonDataType]: Returns: dict[str, JsonDataType]: Dictionary of configuration """ - return self.assert_return("config/downloadclient", self.ver_uri, dict) + return self._get("config/downloadclient", self.ver_uri) def upd_config_download_client( self, data: dict[str, JsonDataType] @@ -1083,6 +992,4 @@ def upd_config_download_client( Returns: dict[str, JsonDataType]: dictionary with updated items """ - return self.assert_return_put( - "config/downloadclient", self.ver_uri, dict, data=data - ) + return self._put("config/downloadclient", self.ver_uri, data=data) diff --git a/pyarr/lidarr.py b/pyarr/lidarr.py index 719b514..29492dd 100644 --- a/pyarr/lidarr.py +++ b/pyarr/lidarr.py @@ -57,9 +57,7 @@ def add_root_folder( "path": path, } - return self.assert_return_post( - "rootfolder", self.ver_uri, dict, data=folder_json - ) + return self._post("rootfolder", self.ver_uri, data=folder_json) def lookup(self, term: str) -> list[dict[str, JsonDataType]]: """Search for an artist / album / song @@ -72,7 +70,7 @@ def lookup(self, term: str) -> list[dict[str, JsonDataType]]: Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return("search", self.ver_uri, list, params={"term": term}) + return self._get("search", self.ver_uri, params={"term": term}) def lookup_artist(self, term: str) -> list[dict[str, JsonDataType]]: """Search for an Artist to add to the database @@ -86,9 +84,7 @@ def lookup_artist(self, term: str) -> list[dict[str, JsonDataType]]: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return( - "artist/lookup", self.ver_uri, list, params={"term": term} - ) + return self._get("artist/lookup", self.ver_uri, params={"term": term}) def lookup_album(self, term: str) -> list[dict[str, JsonDataType]]: """Search for an Album to add to the database @@ -101,9 +97,7 @@ def lookup_album(self, term: str) -> list[dict[str, JsonDataType]]: Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return( - "album/lookup", self.ver_uri, list, params={"term": term} - ) + return self._get("album/lookup", self.ver_uri, params={"term": term}) def get_artist( self, id_: Optional[Union[str, int]] = None @@ -121,10 +115,9 @@ def get_artist( """ _path = "" if isinstance(id_, str) or id_ is None else f"/{id_}" - return self.assert_return( + return self._get( f"artist{_path}", self.ver_uri, - dict if id_ else list, params={"mbId": id_} if isinstance(id_, str) else None, ) @@ -218,7 +211,7 @@ def add_artist( artist_monitor, artist_search_for_missing_albums, ) - return self.assert_return_post("artist", self.ver_uri, dict, data=artist_json) + return self._post("artist", self.ver_uri, data=artist_json) def upd_artist(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: """Update an existing artist @@ -231,7 +224,7 @@ def upd_artist(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: Returns: dict[str, JsonDataType]: Dictionary of updated record """ - return self.assert_return_put("artist", self.ver_uri, dict, data=data) + return self._put("artist", self.ver_uri, data=data) def delete_artist( self, id_: int @@ -273,10 +266,9 @@ def get_album( if foreignAlbumId is not None: params["foreignAlbumId"] = foreignAlbumId _path = "" if isinstance(albumIds, list) or albumIds is None else f"/{albumIds}" - return self.assert_return( + return self._get( f"album{_path}", self.ver_uri, - dict if isinstance(albumIds, int) or foreignAlbumId else list, params=params, ) @@ -368,7 +360,7 @@ def add_album( artist_monitor, artist_search_for_missing_albums, ) - return self.assert_return_post("album", self.ver_uri, dict, data=album_json) + return self._post("album", self.ver_uri, data=album_json) def upd_album(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: """Update an album @@ -382,7 +374,7 @@ def upd_album(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: Returns: dict[str, JsonDataType]: Dictionary of updated record """ - return self.assert_return_put("album", self.ver_uri, dict, data=data) + return self._put("album", self.ver_uri, data=data) def delete_album( self, id_: int @@ -407,9 +399,7 @@ def post_command(self, name: LidarrCommand) -> dict[str, JsonDataType]: Returns: dict[str, JsonDataType]: dictionary of executed command information """ - return self.assert_return_post( - "command", self.ver_uri, dict, data={"name": name} - ) + return self._post("command", self.ver_uri, data={"name": name}) # GET /wanted def get_wanted( @@ -446,10 +436,9 @@ def get_wanted( raise PyarrMissingArgument("sort_key and sort_dir must be used together") _path = "missing" if missing else "cutoff" - return self.assert_return( + return self._get( f"wanted/{_path}{'' if id_ is None else f'/{id_}'}", self.ver_uri, - dict, params=params, ) @@ -464,7 +453,7 @@ def get_parse(self, title: str) -> list[dict[str, JsonDataType]]: Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return("parse", self.ver_uri, list, params={"title": title}) + return self._get("parse", self.ver_uri, params={"title": title}) # GET /track def get_tracks( @@ -505,10 +494,9 @@ def get_tracks( "One of artistId, albumId, albumReleaseId or trackIds must be provided" ) - return self.assert_return( + return self._get( f"track{f'/{trackIds}' if isinstance(trackIds, int) else ''}", self.ver_uri, - dict if isinstance(trackIds, int) else list, params=params, ) @@ -552,10 +540,9 @@ def get_track_file( params["trackFileIds"] = trackFileIds if unmapped is not None: params["unmapped"] = unmapped - return self.assert_return( + return self._get( f"trackfile{f'/{trackFileIds}' if isinstance(trackFileIds, int) else ''}", self.ver_uri, - dict if isinstance(trackFileIds, int) else list, params=params, ) @@ -572,7 +559,7 @@ def upd_track_file(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataTyp Returns: dict[str, JsonDataType]: Dictionary of updated record """ - return self.assert_return_put("trackfile", self.ver_uri, dict, data=data) + return self._put("trackfile", self.ver_uri, data=data) # DEL /trackfile/{ids_} def delete_track_file( @@ -604,10 +591,9 @@ def get_metadata_profile( Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return( + return self._get( f"metadataprofile{f'/{id_}' if id_ else ''}", self.ver_uri, - dict if id_ else list, ) # TODO: POST /metadataprofile @@ -624,7 +610,7 @@ def upd_metadata_profile( Returns: dict[str, JsonDataType]: Dictionary of updated record """ - return self.assert_return_put("metadataprofile", self.ver_uri, dict, data=data) + return self._put("metadataprofile", self.ver_uri, data=data) # GET /config/metadataProvider def get_metadata_provider(self) -> dict[str, JsonDataType]: @@ -633,7 +619,7 @@ def get_metadata_provider(self) -> dict[str, JsonDataType]: Returns: dict[str, JsonDataType]: Dictionary with data """ - return self.assert_return("config/metadataProvider", self.ver_uri, dict) + return self._get("config/metadataProvider", self.ver_uri) # PUT /config/metadataprovider def upd_metadata_provider( @@ -650,9 +636,7 @@ def upd_metadata_provider( Returns: dict[str, JsonDataType]: Dictionary of updated record """ - return self.assert_return_put( - "config/metadataProvider", self.ver_uri, dict, data=data - ) + return self._put("config/metadataProvider", self.ver_uri, data=data) # GET /queue def get_queue( @@ -697,7 +681,7 @@ def get_queue( if include_artist: params["includeArtist"] = include_artist - return self.assert_return("queue", self.ver_uri, dict, params=params) + return self._get("queue", self.ver_uri, params=params) # GET /queue/details def get_queue_details( @@ -729,7 +713,7 @@ def get_queue_details( if albumIds: params["albumIds"] = albumIds - return self.assert_return("queue/details", self.ver_uri, list, params=params) + return self._get("queue/details", self.ver_uri, params=params) # GET /release def get_release( @@ -749,7 +733,7 @@ def get_release( params["artistId"] = artistId if albumId: params["albumId"] = albumId - return self.assert_return("release", self.ver_uri, list, params=params) + return self._get("release", self.ver_uri, params=params) # GET /rename def get_rename( @@ -767,10 +751,9 @@ def get_rename( params = {"artistId": artistId} if albumId: params["albumId"] = albumId - return self.assert_return( + return self._get( "rename", self.ver_uri, - list, params=params, ) @@ -805,7 +788,7 @@ def get_manual_import( if replaceExistingFiles: params["replaceExistingFiles"] = replaceExistingFiles - return self.assert_return("manualimport", self.ver_uri, list, params=params) + return self._get("manualimport", self.ver_uri, params=params) # PUT /manualimport def upd_manual_import( @@ -822,7 +805,7 @@ def upd_manual_import( Returns: dict[str, JsonDataType]: Dictionary of updated record """ - return self.assert_return_put("manualimport", self.ver_uri, dict, data=data) + return self._put("manualimport", self.ver_uri, data=data) # GET /retag def get_retag( @@ -842,9 +825,8 @@ def get_retag( params["artistId"] = artistId if albumId: params["albumId"] = albumId - return self.assert_return( + return self._get( "retag", self.ver_uri, - list, params=params, ) diff --git a/pyarr/models/sonarr.py b/pyarr/models/sonarr.py index ac396a9..576a2eb 100644 --- a/pyarr/models/sonarr.py +++ b/pyarr/models/sonarr.py @@ -12,7 +12,7 @@ class SonarrCommands(str, Enum): BACKUP = "Backup" """No parameters required""" DOWNLOADED_EPISODES_SCAN = "DownloadedEpisodesScan" - """TBC Still need to test required parameters""" + """No parameters required""" EPISODE_SEARCH = "EpisodeSearch" """episodeIds (lsit[int], optional) - One or more episodeIds in a list""" MISSING_EPISODE_SEARCH = "missingEpisodeSearch" diff --git a/pyarr/radarr.py b/pyarr/radarr.py index c986ff0..f890cb3 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -96,9 +96,7 @@ def add_root_folder( Returns: dict[str, JsonDataType]: Dictionary containing path details """ - return self.assert_return_post( - "rootfolder", self.ver_uri, dict, data={"path": directory} - ) + return self._post("rootfolder", self.ver_uri, data={"path": directory}) ## MOVIE @@ -124,10 +122,9 @@ def get_movie( if tmdb: params["tmdbid"] = id_ - return self.assert_return( + return self._get( f"movie{'' if id_ is None or tmdb else f'/{id_}'}", self.ver_uri, - dict if id_ and not tmdb else list, params=params, ) @@ -165,7 +162,7 @@ def add_movie( id_, root_dir, quality_profile_id, monitored, search_for_movie ) - return self.assert_return_post("movie", self.ver_uri, dict, data=movie_json) + return self._post("movie", self.ver_uri, data=movie_json) # PUT /movie def upd_movie( @@ -186,10 +183,9 @@ def upd_movie( if move_files is not None: params["moveFiles"] = move_files print(type(data)) - return self.assert_return_put( + return self._put( f"movie{'/editor' if isinstance(data, list) else ''}", self.ver_uri, - list if isinstance(data, list) else dict, data=data, params=params, ) @@ -213,7 +209,7 @@ def get_movie_by_movie_id(self, id_: int) -> dict[str, JsonDataType]: DeprecationWarning, stacklevel=2, ) - return self.assert_return(f"movie/{id_}", self.ver_uri, dict) + return self._get(f"movie/{id_}", self.ver_uri) # DELETE /movie/{id} def del_movie( @@ -262,7 +258,7 @@ def lookup_movie(self, term: str) -> list[dict[str, JsonDataType]]: list[dict[str, JsonDataType]]: List of dictionaries with items """ params = {"term": term} - return self.assert_return("movie/lookup", self.ver_uri, list, params) + return self._get("movie/lookup", self.ver_uri, params) # GET /movie/lookup def lookup_movie_by_tmdb_id(self, id_: int) -> list[dict[str, JsonDataType]]: @@ -280,7 +276,7 @@ def lookup_movie_by_tmdb_id(self, id_: int) -> list[dict[str, JsonDataType]]: stacklevel=2, ) params = {"term": f"tmdb:{id_}"} - return self.assert_return("movie/lookup", self.ver_uri, list, params) + return self._get("movie/lookup", self.ver_uri, params) # GET /movie/lookup def lookup_movie_by_imdb_id(self, id_: str) -> list[dict[str, JsonDataType]]: @@ -298,7 +294,7 @@ def lookup_movie_by_imdb_id(self, id_: str) -> list[dict[str, JsonDataType]]: stacklevel=2, ) params = {"term": f"imdb:{id_}"} - return self.assert_return("movie/lookup", self.ver_uri, list, params) + return self._get("movie/lookup", self.ver_uri, params) # PUT /movie/editor def upd_movies( @@ -318,7 +314,7 @@ def upd_movies( DeprecationWarning, stacklevel=2, ) - return self.assert_return_put("movie/editor", self.ver_uri, list, data=data) + return self._put("movie/editor", self.ver_uri, data=data) # DELETE /movie/editor def del_movies( @@ -359,7 +355,7 @@ def import_movies( Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return_post("movie/import", self.ver_uri, list, data=data) + return self._post("movie/import", self.ver_uri, data=data) ## MOVIEFILE @@ -376,7 +372,7 @@ def get_movie_files_by_movie_id(self, id_: int) -> list[dict[str, JsonDataType]] """ params = {"movieId": id_} - return self.assert_return("moviefile", self.ver_uri, list, params) + return self._get("moviefile", self.ver_uri, params) # GET /moviefile def get_movie_file(self, id_: Union[int, list]) -> list[dict[str, JsonDataType]]: @@ -389,13 +385,9 @@ def get_movie_file(self, id_: Union[int, list]) -> list[dict[str, JsonDataType]] list[dict[str, JsonDataType]]: List of dictionaries with items """ if not isinstance(id_, list): - return self.assert_return( - f"moviefile/{id_}", - self.ver_uri, - dict, - ) + return self._get(f"moviefile/{id_}", self.ver_uri) params = [("movieFileIds", file) for file in id_] - return self.assert_return("moviefile", self.ver_uri, list, params=params) + return self._get("moviefile", self.ver_uri, params=params) # DELETE /moviefile/{id} def del_movie_file( @@ -434,7 +426,7 @@ def get_movie_history( params: dict[str, Union[int, str]] = {"movieId": id_} if event_type: params["eventType"] = event_type - return self.assert_return("history/movie", self.ver_uri, list, params) + return self._get("history/movie", self.ver_uri, params) ## BLOCKLIST @@ -452,7 +444,7 @@ def get_blocklist_by_movie_id( list[dict[str, JsonDataType]]: List of dictionaries with items """ params = {"movieId": id_} - return self.assert_return("blocklist/movie", self.ver_uri, list, params) + return self._get("blocklist/movie", self.ver_uri, params) ## QUEUE @@ -491,7 +483,7 @@ def get_queue( if include_unknown_movie_items is not None: params["includeUnknownMovieItems"] = include_unknown_movie_items - return self.assert_return("queue", self.ver_uri, dict, params) + return self._get("queue", self.ver_uri, params) # GET /queue/details def get_queue_details( @@ -514,7 +506,7 @@ def get_queue_details( if include_movie is not None: params["includeMovie"] = include_movie - return self.assert_return("queue/details", self.ver_uri, list, params) + return self._get("queue/details", self.ver_uri, params) # GET /queue/status def get_queue_status(self) -> dict[str, JsonDataType]: @@ -523,7 +515,7 @@ def get_queue_status(self) -> dict[str, JsonDataType]: Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return("queue/status", self.ver_uri, dict) + return self._get("queue/status", self.ver_uri) # DELETE /queue/bulk def del_queue_bulk( @@ -556,7 +548,7 @@ def force_grab_queue_item(self, id_: int) -> dict[str, JsonDataType]: Returns: dict[str, JsonDataType]: Dictionary with record """ - return self.assert_return_post(f"queue/grab/{id_}", self.ver_uri, dict) + return self._post(f"queue/grab/{id_}", self.ver_uri) ## INDEXER @@ -571,7 +563,7 @@ def get_indexer(self, id_: Optional[int] = None) -> list[dict[str, JsonDataType] list[dict[str, JsonDataType]]: List of dictionaries with items """ path = f"indexer/{id_}" if id_ else "indexer" - return self.assert_return(path, self.ver_uri, dict if id_ else list) + return self._get(path, self.ver_uri) # PUT /indexer/{id} def upd_indexer( @@ -586,7 +578,7 @@ def upd_indexer( Returns: dict[str, JsonDataType]: Dictionary with updated record """ - return self.assert_return_put(f"indexer/{id_}", self.ver_uri, dict, data=data) + return self._put(f"indexer/{id_}", self.ver_uri, data=data) # DELETE /indexer/{id} def del_indexer( @@ -634,7 +626,7 @@ def post_command( } if kwargs: data |= kwargs - return self.assert_return_post("command", self.ver_uri, dict, data=data) + return self._post("command", self.ver_uri, data=data) ## CUSTOM FILTERS @@ -645,4 +637,4 @@ def get_custom_filter(self) -> list[dict[str, JsonDataType]]: Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return("customfilter", self.ver_uri, list) + return self._get("customfilter", self.ver_uri) diff --git a/pyarr/readarr.py b/pyarr/readarr.py index 8510733..9de66c4 100644 --- a/pyarr/readarr.py +++ b/pyarr/readarr.py @@ -47,7 +47,7 @@ def lookup(self, term: str) -> list[dict[str, JsonDataType]]: Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return("search", self.ver_uri, list, params={"term": term}) + return self._get("search", self.ver_uri, params={"term": term}) # GET /book/lookup def lookup_book(self, term: str) -> list[dict[str, JsonDataType]]: @@ -63,7 +63,7 @@ def lookup_book(self, term: str) -> list[dict[str, JsonDataType]]: Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return("book/lookup", self.ver_uri, list, {"term": term}) + return self._get("book/lookup", self.ver_uri, {"term": term}) # GET /author/lookup/ def lookup_author(self, term: str) -> list[dict[str, JsonDataType]]: @@ -76,7 +76,7 @@ def lookup_author(self, term: str) -> list[dict[str, JsonDataType]]: list[dict[str, JsonDataType]]: List of dictionaries with items """ params = {"term": term} - return self.assert_return("author/lookup", self.ver_uri, list, params) + return self._get("author/lookup", self.ver_uri, params) def _book_json( self, @@ -216,7 +216,7 @@ def get_command( Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"command/{id_}" if id_ else "command" - return self.assert_return(path, self.ver_uri, dict if id_ else list) + return self._get(path, self.ver_uri) # POST /command def post_command(self, name: ReadarrCommands, **kwargs) -> dict[str, JsonDataType]: @@ -242,7 +242,7 @@ def post_command(self, name: ReadarrCommands, **kwargs) -> dict[str, JsonDataTyp "name": name, **kwargs, } - return self.assert_return_post("command", self.ver_uri, dict, data=data) + return self._post("command", self.ver_uri, data=data) ## WANTED (MISSING) @@ -275,7 +275,7 @@ def get_missing( params["sortDirection"] = sort_dir elif sort_key or sort_dir: raise PyarrMissingArgument("sort_key and sort_dir must be used together") - return self.assert_return("wanted/missing", self.ver_uri, dict, params) + return self._get("wanted/missing", self.ver_uri, params) # GET /wanted/cutoff def get_cutoff( @@ -310,7 +310,7 @@ def get_cutoff( raise PyarrMissingArgument("sort_key and sort_dir must be used together") if monitored: params["monitored"] = monitored - return self.assert_return("wanted/cutoff", self.ver_uri, dict, params) + return self._get("wanted/cutoff", self.ver_uri, params) ## QUEUE @@ -356,7 +356,7 @@ def get_queue( if include_book: params["includeBook"] = include_book - return self.assert_return("queue", self.ver_uri, dict, params) + return self._get("queue", self.ver_uri, params) # GET /metadataprofile/{id} def get_metadata_profile( @@ -371,7 +371,7 @@ def get_metadata_profile( Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"metadataprofile/{id_}" if id_ else "metadataprofile" - return self.assert_return(path, self.ver_uri, dict if id_ else list) + return self._get(path, self.ver_uri) # GET /delayprofile/{id} def get_delay_profile( @@ -386,7 +386,7 @@ def get_delay_profile( Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"delayprofile/{id_}" if id_ else "delayprofile" - return self.assert_return(path, self.ver_uri, dict if id_ else list) + return self._get(path, self.ver_uri) # GET /releaseprofile/{id} def get_release_profile( @@ -401,7 +401,7 @@ def get_release_profile( Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"releaseprofile/{id_}" if id_ else "releaseprofile" - return self.assert_return(path, self.ver_uri, dict if id_ else list) + return self._get(path, self.ver_uri) ## BOOKS @@ -419,7 +419,7 @@ def get_book( Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"book/{id_}" if id_ else "book" - return self.assert_return(path, self.ver_uri, dict if id_ else list) + return self._get(path, self.ver_uri) # POST /book def add_book( @@ -462,7 +462,7 @@ def add_book( author_monitor, author_search_for_missing_books, ) - return self.assert_return_post("book", self.ver_uri, dict, data=book_json) + return self._post("book", self.ver_uri, data=book_json) # PUT /book/{id} def upd_book( @@ -480,7 +480,7 @@ def upd_book( Returns: dict[str, JsonDataType]: Dictionary with updated record """ - return self.assert_return_put(f"book/{id_}", self.ver_uri, dict, data=data) + return self._put(f"book/{id_}", self.ver_uri, data=data) # DELETE /book/{id} def del_book( @@ -522,7 +522,7 @@ def get_author( Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items """ path = f"author/{id_}" if id_ else "author" - return self.assert_return(path, self.ver_uri, dict if id_ else list) + return self._get(path, self.ver_uri) # POST /author/ def add_author( @@ -558,7 +558,7 @@ def add_author( author_monitor, author_search_for_missing_books, ) - return self.assert_return_post("author", self.ver_uri, dict, data=author_json) + return self._post("author", self.ver_uri, data=author_json) # PUT /author/{id} def upd_author( @@ -576,7 +576,7 @@ def upd_author( Returns: dict[str, JsonDataType]: Dictionary with updated record """ - return self.assert_return_put(f"author/{id_}", self.ver_uri, dict, data=data) + return self._put(f"author/{id_}", self.ver_uri, data=data) # DELETE /author/{id} def del_author( @@ -612,7 +612,7 @@ def get_log_file(self) -> list[dict[str, JsonDataType]]: Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return("log/file", self.ver_uri, list) + return self._get("log/file", self.ver_uri) # CONFIG @@ -659,9 +659,7 @@ def add_root_folder( "name": name, "path": path, } - return self.assert_return_post( - "rootFolder", self.ver_uri, dict, data=folder_json - ) + return self._post("rootFolder", self.ver_uri, data=folder_json) # GET /config/metadataProvider def get_metadata_provider(self) -> dict[str, JsonDataType]: @@ -670,7 +668,7 @@ def get_metadata_provider(self) -> dict[str, JsonDataType]: Returns: dict[str, JsonDataType]: Dictionary of record """ - return self.assert_return("config/metadataProvider", self.ver_uri, dict) + return self._get("config/metadataProvider", self.ver_uri) # PUT /config/metadataProvider def upd_metadata_provider( @@ -687,6 +685,4 @@ def upd_metadata_provider( Returns: dict[str, Any]: Dictionary of updated record """ - return self.assert_return_put( - "config/metadataProvider", self.ver_uri, dict, data=data - ) + return self._put("config/metadataProvider", self.ver_uri, data=data) diff --git a/pyarr/request_handler.py b/pyarr/request_handler.py index f579daa..8c14d95 100644 --- a/pyarr/request_handler.py +++ b/pyarr/request_handler.py @@ -12,6 +12,7 @@ PyarrResourceNotFound, PyarrUnauthorizedError, ) +from .types import _ReturnType class RequestHandler: @@ -63,7 +64,7 @@ def _get( path: str, ver_uri: str = "", params: Union[dict[str, Any], list[tuple[str, Any]], None] = None, - ) -> Union[list[dict], dict[str, Any]]: + ) -> _ReturnType: """Wrapper on any get requests Args: @@ -86,11 +87,7 @@ def _get( "Timeout occurred while connecting to API." ) from exception response = _process_response(res) - if isinstance(response, dict): - assert isinstance(response, dict) - else: - assert isinstance(response, list) - return response + return self._return(res, dict if isinstance(response, dict) else list) def _post( self, @@ -98,7 +95,7 @@ def _post( ver_uri: str = "", params: Union[dict, None] = None, data: Union[list[dict], dict, None] = None, - ) -> Union[list[dict[str, Any]], dict[str, Any]]: + ) -> _ReturnType: """Wrapper on any post requests Args: @@ -128,14 +125,16 @@ def _post( def _put( self, path: str, - ver_uri: str = "", + ver_uri: str, params: Optional[dict] = None, data: Optional[Union[dict[str, Any], list[dict[str, Any]]]] = None, - ) -> Union[dict[str, Any], list[dict[str, Any]]]: + ) -> _ReturnType: """Wrapper on any put requests Args: path (str): Path to API endpoint e.g. /api/manualimport + ver_uri (str): API Version + typevar (type): Python Type params (dict, optional): URL Parameters to send with the request. Defaults to None. data (dict, optional): Payload to send with request. Defaults to None. diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index e82b2c7..cd8d323 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -87,9 +87,7 @@ def add_root_folder( Returns: dict[str, JsonDataType]: Dictionary containing path details """ - return self.assert_return_post( - "rootfolder", self.ver_uri, dict, data={"path": directory} - ) + return self._post("rootfolder", self.ver_uri, data={"path": directory}) ## COMMAND @@ -106,7 +104,7 @@ def get_command( list[dict[str, JsonDataType]]: List of dictionaries with items """ path = f"command{f'/{id_}' if id_ else ''}" - return self.assert_return(path, self.ver_uri, dict if id_ else list) + return self._get(path, self.ver_uri) # POST /command # TODO: Add more logic to ensure correct kwargs for a command @@ -142,7 +140,7 @@ def post_command( } if kwargs: data |= kwargs - return self.assert_return_post("command", self.ver_uri, dict, data=data) + return self._post("command", self.ver_uri, data=data) ## EPISODE @@ -157,10 +155,9 @@ def get_episode(self, id_: int, series: bool = False) -> dict[str, JsonDataType] Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return( + return self._get( f"episode{'' if series else f'/{id_}'}", self.ver_uri, - list if series else dict, params={"seriesId": id_} if series else None, ) @@ -185,7 +182,7 @@ def get_episodes_by_series_id(self, id_: int) -> list[dict[str, JsonDataType]]: stacklevel=2, ) params = {"seriesId": id_} - return self.assert_return("episode", self.ver_uri, list, params) + return self._get("episode", self.ver_uri, params) # GET /episode/{id} def get_episode_by_episode_id(self, id_: int) -> dict[str, JsonDataType]: @@ -206,7 +203,7 @@ def get_episode_by_episode_id(self, id_: int) -> dict[str, JsonDataType]: DeprecationWarning, stacklevel=2, ) - return self.assert_return(f"episode/{id_}", self.ver_uri, dict) + return self._get(f"episode/{id_}", self.ver_uri) # PUT /episode def upd_episode( @@ -227,7 +224,7 @@ def upd_episode( Returns: dict[str, JsonDataType]: Dictionary with updated record """ - return self.assert_return_put(f"episode/{id_}", self.ver_uri, dict, data=data) + return self._put(f"episode/{id_}", self.ver_uri, data=data) ## EPISODE FILE @@ -247,7 +244,7 @@ def get_episode_files_by_series_id(self, id_: int) -> list[dict[str, JsonDataTyp stacklevel=2, ) params = {"seriesId": id_} - return self.assert_return("episodefile", self.ver_uri, list, params) + return self._get("episodefile", self.ver_uri, params) # GET /episodefile/{id} def get_episode_file( @@ -262,10 +259,9 @@ def get_episode_file( Returns: dict[str, JsonDataType]: Dictionary with data """ - return self.assert_return( + return self._get( f"episodefile{'' if series else f'/{id_}'}", self.ver_uri, - list if series else dict, params={"seriesId": id_} if series else None, ) @@ -308,9 +304,7 @@ def upd_episode_file_quality( Returns: dict[str, JsonDataType]: Dictionary with updated record """ - return self.assert_return_put( - f"episodefile/{id_}", self.ver_uri, dict, data=data - ) + return self._put(f"episodefile/{id_}", self.ver_uri, data=data) # GET /wanted/missing def get_wanted( @@ -346,7 +340,7 @@ def get_wanted( if include_series: params["includeSeries"] = include_series - return self.assert_return("wanted/missing", self.ver_uri, dict, params) + return self._get("wanted/missing", self.ver_uri, params) ## QUEUE @@ -393,7 +387,7 @@ def get_queue( if include_episode is not None: params["includeEpisode"] = include_episode - return self.assert_return("queue", self.ver_uri, dict, params) + return self._get("queue", self.ver_uri, params) ## PARSE @@ -422,7 +416,7 @@ def get_parse_title_path( params["title"] = title if path is not None: params["path"] = path - return self.assert_return("parse", self.ver_uri, dict, params) + return self._get("parse", self.ver_uri, params) # GET /parse def get_parsed_title(self, title: str) -> dict[str, JsonDataType]: @@ -442,7 +436,7 @@ def get_parsed_title(self, title: str) -> dict[str, JsonDataType]: DeprecationWarning, stacklevel=2, ) - return self.assert_return("parse", self.ver_uri, dict, {"title": title}) + return self._get("parse", self.ver_uri, {"title": title}) # GET /parse def get_parsed_path(self, file_path: str) -> dict[str, JsonDataType]: @@ -462,7 +456,7 @@ def get_parsed_path(self, file_path: str) -> dict[str, JsonDataType]: DeprecationWarning, stacklevel=2, ) - return self.assert_return("parse", self.ver_uri, dict, {"path": file_path}) + return self._get("parse", self.ver_uri, {"path": file_path}) ## RELEASE @@ -476,9 +470,7 @@ def get_releases(self, id_: Optional[int] = None) -> list[dict[str, JsonDataType Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - return self.assert_return( - "release", self.ver_uri, list, {"episodeId": id_} if id_ else None - ) + return self._get("release", self.ver_uri, {"episodeId": id_} if id_ else None) # POST /release def download_release(self, guid: str, indexer_id: int) -> dict[str, JsonDataType]: @@ -494,7 +486,7 @@ def download_release(self, guid: str, indexer_id: int) -> dict[str, JsonDataType dict[str, JsonDataType]: Dictionary with download release details """ data = {"guid": guid, "indexerId": indexer_id} - return self.assert_return_post("release", self.ver_uri, dict, data=data) + return self._post("release", self.ver_uri, data=data) # POST /release/push # TODO: find response @@ -518,7 +510,7 @@ def push_release( "protocol": protocol, "publishDate": publish_date.isoformat(), } - return self.assert_return_post("release/push", self.ver_uri, dict, data=data) + return self._post("release/push", self.ver_uri, data=data) ## SERIES # GET /series and /series/{id} @@ -536,7 +528,7 @@ def get_series( dictionary with single item """ path = f"series{f'/{id_}' if id_ else ''}" - return self.assert_return(path, self.ver_uri, dict if id_ else list) + return self._get(path, self.ver_uri) # POST /series def add_series( @@ -580,7 +572,7 @@ def add_series( search_for_missing_episodes, ) - return self.assert_return_post("series", self.ver_uri, dict, data=series_json) + return self._post("series", self.ver_uri, data=series_json) # PUT /series def upd_series(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: @@ -592,7 +584,7 @@ def upd_series(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: Returns: dict[str, JsonDataType]: Dictionary or updated record """ - return self.assert_return_put("series", self.ver_uri, dict, data=data) + return self._put("series", self.ver_uri, data=data) # DELETE /series/{id} def del_series( @@ -627,9 +619,7 @@ def lookup_series( if term is None and id_ is None: raise PyarrMissingArgument("A term or TVDB id must be included") - return self.assert_return( - "series/lookup", self.ver_uri, list, {"term": term or f"tvdb:{id_}"} - ) + return self._get("series/lookup", self.ver_uri, {"term": term or f"tvdb:{id_}"}) # GET /series/lookup def lookup_series_by_tvdb_id(self, id_: int) -> list[dict[str, JsonDataType]]: @@ -647,7 +637,7 @@ def lookup_series_by_tvdb_id(self, id_: int) -> list[dict[str, JsonDataType]]: stacklevel=2, ) params = {"term": f"tvdb:{id_}"} - return self.assert_return("series/lookup", self.ver_uri, list, params) + return self._get("series/lookup", self.ver_uri, params) # GET /history # Overrides base get history for ID @@ -688,4 +678,4 @@ def get_history( if id_: params["episodeId"] = id_ - return self.assert_return("history", self.ver_uri, dict, params) + return self._get("history", self.ver_uri, params) diff --git a/pyarr/types.py b/pyarr/types.py index 4f9457d..c0ba25e 100644 --- a/pyarr/types.py +++ b/pyarr/types.py @@ -3,3 +3,5 @@ JsonDataType = TypeVar( "JsonDataType", bound=Union[str, int, float, list, dict, bool, None] ) + +_ReturnType = TypeVar("_ReturnType", bound=Union[dict, list]) diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index c5df414..e17e6b8 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -1554,7 +1554,7 @@ def test_get_notification_schema(responses, sonarr_client): data = sonarr_client.get_notification_schema( implementation=PyarrNotificationSchema.BOXCAR ) - assert isinstance(data, dict) + assert isinstance(data, list) with contextlib.suppress(PyarrRecordNotFound): data = sonarr_client.get_notification_schema(implementation="polarbear") @@ -1747,7 +1747,7 @@ def test_get_download_client_schema(responses, sonarr_client): data = sonarr_client.get_download_client_schema( implementation=PyarrDownloadClientSchema.ARIA2 ) - assert isinstance(data, dict) + assert isinstance(data, list) with contextlib.suppress(PyarrRecordNotFound): data = sonarr_client.get_download_client_schema(implementation="polarbear") @@ -1848,7 +1848,7 @@ def test_get_import_list_schema(responses, sonarr_client): data = sonarr_client.get_import_list_schema( implementation=PyarrImportListSchema.PLEX ) - assert isinstance(data, dict) + assert isinstance(data, list) with contextlib.suppress(PyarrRecordNotFound): data = sonarr_client.get_import_list_schema(implementation="polarbear") From 37d66588820956223041d70defa5f06d1c79b8fe Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Thu, 10 Nov 2022 22:19:01 +0000 Subject: [PATCH 39/53] refactor: change models to dataclasses from enum --- noxfile.py | 7 ++++ pyarr/models/common.py | 69 +++++++++++++++++--------------- pyarr/models/lidarr.py | 35 ++++++++-------- pyarr/models/radarr.py | 48 +++++++++++++++++----- pyarr/models/readarr.py | 64 ++++++++++++++++++++++------- pyarr/models/sonarr.py | 73 ++++++++++++++++++++++++---------- pyarr/radarr.py | 18 +++------ pyarr/readarr.py | 30 +++++++------- pyarr/sonarr.py | 18 ++------- sphinx-docs/models/common.rst | 1 + sphinx-docs/models/lidarr.rst | 1 + sphinx-docs/models/radarr.rst | 1 + sphinx-docs/models/readarr.rst | 1 + sphinx-docs/models/sonarr.rst | 1 + 14 files changed, 230 insertions(+), 137 deletions(-) diff --git a/noxfile.py b/noxfile.py index df20f95..984b7ab 100644 --- a/noxfile.py +++ b/noxfile.py @@ -56,3 +56,10 @@ def test_style(session: Session) -> None: session.run("isort", ".", "--check-only") session.run("autoflake", ".") session.run("interrogate", "pyarr") + + +@nox.session(reuse_venv=True) +def docs(session: Session) -> None: + """Create local copy of docs for testing""" + session.run("poetry", "install", external=True) + session.run("sphinx-build", "sphinx-docs", "build") diff --git a/pyarr/models/common.py b/pyarr/models/common.py index 023d177..e63f0a7 100644 --- a/pyarr/models/common.py +++ b/pyarr/models/common.py @@ -1,12 +1,9 @@ +from dataclasses import dataclass from enum import Enum -import enum_tools.documentation -enum_tools.documentation.INTERACTIVE = True - - -@enum_tools.documentation.document_enum -class PyarrSortDirection(str, Enum): +@dataclass(order=True) +class PyarrSortDirection(Enum): """Pyarr sort direction""" ASC = "ascending" @@ -14,12 +11,13 @@ class PyarrSortDirection(str, Enum): DESC = "descending" -@enum_tools.documentation.document_enum -class PyarrLogSortKey(str, Enum): +@dataclass(order=True) +class PyarrLogSortKey(Enum): """Log Sort Keys Note: - There may be more, however these are yet to be identified + There may be more, but these are not well documented + within Arr api docs. """ ID = "Id" @@ -31,52 +29,61 @@ class PyarrLogSortKey(str, Enum): EXCEPTION_TYPE = "exceptionType" -@enum_tools.documentation.document_enum -class PyarrBlocklistSortKey(str, Enum): - """Block list sort keys""" +@dataclass(order=True) +class PyarrBlocklistSortKey(Enum): + """Block list sort keys + + Note: + There may be more, but these are not well documented + within Arr api docs. + """ DATE = "date" -@enum_tools.documentation.document_enum -class PyarrHistorySortKey(str, Enum): - """history sort keys +@dataclass(order=True) +class PyarrHistorySortKey(Enum): + """History sort keys Note: - There may be more, however these are yet to be identified + There may be more, but these are not well documented + within Arr api docs. """ TIME = "time" -@enum_tools.documentation.document_enum -class PyarrTaskSortKey(str, Enum): +@dataclass(order=True) +class PyarrTaskSortKey(Enum): """Task sort keys Note: - There may be more, however these are yet to be identified + There may be more, but these are not well documented + within Arr api docs. """ TIME_LEFT = "timeleft" -@enum_tools.documentation.document_enum -class PyarrLogFilterKey(str, Enum): +@dataclass(order=True) +class PyarrLogFilterKey(Enum): """Log filter keys Note: - There may be more, however these are yet to be identified + There may be more, but these are not well documented + within Arr api docs. """ LEVEL = "level" -@enum_tools.documentation.document_enum -class PyarrLogFilterValue(str, Enum): +@dataclass(order=True) +class PyarrLogFilterValue(Enum): """Log filter values Note: - There may be more, however these are yet to be identified + There may be more, but these are not well documented + within Arr api docs. """ ALL = "all" @@ -85,8 +92,8 @@ class PyarrLogFilterValue(str, Enum): ERROR = "error" -@enum_tools.documentation.document_enum -class PyarrNotificationSchema(str, Enum): +@dataclass(order=True) +class PyarrNotificationSchema(Enum): """Notification schema implementations""" BOXCAR = "Boxcar" @@ -113,8 +120,8 @@ class PyarrNotificationSchema(str, Enum): WEBHOOK = "Webhook" -@enum_tools.documentation.document_enum -class PyarrDownloadClientSchema(str, Enum): +@dataclass(order=True) +class PyarrDownloadClientSchema(Enum): """Download client schema implementations""" ARIA2 = "Aria2" @@ -136,8 +143,8 @@ class PyarrDownloadClientSchema(str, Enum): VUZE = "Vuze" -@enum_tools.documentation.document_enum -class PyarrImportListSchema(str, Enum): +@dataclass(order=True) +class PyarrImportListSchema(Enum): """Import List schema implementations""" PLEX = "PlexImport" diff --git a/pyarr/models/lidarr.py b/pyarr/models/lidarr.py index 3c14e9d..37e14c8 100644 --- a/pyarr/models/lidarr.py +++ b/pyarr/models/lidarr.py @@ -1,12 +1,22 @@ +from dataclasses import dataclass from enum import Enum -import enum_tools.documentation -enum_tools.documentation.INTERACTIVE = True +@dataclass(order=True) +class LidarrCommand(Enum): + """Lidarr commands.""" + + ALBUM_SEARCH = "AlbumSearch" + APP_UPDATE_CHECK = "ApplicationUpdateCheck" + ARTIST_SEARCH = "ArtistSearch" + DOWNLOADED_ALBUMS_SCAN = "DownloadedAlbumsScan" + MISSING_ALBUM_SEARCH = "MissingAlbumSearch" + REFRESH_ALBUM = "RefreshAlbum" + REFRESH_ARTIST = "RefreshArtist" -@enum_tools.documentation.document_enum -class LidarrSortKey(str, Enum): +@dataclass(order=True) +class LidarrSortKey(Enum): """Lidarr sort keys.""" ALBUM_TITLE = "albums.title" @@ -28,8 +38,8 @@ class LidarrSortKey(str, Enum): TITLE = "title" -@enum_tools.documentation.document_enum -class LidarrArtistMonitor(str, Enum): +@dataclass(order=True) +class LidarrArtistMonitor(Enum): """Lidarr Monitor types for an artist music""" ALL_ALBUMS = "all" @@ -38,16 +48,3 @@ class LidarrArtistMonitor(str, Enum): EXISTING_ALBUMS = "existing" FIRST_ALBUM = "first" LATEST_ALBUM = "latest" - - -@enum_tools.documentation.document_enum -class LidarrCommand(str, Enum): - """Lidarr commands.""" - - ALBUM_SEARCH = "AlbumSearch" - APP_UPDATE_CHECK = "ApplicationUpdateCheck" - ARTIST_SEARCH = "ArtistSearch" - DOWNLOADED_ALBUMS_SCAN = "DownloadedAlbumsScan" - MISSING_ALBUM_SEARCH = "MissingAlbumSearch" - REFRESH_ALBUM = "RefreshAlbum" - REFRESH_ARTIST = "RefreshArtist" diff --git a/pyarr/models/radarr.py b/pyarr/models/radarr.py index 8947223..231b080 100644 --- a/pyarr/models/radarr.py +++ b/pyarr/models/radarr.py @@ -1,25 +1,53 @@ +from dataclasses import dataclass from enum import Enum -import enum_tools.documentation -enum_tools.documentation.INTERACTIVE = True +@dataclass(order=True) +class RadarrCommands(Enum): + """Radarr commands. - -@enum_tools.documentation.document_enum -class RadarrCommands(str, Enum): - """Radarr commands.""" + Note: + The parameters are supplied as `**kwargs` within the `post_command` method. + """ DOWNLOADED_MOVIES_SCAN = "DownloadedMoviesScan" + """Scans for all clients for downloaded movies, or a single client by ID + + Args: + clientid (int, optional): Download client ID + """ MISSING_MOVIES_SEARCH = "MissingMoviesSearch" + """Searches for any missing movies""" REFRESH_MOVIE = "RefreshMovie" + """Refreshes all of the movies, or specific by ID + + Args: + movieid (int, Optional): ID of Movie + """ RENAME_MOVIE = "RenameMovie" + """Rename specific movie to correct format. + + Args: + movieid (list[int]): ID of Movie or movies + """ RESCAN_MOVIE = "RescanMovie" + """Rescans specific movie + + Args: + movieid (int): ID of Movie + """ RENAME_FILES = "RenameFiles" + """Rename files to correct format + + Args: + movieid (int): ID of Movie + """ BACKUP = "Backup" + """Backup the server data""" -@enum_tools.documentation.document_enum -class RadarrSortKeys(str, Enum): +@dataclass(order=True) +class RadarrSortKeys(Enum): """Radarr sort keys.""" DATE = "date" @@ -42,8 +70,8 @@ class RadarrSortKeys(str, Enum): TIMELEFT = "timeleft" -@enum_tools.documentation.document_enum -class RadarrEventType(str, Enum): +@dataclass(order=True) +class RadarrEventType(Enum): """Radarr event types""" UNKNOWN = "unknown" diff --git a/pyarr/models/readarr.py b/pyarr/models/readarr.py index 3e6ea42..0a450b2 100644 --- a/pyarr/models/readarr.py +++ b/pyarr/models/readarr.py @@ -1,29 +1,65 @@ +from dataclasses import dataclass from enum import Enum -import enum_tools.documentation -enum_tools.documentation.INTERACTIVE = True +@dataclass(order=True) +class ReadarrCommands(Enum): + """Readarr commands. + Note: + The parameters are supplied as `**kwargs` within the `post_command` method. + """ -@enum_tools.documentation.document_enum -class ReadarrCommands(str, Enum): - """Readarr commands.""" - - APP_UPDATE_CHECK = "ApplicationUpdateCheck" + APP_UPDATE_CHECK: str = "ApplicationUpdateCheck" + """Checks for Application updates""" AUTHOR_SEARCH = "AuthorSearch" + """Search for specific author by ID + + Args: + authorId (int): ID for Author + """ BOOK_SEARCH = "BookSearch" + """Search for specific Book by ID + + Args: + bookId (int): ID for Book + """ REFRESH_AUTHOR = "RefreshAuthor" + """Refresh all Authors, or by specific ID + + Args: + authorId (int, optional): ID for Author + """ REFRESH_BOOK = "RefreshBook" + """Refresh all Books, or by specific ID + + Args: + bookId (int, optional): ID for Book + """ RENAME_AUTHOR = "RenameAuthor" + """Rename all Authors, or by list of Ids + + Args: + authorIds (list[int], optional): IDs for Authors + """ RENAME_FILES = "RenameFiles" + """Rename all files, or by specific ID + + Args: + authorId (int, optional): ID for Author + """ RESCAN_FOLDERS = "RescanFolders" + """Rescans folders""" RSS_SYNC = "RssSync" + """Synchronise RSS Feeds""" BACKUP = "Backup" + """Backup of the Database""" MISSING_BOOK_SEARCH = "MissingBookSearch" + """Searches for any missing books""" -@enum_tools.documentation.document_enum -class ReadarrSortKeys(str, Enum): +@dataclass(order=True) +class ReadarrSortKeys(Enum): """Readarr sort keys.""" AUTHOR_ID = "authorId" @@ -45,8 +81,8 @@ class ReadarrSortKeys(str, Enum): TITLE = "title" -@enum_tools.documentation.document_enum -class ReadarrBookTypes(str, Enum): +@dataclass(order=True) +class ReadarrBookTypes(Enum): """Readarr book types.""" ASIN = "asin" @@ -54,11 +90,11 @@ class ReadarrBookTypes(str, Enum): ISBN = "isbn" -@enum_tools.documentation.document_enum -class ReadarrAuthorMonitor(str, Enum): +@dataclass(order=True) +class ReadarrAuthorMonitor(Enum): """Readarr author monitor options.""" - ALL = "all" + ALL: str = "all" FUTURE = "future" MISSING = "missing" EXISTING = "existing" diff --git a/pyarr/models/sonarr.py b/pyarr/models/sonarr.py index 576a2eb..9daf2fb 100644 --- a/pyarr/models/sonarr.py +++ b/pyarr/models/sonarr.py @@ -1,42 +1,75 @@ +from dataclasses import dataclass from enum import Enum -import enum_tools.documentation -enum_tools.documentation.INTERACTIVE = True +@dataclass(order=True) +class SonarrCommands(Enum): + """Sonarr commands. - -@enum_tools.documentation.document_enum -class SonarrCommands(str, Enum): - """Sonarr commands.""" + Note: + The parameters are supplied as `**kwargs` within the `post_command` method. + """ BACKUP = "Backup" - """No parameters required""" + """Backup of the Database""" DOWNLOADED_EPISODES_SCAN = "DownloadedEpisodesScan" - """No parameters required""" + """Scans downloaded episodes for state""" EPISODE_SEARCH = "EpisodeSearch" - """episodeIds (lsit[int], optional) - One or more episodeIds in a list""" + """Searches for all episondes, or specific ones in supplied list + + Args: + episodeIds (lsit[int], optional): One or more episodeIds in a list + """ MISSING_EPISODE_SEARCH = "missingEpisodeSearch" - """No parameters required""" + """Searches for any missing episodes""" REFRESH_SERIES = "RefreshSeries" - """ - seriesId (int, optional) - If not set, all series will be refreshed and scanned + """Refreshes all series, if a `seriesId` is provided only that series will be refreshed + + Args: + seriesId (int, optional): ID of specific series to be refreshed. """ RENAME_SERIES = "RenameSeries" - """seriesIds (list[int]) - List of Series IDs to rename""" + """Renames series to the expected naming format. + + Args: + seriesIds (list[int]): List of Series IDs to rename. + """ + RENAME_FILES = "RenameFiles" - """files (list[int]) - List of File IDs to rename""" + """Renames files to the expected naming format. + + Args: + files (list[int]): List of File IDs to rename. + """ + RESCAN_SERIES = "RescanSeries" - """seriesId (int, optional) - If not set all series will be scanned""" + """Re-scan all series, if `seriesId` is provided only that series will be Re-scanned. + + Args: + seriesId (int, optional): ID of series to search for. + """ + RSS_SYNC = "RssSync" - """No parameters required""" + """Synchronise RSS Feeds""" + SEASON_SEARCH = "SeasonSearch" - """seriesId (int), seasonNumber (int) both are required""" + """Search for specific season. + + Args: + seriesId (int): Series in which the season resides. + seasonNumber (int): Season to search for. + """ + SERIES_SEARCH = "SeriesSearch" - """seriesId (int) required""" + """Searches for specific series. + + Args: + seriesId (int): ID of series to search for. + """ -@enum_tools.documentation.document_enum -class SonarrSortKey(str, Enum): +@dataclass(order=True) +class SonarrSortKey(Enum): """Sonarr sort keys.""" AIR_DATE_UTC = "airDateUtc" diff --git a/pyarr/radarr.py b/pyarr/radarr.py index f890cb3..d923da1 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -423,7 +423,7 @@ def get_movie_history( Returns: list[dict[str, JsonDataType]]: List of dictionaries with items """ - params: dict[str, Union[int, str]] = {"movieId": id_} + params: dict[str, Union[int, str, RadarrEventType]] = {"movieId": id_} if event_type: params["eventType"] = event_type return self._get("history/movie", self.ver_uri, params) @@ -597,26 +597,18 @@ def del_indexer( ## COMMAND # POST /command - # TODO: type for kwargs and response def post_command( - self, name: RadarrCommands, **kwargs: Optional[Union[int, list[int]]] + self, name: RadarrCommands, **kwargs: Optional[dict[str, Union[int, list[int]]]] ) -> dict[str, JsonDataType]: """Performs any of the predetermined Radarr command routines. Args: - name (SonarrCommands): Command that should be executed + name (RadarrCommands): Command that should be executed **kwargs: Additional parameters for specific commands. See note. Note: - Required Kwargs: - DownloadedMoviesScan: clientid (int, Optional) - RenameFiles: files (list[int]) - DownloadedMoviesScan: path (str, Optional) - MissingMoviesSearch - RefreshMovie: movieid (Optional) - RenameMovie: movieid (list[int]) - RescanMovie: movieid (Optional) - MovieSearch: movieid (Optional) + For available commands and required `**kwargs` see the `RadarrCommands` model + Returns: dict[str, JsonDataType]: Dictionary containing job diff --git a/pyarr/readarr.py b/pyarr/readarr.py index 9de66c4..2c88ee8 100644 --- a/pyarr/readarr.py +++ b/pyarr/readarr.py @@ -35,11 +35,11 @@ def lookup(self, term: str) -> list[dict[str, JsonDataType]]: Note: You can also search using the Goodreads ID, work, or author, the ISBN or ASIN:: - readarr.lookup(term="edition:656") - readarr.lookup(term="work:4912789") - readarr.lookup(term="author:128382") - readarr.lookup(term="isbn:067003469X") - readarr.lookup(term="asin:B00JCDK5ME") + readarr.lookup(term="edition:656") + readarr.lookup(term="work:4912789") + readarr.lookup(term="author:128382") + readarr.lookup(term="isbn:067003469X") + readarr.lookup(term="asin:B00JCDK5ME") Args: term (str): Search term @@ -219,7 +219,11 @@ def get_command( return self._get(path, self.ver_uri) # POST /command - def post_command(self, name: ReadarrCommands, **kwargs) -> dict[str, JsonDataType]: + def post_command( + self, + name: ReadarrCommands, + **kwargs: Optional[dict[str, Union[int, list[int]]]], + ) -> dict[str, JsonDataType]: """Performs any of the predetermined Readarr command routines Args: @@ -227,21 +231,17 @@ def post_command(self, name: ReadarrCommands, **kwargs) -> dict[str, JsonDataTyp **kwargs: Additional parameters for specific commands Note: - Required Kwargs: - AuthorSearch: authorId (int) - BookSearch: bookId (int) - RefreshAuthor: authorId (int, optional) - RefreshBook: bookId (int, optional) - RenameAuthor: authorIds (list[int], optional) - RenameFiles: authorId (int, optional) + For available commands and required `**kwargs` see the `ReadarrCommands` model + Returns: dict[str, JsonDataType]: Dictionary of command run """ - data = { + data: dict[str, Any] = { "name": name, - **kwargs, } + if kwargs: + data |= kwargs return self._post("command", self.ver_uri, data=data) ## WANTED (MISSING) diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index cd8d323..d10ae12 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -108,29 +108,17 @@ def get_command( # POST /command # TODO: Add more logic to ensure correct kwargs for a command - # TODO: look into DownloadedEpisodesScan and how to use it def post_command( - self, name: SonarrCommands, **kwargs: Optional[Union[int, list[int]]] + self, name: SonarrCommands, **kwargs: Optional[dict[str, Union[int, list[int]]]] ) -> dict[str, JsonDataType]: """Performs any of the predetermined Sonarr command routines Args: name (SonarrCommands): Command that should be executed - **kwargs: Additional parameters for specific commands. See note. + **kwargs: Additional parameters for specific commands. Note: - Required Kwargs: - RefreshSeries: seriesId (int, optional) - If not set, all series will be refreshed and scanned - RescanSeries: seriesId (int, optional) - If not set all series will be scanned - EpisodeSearch: episodeIds (lsit[int], optional) - One or more episodeIds in a list - SeasonSearch: seriesId (int) seasonNumber (int) - SeriesSearch: seriesId (int) - DownloadedEpisodesScan: - RssSync: None - RenameFiles: files (list[int]) - List of File IDs to rename - RenameSeries: seriesIds (list[int]) List of Series IDs to rename - Backup: None - missingEpisodeSearch: None + For available commands and required `**kwargs` see the `SonarrCommands` model Returns: dict[str, JsonDataType]: Dictionary containing job diff --git a/sphinx-docs/models/common.rst b/sphinx-docs/models/common.rst index 9cc6054..6769ee4 100644 --- a/sphinx-docs/models/common.rst +++ b/sphinx-docs/models/common.rst @@ -3,3 +3,4 @@ Common .. automodule:: pyarr.models.common :members: :inherited-members: + :undoc-members: diff --git a/sphinx-docs/models/lidarr.rst b/sphinx-docs/models/lidarr.rst index 5dfe72a..b17caa0 100644 --- a/sphinx-docs/models/lidarr.rst +++ b/sphinx-docs/models/lidarr.rst @@ -3,3 +3,4 @@ Lidarr .. automodule:: pyarr.models.lidarr :members: :inherited-members: + :undoc-members: diff --git a/sphinx-docs/models/radarr.rst b/sphinx-docs/models/radarr.rst index ce7ff71..00e7ca1 100644 --- a/sphinx-docs/models/radarr.rst +++ b/sphinx-docs/models/radarr.rst @@ -3,3 +3,4 @@ Radarr .. automodule:: pyarr.models.radarr :members: :inherited-members: + :undoc-members: diff --git a/sphinx-docs/models/readarr.rst b/sphinx-docs/models/readarr.rst index b64f466..6c73ba7 100644 --- a/sphinx-docs/models/readarr.rst +++ b/sphinx-docs/models/readarr.rst @@ -3,3 +3,4 @@ Readarr .. automodule:: pyarr.models.readarr :members: :inherited-members: + :undoc-members: diff --git a/sphinx-docs/models/sonarr.rst b/sphinx-docs/models/sonarr.rst index 3bc3d3e..726467f 100644 --- a/sphinx-docs/models/sonarr.rst +++ b/sphinx-docs/models/sonarr.rst @@ -3,3 +3,4 @@ Sonarr .. automodule:: pyarr.models.sonarr :members: :inherited-members: + :undoc-members: From 36adf30501166a0dedb7a09e6dcb1232ff8353b9 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Fri, 11 Nov 2022 17:27:07 +0000 Subject: [PATCH 40/53] refactor: add type for JsonArray, JsonObject & change enums --- poetry.lock | 22 +-- pyarr/base.py | 280 ++++++++++++++++----------------------- pyarr/lidarr.py | 150 ++++++++++----------- pyarr/models/common.py | 31 ++--- pyarr/models/lidarr.py | 10 +- pyarr/models/radarr.py | 10 +- pyarr/models/readarr.py | 13 +- pyarr/models/sonarr.py | 7 +- pyarr/radarr.py | 120 ++++++++--------- pyarr/readarr.py | 114 +++++++--------- pyarr/request_handler.py | 1 - pyarr/sonarr.py | 114 +++++++--------- pyarr/types.py | 5 + pyproject.toml | 1 - 14 files changed, 369 insertions(+), 509 deletions(-) diff --git a/poetry.lock b/poetry.lock index 85239ff..de467ec 100644 --- a/poetry.lock +++ b/poetry.lock @@ -274,22 +274,6 @@ typing-extensions = ">=3.7.4.1" all = ["pytz (>=2019.1)"] dates = ["pytz (>=2019.1)"] -[[package]] -name = "enum-tools" -version = "0.9.0.post1" -description = "Tools to expand Python's enum module." -category = "dev" -optional = false -python-versions = ">=3.6" - -[package.dependencies] -pygments = ">=2.6.1" -typing-extensions = ">=3.7.4.3" - -[package.extras] -sphinx = ["sphinx (>=3.2.0)", "sphinx-toolbox (>=2.16.0)"] -all = ["sphinx (>=3.2.0)", "sphinx-toolbox (>=2.16.0)"] - [[package]] name = "filelock" version = "3.7.0" @@ -1170,7 +1154,7 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest- [metadata] lock-version = "1.1" python-versions = "^3.9" -content-hash = "76b78ef5b82cf91c849bf4021ece56eb8e370880691a8a662ab177223013cd30" +content-hash = "609d695ada24ee40737304508de49c951d34a91456dadc7697cffce2d4f5e01b" [metadata.files] alabaster = [ @@ -1280,10 +1264,6 @@ domdf-python-tools = [ {file = "domdf_python_tools-3.3.0-py3-none-any.whl", hash = "sha256:692a33cfc4bc4270a30f18b95beb8f65bf56935d122a4bdb0af7f7760452d41c"}, {file = "domdf_python_tools-3.3.0.tar.gz", hash = "sha256:7c588cdfa3e8bfd9617efbb4fa42652b7010c0f158c81844c862fbda5d86d9cc"}, ] -enum-tools = [ - {file = "enum_tools-0.9.0.post1-py3-none-any.whl", hash = "sha256:d8fd962054e7e400fa7f0a196f7607f19ef78aca4b288543ecb330f890edb60d"}, - {file = "enum_tools-0.9.0.post1.tar.gz", hash = "sha256:e59eb1c16667400b185f8a61ac427029919be2ec48b9ca04aa1b388a42fb14d5"}, -] filelock = [ {file = "filelock-3.7.0-py3-none-any.whl", hash = "sha256:c7b5fdb219b398a5b28c8e4c1893ef5f98ece6a38c6ab2c22e26ec161556fed6"}, {file = "filelock-3.7.0.tar.gz", hash = "sha256:b795f1b42a61bbf8ec7113c341dad679d772567b936fbd1bf43c9a238e673e20"}, diff --git a/pyarr/base.py b/pyarr/base.py index f8ac980..9d530ba 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -16,7 +16,7 @@ PyarrSortDirection, PyarrTaskSortKey, ) -from pyarr.types import JsonDataType +from pyarr.types import JsonArray, JsonObject from .request_handler import RequestHandler @@ -44,7 +44,7 @@ def get_calendar( start_date: Optional[datetime] = None, end_date: Optional[datetime] = None, unmonitored: bool = True, - ) -> list[dict[str, JsonDataType]]: + ) -> JsonArray: """Gets upcoming releases by monitored, if start/end are not supplied, today and tomorrow will be returned @@ -54,7 +54,7 @@ def get_calendar( unmonitored (bool, optional): Include unmonitored movies. Defaults to True. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ params: dict[str, Any] = {} if start_date: @@ -68,57 +68,55 @@ def get_calendar( # SYSTEM # GET /system/status - def get_system_status(self) -> dict[str, JsonDataType]: + def get_system_status(self) -> JsonObject: """Gets system status Returns: - dict[str, JsonDataType]: Dictionary with items + JsonObject: Dictionary with items """ return self._get("system/status", self.ver_uri) # GET /health - def get_health(self) -> list[dict[str, JsonDataType]]: + def get_health(self) -> JsonArray: """Get health information Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._get("health", self.ver_uri) # GET /metadata - def get_metadata( - self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: + def get_metadata(self, id_: Optional[int] = None) -> Union[JsonArray, JsonObject]: """Get all metadata consumer settings Args: id_ (Optional[int], optional): ID for specific metadata record Returns: - Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items + Union[JsonArray, JsonObject]: List of dictionaries with items """ return self._get(f"metadata{f'/{id_}' if id_ else ''}", self.ver_uri) # GET /update - def get_update(self) -> list[dict[str, JsonDataType]]: + def get_update(self) -> JsonArray: """Will return a list of recent updated Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._get("update", self.ver_uri) # GET /rootfolder def get_root_folder( self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: + ) -> Union[JsonArray, JsonObject]: """Get list of root folders, free space and any unmappedFolders Args: id_ (Optional[int], optional): ID of the folder to return. Defaults to None. Returns: - Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items + Union[JsonArray, JsonObject]: List of dictionaries with items """ return self._get(f"rootfolder{f'/{id_}' if id_ else ''}", self.ver_uri) @@ -126,7 +124,7 @@ def get_root_folder( def del_root_folder( self, id_: int ) -> Union[ - Response, dict[str, JsonDataType], dict[Any, Any] + Response, JsonObject, dict[Any, Any] ]: # sourcery skip: class-extract-method """Delete root folder with specified id @@ -139,21 +137,21 @@ def del_root_folder( return self._delete(f"rootfolder/{id_}", self.ver_uri) # GET /diskspace - def get_disk_space(self) -> list[dict[str, JsonDataType]]: + def get_disk_space(self) -> JsonArray: """Query disk usage information System > Status Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._get("diskspace", self.ver_uri) # GET /system/backup - def get_backup(self) -> list[dict[str, JsonDataType]]: + def get_backup(self) -> JsonArray: """Returns the list of available backups Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._get("system/backup", self.ver_uri) @@ -168,7 +166,7 @@ def get_log( sort_dir: Optional[PyarrSortDirection] = None, filter_key: Optional[PyarrLogFilterKey] = None, filter_value: Optional[PyarrLogFilterValue] = None, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Gets logs from instance Args: @@ -180,7 +178,7 @@ def get_log( filter_value (Optional[PyarrFilterValue], optional): Value of the filter. Defaults to None. Returns: - dict[str, JsonDataType]: List of dictionaries with items + JsonObject: List of dictionaries with items """ params: dict[ str, @@ -221,7 +219,7 @@ def get_history( page_size: Optional[int] = None, sort_key: Optional[PyarrHistorySortKey] = None, sort_dir: Optional[PyarrSortDirection] = None, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Gets history (grabs/failures/completed) Args: @@ -231,7 +229,7 @@ def get_history( sort_dir (Optional[PyarrSortDirection], optional): Direction to sort the items. Defaults to None. Returns: - dict[str, JsonDataType]: Dictionary with items + JsonObject: Dictionary with items """ params: dict[str, Union[int, PyarrHistorySortKey, PyarrSortDirection]] = {} @@ -258,7 +256,7 @@ def get_blocklist( page_size: Optional[int] = None, sort_key: Optional[PyarrBlocklistSortKey] = None, sort_dir: Optional[PyarrSortDirection] = None, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Returns blocked releases. Args: @@ -268,7 +266,7 @@ def get_blocklist( sort_dir (Optional[PyarrSortDirection], optional): Direction to sort the items. Defaults to None. Returns: - dict[str, JsonDataType]: Dictionary with items + JsonObject: Dictionary with items """ params: dict[str, Union[int, PyarrBlocklistSortKey, PyarrSortDirection]] = {} @@ -287,9 +285,7 @@ def get_blocklist( return self._get("blocklist", self.ver_uri, params) # DELETE /blocklist - def del_blocklist( - self, id_: int - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + def del_blocklist(self, id_: int) -> Union[Response, JsonObject, dict[Any, Any]]: """Removes a specific release (the id provided) from the blocklist Args: @@ -303,7 +299,7 @@ def del_blocklist( # DELETE /blocklist/bulk def del_blocklist_bulk( self, ids: list[int] - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + ) -> Union[Response, JsonObject, dict[Any, Any]]: """Delete blocked releases in bulk Args: @@ -320,23 +316,21 @@ def del_blocklist_bulk( # GET /qualityprofile/{id} def get_quality_profile( self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[Any, Any]]: + ) -> Union[JsonArray, dict[Any, Any]]: """Gets all quality profiles or specific one with id Args: id_ (Optional[int], optional): Quality profile id from database. Defaults to None. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ path = f"qualityprofile{f'/{id_}' if id_ else ''}" return self._get(path, self.ver_uri) # PUT /qualityprofile/{id} - def upd_quality_profile( - self, id_: int, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_quality_profile(self, id_: int, data: JsonObject) -> JsonObject: """Update the quality profile data Note: @@ -344,10 +338,10 @@ def upd_quality_profile( Args: id_ (int): Profile ID to Update - data (dict[str, JsonDataType]): All parameters to update + data (JsonObject): All parameters to update Returns: - dict[str, JsonDataType]: Dictionary of updated record + JsonObject: Dictionary of updated record """ return self._put(f"qualityprofile/{id_}", self.ver_uri, data=data) @@ -355,7 +349,7 @@ def upd_quality_profile( # DELETE /qualityprofile def del_quality_profile( self, id_: int - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + ) -> Union[Response, JsonObject, dict[Any, Any]]: """Removes a specific quality profile from the blocklist Args: @@ -369,22 +363,20 @@ def del_quality_profile( # GET /qualitydefinition/{id} def get_quality_definition( self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[Any, Any]]: + ) -> Union[JsonArray, dict[Any, Any]]: """Gets all quality definitions or specific one by ID Args: id_ (Optional[int], optional): Import list database id. Defaults to None. Returns: - Union[list[dict[str, JsonDataType]], dict[Any, Any]]: List of dictionaries with items + Union[JsonArray, dict[Any, Any]]: List of dictionaries with items """ path = f"qualitydefinition/{id_}" if id_ else "qualitydefinition" return self._get(path, self.ver_uri) # PUT /qualitydefinition/{id} - def upd_quality_definition( - self, id_: int, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_quality_definition(self, id_: int, data: JsonObject) -> JsonObject: """Update the quality definitions. Note: @@ -392,10 +384,10 @@ def upd_quality_definition( Args: id_ (int): ID of definition to update - data (dict[str, JsonDataType]): All parameters to update + data (JsonObject): All parameters to update Returns: - dict[str, JsonDataType]: Dictionary of updated record + JsonObject: Dictionary of updated record """ return self._put(f"qualitydefinition/{id_}", self.ver_uri, data=data) @@ -404,22 +396,20 @@ def upd_quality_definition( # GET /indexer/{id} def get_indexer( self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[Any, Any]]: + ) -> Union[JsonArray, dict[Any, Any]]: """Get all indexers or specific by id Args: id_ (Optional[int], optional): Database if of indexer to return. Defaults to None. Returns: - Union[list[dict[str, JsonDataType]], dict[Any, Any]]: List of dictionaries with items + Union[JsonArray, dict[Any, Any]]: List of dictionaries with items """ path = f"indexer/{id_}" if id_ else "indexer" return self._get(path, self.ver_uri) # PUT /indexer/{id} - def upd_indexer( - self, id_: int, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_indexer(self, id_: int, data: JsonObject) -> JsonObject: """Edit a Indexer by database id Note: @@ -427,17 +417,15 @@ def upd_indexer( Args: id_ (int): Indexer database id - data (dict[str, JsonDataType]): Data to be updated within Indexer + data (JsonObject): Data to be updated within Indexer Returns: - dict[str, JsonDataType]: Dictionary of updated record + JsonObject: Dictionary of updated record """ return self._put(f"indexer/{id_}", self.ver_uri, data=data) # DELETE /indexer - def del_indexer( - self, id_: int - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + def del_indexer(self, id_: int) -> Union[Response, JsonObject, dict[Any, Any]]: """Removes a specific indexer from the blocklist Args: @@ -457,7 +445,7 @@ def del_queue( id_: int, remove_from_client: Optional[bool] = None, blocklist: Optional[bool] = None, - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + ) -> Union[Response, JsonObject, dict[Any, Any]]: """Remove an item from the queue and blocklist it Args: @@ -484,7 +472,7 @@ def get_task( sort_key: Optional[PyarrTaskSortKey] = None, sort_dir: Optional[PyarrSortDirection] = None, id_: Optional[int] = None, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Return a list of tasks, or specify a task ID to return single task Args: @@ -495,7 +483,7 @@ def get_task( id_ (Optional[int], optional): ID for task. Defaults to None. Returns: - dict[str, JsonDataType]: List of dictionaries with items + JsonObject: List of dictionaries with items """ params: dict[ str, @@ -521,14 +509,14 @@ def get_task( # GET /remotepathmapping def get_remote_path_mapping( self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[Any, Any]]: + ) -> Union[JsonArray, dict[Any, Any]]: """Get remote path mappings for downloads Directory Args: id_ (Optional[int], optional): ID for specific record. Defaults to None. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ _path = f"remotepathmapping{'' if id_ is None else f'/{id_}'}" return self._get(_path, self.ver_uri) @@ -539,93 +527,89 @@ def get_remote_path_mapping( # CONFIG # GET /config/ui - def get_config_ui(self) -> dict[str, JsonDataType]: + def get_config_ui(self) -> JsonObject: """Query Radarr for UI configuration Returns: - dict[str, JsonDataType]: List of dictionaries with items + JsonObject: List of dictionaries with items """ return self._get("config/ui", self.ver_uri) # PUT /config/ui - def upd_config_ui(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: + def upd_config_ui(self, data: JsonObject) -> JsonObject: """Edit one or many UI settings and save to to the database Args: - data (dict[str, JsonDataType]): Data to be Updated. + data (JsonObject): Data to be Updated. Returns: - dict[str, JsonDataType]: Dictionary with items + JsonObject: Dictionary with items """ return self._put("config/ui", self.ver_uri, data=data) # GET /config/host - def get_config_host(self) -> dict[str, JsonDataType]: + def get_config_host(self) -> JsonObject: """Get General/Host settings. Returns: - dict[str, JsonDataType]: Dictionaries with items + JsonObject: Dictionaries with items """ return self._get("config/host", self.ver_uri) # PUT /config/host - def upd_config_host(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: + def upd_config_host(self, data: JsonObject) -> JsonObject: """Edit General/Host settings. Args: - data (dict[str, JsonDataType]): data to be updated + data (JsonObject): data to be updated Returns: - dict[str, JsonDataType]: Dictionaries with items + JsonObject: Dictionaries with items """ return self._put("config/host", self.ver_uri, data=data) # GET /config/naming - def get_config_naming(self) -> dict[str, JsonDataType]: + def get_config_naming(self) -> JsonObject: """Get Settings for file and folder naming. Returns: - dict[str, JsonDataType]: Dictionary with items + JsonObject: Dictionary with items """ return self._get("config/naming", self.ver_uri) # PUT /config/naming - def upd_config_naming( - self, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_config_naming(self, data: JsonObject) -> JsonObject: """Edit Settings for file and folder naming. Args: - data (dict[str, JsonDataType]): data to be updated + data (JsonObject): data to be updated Returns: - dict[str, JsonDataType]: Dictionary with items + JsonObject: Dictionary with items """ return self._put("config/naming", self.ver_uri, data=data) # GET /config/mediamanagement - def get_media_management(self) -> dict[str, JsonDataType]: + def get_media_management(self) -> JsonObject: """Get media management configuration Returns: - dict[str, JsonDataType]: Dictionary with items + JsonObject: Dictionary with items """ return self._get("config/mediamanagement", self.ver_uri) # PUT /config/mediamanagement - def upd_media_management( - self, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_media_management(self, data: JsonObject) -> JsonObject: """Get media management configuration Note: Recommended to use with get_media_management() Args: - data (dict[str, JsonDataType]): data to be updated + data (JsonObject): data to be updated Returns: - dict[str, JsonDataType]: Dictionary with items + JsonObject: Dictionary with items """ return self._put("config/mediamanagement", self.ver_uri, data=data) @@ -634,14 +618,14 @@ def upd_media_management( # GET /notification def get_notification( self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[Any, Any]]: + ) -> Union[JsonArray, dict[Any, Any]]: """Get a list of all notification services, or single by ID Args: id_ (Optional[int], optional): Notification ID. Defaults to None. Returns: - Union[list[dict[str, JsonDataType]], dict[Any, Any]]: List of dictionaries with items + Union[JsonArray, dict[Any, Any]]: List of dictionaries with items """ _path = "" if id_ is None else f"/{id_}" return self._get(f"notification{_path}", self.ver_uri) @@ -649,18 +633,16 @@ def get_notification( # GET /notification/schema def get_notification_schema( self, implementation: Optional[PyarrNotificationSchema] = None - ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: + ) -> Union[JsonArray, JsonObject]: """Get possible notification connections Args: implementation (Optional[PyarrNotificationSchema], optional): notification system Returns: - Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items + Union[JsonArray, JsonObject]: List of dictionaries with items """ - response: list[dict[str, JsonDataType]] = self._get( - "notification/schema", self.ver_uri - ) + response: JsonArray = self._get("notification/schema", self.ver_uri) if implementation: if filter_response := [ item for item in response if item["implementation"] == implementation @@ -673,41 +655,35 @@ def get_notification_schema( return response # POST /notification - def add_notification( - self, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def add_notification(self, data: JsonObject) -> JsonObject: """Add an import list based on the schema information supplied Note: Recommended to be used in conjunction with get_notification_schema() Args: - data (dict[str, JsonDataType]): dictionary with import list schema and settings + data (JsonObject): dictionary with import list schema and settings Returns: - dict[str, JsonDataType]: dictionary of added item + JsonObject: dictionary of added item """ return self._post("notification", self.ver_uri, data=data) # PUT /notification/{id} - def upd_notification( - self, id_: int, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_notification(self, id_: int, data: JsonObject) -> JsonObject: """Edit notification by database id Args: id_ (int): Database id of notification - data (dict[str, JsonDataType]): data that requires updating + data (JsonObject): data that requires updating Returns: - dict[str, JsonDataType]: Dictionary of updated record + JsonObject: Dictionary of updated record """ return self._put(f"notification/{id_}", self.ver_uri, data=data) # DELETE /notification/{id} - def del_notification( - self, id_: int - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + def del_notification(self, id_: int) -> Union[Response, JsonObject, dict[Any, Any]]: """Delete a notification by its database id Args: @@ -721,50 +697,46 @@ def del_notification( # TAGS # GET /tag/{id} - def get_tag( - self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: + def get_tag(self, id_: Optional[int] = None) -> Union[JsonArray, JsonObject]: """Returns all tags or specific tag by database id Args: id_ (Optional[int], optional): Database id for tag. Defaults to None. Returns: - Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items + Union[JsonArray, JsonObject]: List of dictionaries with items """ path = f"tag/{id_}" if id_ else "tag" return self._get(path, self.ver_uri) # GET /tag/detail/{id} - def get_tag_detail( - self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: + def get_tag_detail(self, id_: Optional[int] = None) -> Union[JsonArray, JsonObject]: """Returns all tags or specific tag by database id with detailed information Args: id_ (Optional[int], optional): Database id for tag. Defaults to None. Returns: - Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items + Union[JsonArray, JsonObject]: List of dictionaries with items """ path = f"tag/detail/{id_}" if id_ else "tag/detail" return self._get(path, self.ver_uri) # POST /tag - def create_tag(self, label: str) -> dict[str, JsonDataType]: + def create_tag(self, label: str) -> JsonObject: """Adds a new tag Args: label (str): Tag name / label Returns: - dict[str, JsonDataType]: Dictionary of new record + JsonObject: Dictionary of new record """ data = {"label": label} return self._post("tag", self.ver_uri, data=data) # PUT /tag/{id} - def upd_tag(self, id_: int, label: str) -> dict[str, JsonDataType]: + def upd_tag(self, id_: int, label: str) -> JsonObject: """Update an existing tag Note: @@ -775,15 +747,13 @@ def upd_tag(self, id_: int, label: str) -> dict[str, JsonDataType]: label (str): tag name / label Returns: - dict[str, JsonDataType]: Dictionary of updated items + JsonObject: Dictionary of updated items """ data = {"id": id_, "label": label} return self._put("tag", self.ver_uri, data=data) # DELETE /tag/{id} - def del_tag( - self, id_: int - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + def del_tag(self, id_: int) -> Union[Response, JsonObject, dict[Any, Any]]: """Delete the tag with the given ID Args: @@ -799,14 +769,14 @@ def del_tag( # GET /downloadclient/{id} def get_download_client( self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: + ) -> Union[JsonArray, JsonObject]: """Get a list of all the download clients or a single client by its database id Args: id_ (Optional[int], optional): Download client database id. Defaults to None. Returns: - Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items + Union[JsonArray, JsonObject]: List of dictionaries with items """ path = f"downloadclient/{id_}" if id_ else "downloadclient" return self._get(path, self.ver_uri) @@ -814,18 +784,16 @@ def get_download_client( # GET /downloadclient/schema def get_download_client_schema( self, implementation: Optional[PyarrDownloadClientSchema] = None - ) -> list[dict[str, JsonDataType]]: + ) -> JsonArray: """Gets the schemas for the different download Clients Args: implementation (Optional[PyarrDownloadClientSchema], optional): Client implementation name. Defaults to None. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ - response: list[dict[str, JsonDataType]] = self._get( - "downloadclient/schema", self.ver_uri - ) + response: JsonArray = self._get("downloadclient/schema", self.ver_uri) if implementation: if filter_response := [ item for item in response if item["implementation"] == implementation @@ -838,31 +806,27 @@ def get_download_client_schema( return response # POST /downloadclient/ - def add_download_client( - self, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def add_download_client(self, data: JsonObject) -> JsonObject: """Add a download client based on the schema information supplied Note: Recommended to be used in conjunction with get_download_client_schema() Args: - data (dict[str, JsonDataType]): dictionary with download client schema and settings + data (JsonObject): dictionary with download client schema and settings Returns: - dict[str, JsonDataType]: dictionary of added item + JsonObject: dictionary of added item """ return self._post("downloadclient", self.ver_uri, data=data) # PUT /downloadclient/{id} - def upd_download_client( - self, id_: int, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_download_client(self, id_: int, data: JsonObject) -> JsonObject: """Edit a downloadclient by database id Args: id_ (int): Download client database id - data (dict[str, JsonDataType]): data to be updated within download client + data (JsonObject): data to be updated within download client Returns: dict[str, v]: dictionary of updated item @@ -872,7 +836,7 @@ def upd_download_client( # DELETE /downloadclient/{id} def del_download_client( self, id_: int - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + ) -> Union[Response, JsonObject, dict[Any, Any]]: """Delete a download client by database id Args: @@ -886,34 +850,30 @@ def del_download_client( # IMPORT LIST # GET /importlist - def get_import_list( - self, id_: Optional[int] = None - ) -> list[dict[str, JsonDataType]]: + def get_import_list(self, id_: Optional[int] = None) -> JsonArray: """Query for all lists or a single list by its database id Args: id_ (Optional[int], optional): Import list database id. Defaults to None. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ path = f"importlist/{id_}" if id_ else "importlist" return self._get(path, self.ver_uri) def get_import_list_schema( self, implementation: Optional[PyarrImportListSchema] = None - ) -> list[dict[str, JsonDataType]]: + ) -> JsonArray: """Gets the schemas for the different import list sources Args: implementation (Optional[PyarrImportListSchema], optional): Client implementation name. Defaults to None. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ - response: list[dict[str, JsonDataType]] = self._get( - "importlist/schema", self.ver_uri - ) + response: JsonArray = self._get("importlist/schema", self.ver_uri) if implementation: if filter_response := [ item for item in response if item["implementation"] == implementation @@ -926,39 +886,35 @@ def get_import_list_schema( return response # POST /importlist/ - def add_import_list(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: + def add_import_list(self, data: JsonObject) -> JsonObject: """Add an import list based on the schema information supplied Note: Recommended to be used in conjunction with get_import_list_schema() Args: - data (dict[str, JsonDataType]): dictionary with import list schema and settings + data (JsonObject): dictionary with import list schema and settings Returns: - dict[str, JsonDataType]: dictionary of added item + JsonObject: dictionary of added item """ return self._post("importlist", self.ver_uri, data=data) # PUT /importlist/{id} - def upd_import_list( - self, id_: int, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_import_list(self, id_: int, data: JsonObject) -> JsonObject: """Edit an importlist Args: id_ (int): Import list database id - data (dict[str, JsonDataType]): data to be updated within the import list + data (JsonObject): data to be updated within the import list Returns: - dict[str, JsonDataType]: Dictionary of updated data + JsonObject: Dictionary of updated data """ return self._put(f"importlist/{id_}", self.ver_uri, data=data) # DELETE /importlist/{id} - def del_import_list( - self, id_: int - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + def del_import_list(self, id_: int) -> Union[Response, JsonObject, dict[Any, Any]]: """Delete an import list Args: @@ -970,26 +926,24 @@ def del_import_list( return self._delete(f"importlist/{id_}", self.ver_uri) # GET /config/downloadclient - def get_config_download_client(self) -> dict[str, JsonDataType]: + def get_config_download_client(self) -> JsonObject: """Gets download client page configuration Returns: - dict[str, JsonDataType]: Dictionary of configuration + JsonObject: Dictionary of configuration """ return self._get("config/downloadclient", self.ver_uri) - def upd_config_download_client( - self, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_config_download_client(self, data: JsonObject) -> JsonObject: """Update download client page configurations Note: Recommended to be used in conjunction with get_config_download_client() Args: - data (dict[str, JsonDataType]): data to be updated + data (JsonObject): data to be updated Returns: - dict[str, JsonDataType]: dictionary with updated items + JsonObject: dictionary with updated items """ return self._put("config/downloadclient", self.ver_uri, data=data) diff --git a/pyarr/lidarr.py b/pyarr/lidarr.py index 29492dd..baac4c5 100644 --- a/pyarr/lidarr.py +++ b/pyarr/lidarr.py @@ -2,7 +2,7 @@ from requests import Response -from pyarr.types import JsonDataType +from pyarr.types import JsonArray, JsonObject from .base import BaseArrAPI from .exceptions import PyarrMissingArgument, PyarrMissingProfile @@ -36,7 +36,7 @@ def add_root_folder( qualityProfile: int, metadataProfile: int, defaultTags: list[int] = None, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Add a new location to store files Args: @@ -47,7 +47,7 @@ def add_root_folder( metadataProfile (int): Default metadata profile ID Returns: - dict[str, JsonDataType]: Dictonary with added record + JsonObject: Dictonary with added record """ folder_json = { "defaultTags": defaultTags or [], @@ -59,7 +59,7 @@ def add_root_folder( return self._post("rootfolder", self.ver_uri, data=folder_json) - def lookup(self, term: str) -> list[dict[str, JsonDataType]]: + def lookup(self, term: str) -> JsonArray: """Search for an artist / album / song Args: @@ -68,11 +68,11 @@ def lookup(self, term: str) -> list[dict[str, JsonDataType]]: lidarr.lookup(term="lidarr:cc197bad-dc9c-440d-a5b5-d52ba2e14234") Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._get("search", self.ver_uri, params={"term": term}) - def lookup_artist(self, term: str) -> list[dict[str, JsonDataType]]: + def lookup_artist(self, term: str) -> JsonArray: """Search for an Artist to add to the database Args: @@ -81,12 +81,12 @@ def lookup_artist(self, term: str) -> list[dict[str, JsonDataType]]: lidarr.lookup(term="lidarr:cc197bad-dc9c-440d-a5b5-d52ba2e14234") Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._get("artist/lookup", self.ver_uri, params={"term": term}) - def lookup_album(self, term: str) -> list[dict[str, JsonDataType]]: + def lookup_album(self, term: str) -> JsonArray: """Search for an Album to add to the database Args: @@ -95,13 +95,11 @@ def lookup_album(self, term: str) -> list[dict[str, JsonDataType]]: lidarr.lookup(term="lidarr:1dc4c347-a1db-32aa-b14f-bc9cc507b843") Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._get("album/lookup", self.ver_uri, params={"term": term}) - def get_artist( - self, id_: Optional[Union[str, int]] = None - ) -> list[dict[str, JsonDataType]]: + def get_artist(self, id_: Optional[Union[str, int]] = None) -> JsonArray: """Get an artist by ID or get all artists Args: @@ -111,7 +109,7 @@ def get_artist( Include a string to search by MusicBrainz id. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ _path = "" if isinstance(id_, str) or id_ is None else f"/{id_}" @@ -185,7 +183,7 @@ def add_artist( monitored: bool = True, artist_monitor: LidarrArtistMonitor = LidarrArtistMonitor.ALL_ALBUMS, artist_search_for_missing_albums: bool = False, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Adds an artist based on a search term, must be artist name or album/single by lidarr guid @@ -199,7 +197,7 @@ def add_artist( artist_search_for_missing_albums (bool, optional): Search for missing albums by this artist. Defaults to False. Returns: - dict[str, JsonDataType]: Dictonary with added record + JsonObject: Dictonary with added record """ artist_json = self._artist_json( @@ -213,22 +211,20 @@ def add_artist( ) return self._post("artist", self.ver_uri, data=artist_json) - def upd_artist(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: + def upd_artist(self, data: JsonObject) -> JsonObject: """Update an existing artist note: Args: - data (dict[str, JsonDataType]): Dictionary containing an object obtained from get_artist() + data (JsonObject): Dictionary containing an object obtained from get_artist() Returns: - dict[str, JsonDataType]: Dictionary of updated record + JsonObject: Dictionary of updated record """ return self._put("artist", self.ver_uri, data=data) - def delete_artist( - self, id_: int - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + def delete_artist(self, id_: int) -> Union[Response, JsonObject, dict[Any, Any]]: """Delete an artist with the provided ID Args: @@ -245,7 +241,7 @@ def get_album( artistId: Optional[int] = None, foreignAlbumId: Optional[int] = None, allArtistAlbums: bool = False, - ) -> list[dict[str, JsonDataType]]: + ) -> JsonArray: """Get a specific album by ID, or get all albums Args: @@ -255,7 +251,7 @@ def get_album( allArtistAlbums (bool, optional): Get all artists albums. Defaults to False. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ params: dict[str, Any] = {"includeAllArtistAlbums": allArtistAlbums} @@ -281,7 +277,7 @@ def _album_json( monitored: bool = True, artist_monitor: LidarrArtistMonitor = LidarrArtistMonitor.ALL_ALBUMS, artist_search_for_missing_albums: bool = False, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Method to help build the JSON for adding an album Args: @@ -297,7 +293,7 @@ def _album_json( PyarrMissingProfile: Error if there are no quality or metadata profiles that match Returns: - dict[str, JsonDataType]: Dictionary with album data + JsonObject: Dictionary with album data """ if quality_profile_id is None: try: @@ -336,7 +332,7 @@ def add_album( monitored: bool = True, artist_monitor: LidarrArtistMonitor = LidarrArtistMonitor.ALL_ALBUMS, artist_search_for_missing_albums: bool = False, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Adds an album to Lidarr Args: @@ -349,9 +345,9 @@ def add_album( artist_search_for_missing_albums (bool, optional): Search for any missing albums by this artist. Defaults to False. Returns: - dict[str, JsonDataType]: Dictionary with added record + JsonObject: Dictionary with added record """ - album_json: dict[str, JsonDataType] = self._album_json( + album_json: JsonObject = self._album_json( id_, root_dir, quality_profile_id, @@ -362,23 +358,21 @@ def add_album( ) return self._post("album", self.ver_uri, data=album_json) - def upd_album(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: + def upd_album(self, data: JsonObject) -> JsonObject: """Update an album Args: - data (dict[str, JsonDataType]): data to update albums + data (JsonObject): data to update albums Note: To be used in conjunction with get_album() Returns: - dict[str, JsonDataType]: Dictionary of updated record + JsonObject: Dictionary of updated record """ return self._put("album", self.ver_uri, data=data) - def delete_album( - self, id_: int - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + def delete_album(self, id_: int) -> Union[Response, JsonObject, dict[Any, Any]]: """Delete an album with the provided ID Args: @@ -390,14 +384,14 @@ def delete_album( return self._delete(f"album/{id_}", self.ver_uri) # POST /command - def post_command(self, name: LidarrCommand) -> dict[str, JsonDataType]: + def post_command(self, name: LidarrCommand) -> JsonObject: """Send a command to Lidarr Args: name (LidarrCommand): Command to be run against Lidarr Returns: - dict[str, JsonDataType]: dictionary of executed command information + JsonObject: dictionary of executed command information """ return self._post("command", self.ver_uri, data={"name": name}) @@ -410,7 +404,7 @@ def get_wanted( sort_key: Optional[LidarrSortKey] = None, sort_dir: Optional[PyarrSortDirection] = None, missing: bool = True, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Get wanted albums that are missing or not meeting cutoff Args: @@ -422,7 +416,7 @@ def get_wanted( missing (bool, optional): Search for missing (True) or cutoff not met (False). Defaults to True. Returns: - dict[str, JsonDataType]: List of dictionaries with items + JsonObject: List of dictionaries with items """ params: dict[str, Union[int, LidarrSortKey, PyarrSortDirection, bool]] = {} if page: @@ -444,14 +438,14 @@ def get_wanted( # GET /parse # TODO: Confirm response type - def get_parse(self, title: str) -> list[dict[str, JsonDataType]]: + def get_parse(self, title: str) -> JsonArray: """Return the music / artist with a matching filename Args: title (str): file Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._get("parse", self.ver_uri, params={"title": title}) @@ -462,7 +456,7 @@ def get_tracks( albumId: Optional[int] = None, albumReleaseId: Optional[int] = None, trackIds: Optional[Union[int, list[int]]] = None, - ) -> list[dict[str, JsonDataType]]: + ) -> JsonArray: """Get tracks based on provided IDs Args: @@ -472,7 +466,7 @@ def get_tracks( trackIds (Optional[Union[int, list[int]]], optional): Track IDs. Defaults to None. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ params: dict[str, Any] = {} if artistId is not None: @@ -507,7 +501,7 @@ def get_track_file( albumId: Optional[int] = None, trackFileIds: Union[int, list[int], None] = None, unmapped: Optional[bool] = None, - ) -> list[dict[str, JsonDataType]]: + ) -> JsonArray: """Get track files based on IDs, or get all unmapped files Args: @@ -520,7 +514,7 @@ def get_track_file( PyarrError: Where no IDs or unmapped params provided Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ if ( artistId is None @@ -547,24 +541,24 @@ def get_track_file( ) # PUT /trackfile/{id_} - def upd_track_file(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: + def upd_track_file(self, data: JsonObject) -> JsonObject: """Update an existing track file Note: To be used in conjunction with get_track_file() Args: - data (dict[str, JsonDataType]): Updated data for track files + data (JsonObject): Updated data for track files Returns: - dict[str, JsonDataType]: Dictionary of updated record + JsonObject: Dictionary of updated record """ return self._put("trackfile", self.ver_uri, data=data) # DEL /trackfile/{ids_} def delete_track_file( self, ids_: Union[int, list[int]] - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + ) -> Union[Response, JsonObject, dict[Any, Any]]: """Delete track files. Use integer for one file or list for mass deletion. Args: @@ -580,16 +574,14 @@ def delete_track_file( ) # GET /metadataprofile/{id} - def get_metadata_profile( - self, id_: Optional[int] = None - ) -> list[dict[str, JsonDataType]]: + def get_metadata_profile(self, id_: Optional[int] = None) -> JsonArray: """Gets all metadata profiles or specific one with id Args: id_ (Optional[int], optional): Metadata profile id from database. Defaults to None. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._get( f"metadataprofile{f'/{id_}' if id_ else ''}", @@ -599,42 +591,38 @@ def get_metadata_profile( # TODO: POST /metadataprofile # PUT /metadataprofile - def upd_metadata_profile( - self, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_metadata_profile(self, data: JsonObject) -> JsonObject: """Update a metadata profile Args: - data (dict[str, JsonDataType]): Data containing metadata profile and changes + data (JsonObject): Data containing metadata profile and changes Returns: - dict[str, JsonDataType]: Dictionary of updated record + JsonObject: Dictionary of updated record """ return self._put("metadataprofile", self.ver_uri, data=data) # GET /config/metadataProvider - def get_metadata_provider(self) -> dict[str, JsonDataType]: + def get_metadata_provider(self) -> JsonObject: """Get metadata provider config (settings/metadata) Returns: - dict[str, JsonDataType]: Dictionary with data + JsonObject: Dictionary with data """ return self._get("config/metadataProvider", self.ver_uri) # PUT /config/metadataprovider - def upd_metadata_provider( - self, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_metadata_provider(self, data: JsonObject) -> JsonObject: """Update metadata provider by providing json data update Note: To be used in conjunction with get_metadata_provider() Args: - data (dict[str, JsonDataType]): Configuration data + data (JsonObject): Configuration data Returns: - dict[str, JsonDataType]: Dictionary of updated record + JsonObject: Dictionary of updated record """ return self._put("config/metadataProvider", self.ver_uri, data=data) @@ -648,7 +636,7 @@ def get_queue( unknown_artists: Optional[bool] = None, include_artist: Optional[bool] = None, include_album: Optional[bool] = None, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Get the queue of download_release Args: @@ -661,7 +649,7 @@ def get_queue( include_album (Optional[bool], optional): Include albums. Defaults to None. Returns: - dict[str, JsonDataType]: List of dictionaries with items + JsonObject: List of dictionaries with items """ params: dict[str, Union[int, str, PyarrSortDirection, LidarrSortKey]] = {} if page: @@ -690,7 +678,7 @@ def get_queue_details( albumIds: Union[list[int], None] = None, include_artist: Optional[bool] = None, include_album: Optional[bool] = None, - ) -> list[dict[str, JsonDataType]]: + ) -> JsonArray: """Get queue details for artist or album Args: @@ -700,7 +688,7 @@ def get_queue_details( include_album (Optional[bool], optional): Include the album. Defaults to None. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ params: dict[str, Any] = {} @@ -718,7 +706,7 @@ def get_queue_details( # GET /release def get_release( self, artistId: Optional[int] = None, albumId: Optional[int] = None - ) -> list[dict[str, JsonDataType]]: + ) -> JsonArray: """Search indexers for specified fields. Args: @@ -726,7 +714,7 @@ def get_release( albumId (Optional[int], optional): Album IT from Database. Defaults to None. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ params = {} if artistId: @@ -736,9 +724,7 @@ def get_release( return self._get("release", self.ver_uri, params=params) # GET /rename - def get_rename( - self, artistId: int, albumId: Optional[int] = None - ) -> list[dict[str, JsonDataType]]: + def get_rename(self, artistId: int, albumId: Optional[int] = None) -> JsonArray: """Get files matching specified id that are not properly renamed yet. Args: @@ -746,7 +732,7 @@ def get_rename( albumId (Optional[int], optional): Album ID. Defaults to None. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ params = {"artistId": artistId} if albumId: @@ -765,7 +751,7 @@ def get_manual_import( artistId: Optional[int] = None, filterExistingFiles: Optional[bool] = None, replaceExistingFiles: Optional[bool] = None, - ) -> list[dict[str, JsonDataType]]: + ) -> JsonArray: """Gets a manual import list Args: @@ -776,7 +762,7 @@ def get_manual_import( replaceExistingFiles (bool, optional): replace files. Defaults to True. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ params: dict[str, Union[str, int, bool]] = {"folder": folder} if downloadId: @@ -791,26 +777,24 @@ def get_manual_import( return self._get("manualimport", self.ver_uri, params=params) # PUT /manualimport - def upd_manual_import( - self, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_manual_import(self, data: JsonObject) -> JsonObject: """Update a manual import Note: To be used in conjunction with get_manual_import() Args: - data (dict[str, JsonDataType]): Data containing changes + data (JsonObject): Data containing changes Returns: - dict[str, JsonDataType]: Dictionary of updated record + JsonObject: Dictionary of updated record """ return self._put("manualimport", self.ver_uri, data=data) # GET /retag def get_retag( self, artistId: Optional[int] = None, albumId: Optional[int] = None - ) -> list[dict[str, JsonDataType]]: + ) -> JsonArray: """Get Retag Args: @@ -818,7 +802,7 @@ def get_retag( albumId Optional[int], optional): ID foir the album. Defaults to None. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ params = {} if artistId: diff --git a/pyarr/models/common.py b/pyarr/models/common.py index e63f0a7..07a9d52 100644 --- a/pyarr/models/common.py +++ b/pyarr/models/common.py @@ -1,9 +1,7 @@ -from dataclasses import dataclass from enum import Enum -@dataclass(order=True) -class PyarrSortDirection(Enum): +class PyarrSortDirection(str, Enum): """Pyarr sort direction""" ASC = "ascending" @@ -11,8 +9,7 @@ class PyarrSortDirection(Enum): DESC = "descending" -@dataclass(order=True) -class PyarrLogSortKey(Enum): +class PyarrLogSortKey(str, Enum): """Log Sort Keys Note: @@ -29,8 +26,7 @@ class PyarrLogSortKey(Enum): EXCEPTION_TYPE = "exceptionType" -@dataclass(order=True) -class PyarrBlocklistSortKey(Enum): +class PyarrBlocklistSortKey(str, Enum): """Block list sort keys Note: @@ -41,8 +37,7 @@ class PyarrBlocklistSortKey(Enum): DATE = "date" -@dataclass(order=True) -class PyarrHistorySortKey(Enum): +class PyarrHistorySortKey(str, Enum): """History sort keys Note: @@ -53,8 +48,7 @@ class PyarrHistorySortKey(Enum): TIME = "time" -@dataclass(order=True) -class PyarrTaskSortKey(Enum): +class PyarrTaskSortKey(str, Enum): """Task sort keys Note: @@ -65,8 +59,7 @@ class PyarrTaskSortKey(Enum): TIME_LEFT = "timeleft" -@dataclass(order=True) -class PyarrLogFilterKey(Enum): +class PyarrLogFilterKey(str, Enum): """Log filter keys Note: @@ -77,8 +70,7 @@ class PyarrLogFilterKey(Enum): LEVEL = "level" -@dataclass(order=True) -class PyarrLogFilterValue(Enum): +class PyarrLogFilterValue(str, Enum): """Log filter values Note: @@ -92,8 +84,7 @@ class PyarrLogFilterValue(Enum): ERROR = "error" -@dataclass(order=True) -class PyarrNotificationSchema(Enum): +class PyarrNotificationSchema(str, Enum): """Notification schema implementations""" BOXCAR = "Boxcar" @@ -120,8 +111,7 @@ class PyarrNotificationSchema(Enum): WEBHOOK = "Webhook" -@dataclass(order=True) -class PyarrDownloadClientSchema(Enum): +class PyarrDownloadClientSchema(str, Enum): """Download client schema implementations""" ARIA2 = "Aria2" @@ -143,8 +133,7 @@ class PyarrDownloadClientSchema(Enum): VUZE = "Vuze" -@dataclass(order=True) -class PyarrImportListSchema(Enum): +class PyarrImportListSchema(str, Enum): """Import List schema implementations""" PLEX = "PlexImport" diff --git a/pyarr/models/lidarr.py b/pyarr/models/lidarr.py index 37e14c8..192dc5e 100644 --- a/pyarr/models/lidarr.py +++ b/pyarr/models/lidarr.py @@ -1,9 +1,7 @@ -from dataclasses import dataclass from enum import Enum -@dataclass(order=True) -class LidarrCommand(Enum): +class LidarrCommand(str, Enum): """Lidarr commands.""" ALBUM_SEARCH = "AlbumSearch" @@ -15,8 +13,7 @@ class LidarrCommand(Enum): REFRESH_ARTIST = "RefreshArtist" -@dataclass(order=True) -class LidarrSortKey(Enum): +class LidarrSortKey(str, Enum): """Lidarr sort keys.""" ALBUM_TITLE = "albums.title" @@ -38,8 +35,7 @@ class LidarrSortKey(Enum): TITLE = "title" -@dataclass(order=True) -class LidarrArtistMonitor(Enum): +class LidarrArtistMonitor(str, Enum): """Lidarr Monitor types for an artist music""" ALL_ALBUMS = "all" diff --git a/pyarr/models/radarr.py b/pyarr/models/radarr.py index 231b080..4b885b4 100644 --- a/pyarr/models/radarr.py +++ b/pyarr/models/radarr.py @@ -1,9 +1,7 @@ -from dataclasses import dataclass from enum import Enum -@dataclass(order=True) -class RadarrCommands(Enum): +class RadarrCommands(str, Enum): """Radarr commands. Note: @@ -46,8 +44,7 @@ class RadarrCommands(Enum): """Backup the server data""" -@dataclass(order=True) -class RadarrSortKeys(Enum): +class RadarrSortKeys(str, Enum): """Radarr sort keys.""" DATE = "date" @@ -70,8 +67,7 @@ class RadarrSortKeys(Enum): TIMELEFT = "timeleft" -@dataclass(order=True) -class RadarrEventType(Enum): +class RadarrEventType(str, Enum): """Radarr event types""" UNKNOWN = "unknown" diff --git a/pyarr/models/readarr.py b/pyarr/models/readarr.py index 0a450b2..b1ce8fa 100644 --- a/pyarr/models/readarr.py +++ b/pyarr/models/readarr.py @@ -1,9 +1,7 @@ -from dataclasses import dataclass from enum import Enum -@dataclass(order=True) -class ReadarrCommands(Enum): +class ReadarrCommands(str, Enum): """Readarr commands. Note: @@ -58,8 +56,7 @@ class ReadarrCommands(Enum): """Searches for any missing books""" -@dataclass(order=True) -class ReadarrSortKeys(Enum): +class ReadarrSortKeys(str, Enum): """Readarr sort keys.""" AUTHOR_ID = "authorId" @@ -81,8 +78,7 @@ class ReadarrSortKeys(Enum): TITLE = "title" -@dataclass(order=True) -class ReadarrBookTypes(Enum): +class ReadarrBookTypes(str, Enum): """Readarr book types.""" ASIN = "asin" @@ -90,8 +86,7 @@ class ReadarrBookTypes(Enum): ISBN = "isbn" -@dataclass(order=True) -class ReadarrAuthorMonitor(Enum): +class ReadarrAuthorMonitor(str, Enum): """Readarr author monitor options.""" ALL: str = "all" diff --git a/pyarr/models/sonarr.py b/pyarr/models/sonarr.py index 9daf2fb..4410316 100644 --- a/pyarr/models/sonarr.py +++ b/pyarr/models/sonarr.py @@ -1,9 +1,7 @@ -from dataclasses import dataclass from enum import Enum -@dataclass(order=True) -class SonarrCommands(Enum): +class SonarrCommands(str, Enum): """Sonarr commands. Note: @@ -68,8 +66,7 @@ class SonarrCommands(Enum): """ -@dataclass(order=True) -class SonarrSortKey(Enum): +class SonarrSortKey(str, Enum): """Sonarr sort keys.""" AIR_DATE_UTC = "airDateUtc" diff --git a/pyarr/radarr.py b/pyarr/radarr.py index d923da1..ce5a1fc 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -3,7 +3,7 @@ from requests import Response -from pyarr.types import JsonDataType +from pyarr.types import JsonArray, JsonObject from .base import BaseArrAPI from .exceptions import PyarrMissingArgument, PyarrRecordNotFound @@ -87,14 +87,14 @@ def _movie_json( def add_root_folder( self, directory: str, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Adds a new root folder Args: directory (str): The directory path Returns: - dict[str, JsonDataType]: Dictionary containing path details + JsonObject: Dictionary containing path details """ return self._post("rootfolder", self.ver_uri, data={"path": directory}) @@ -103,9 +103,7 @@ def add_root_folder( # GET /movie def get_movie( self, id_: Optional[int] = None, tmdb: bool = False - ) -> Union[ - list[dict[str, JsonDataType]], dict[str, JsonDataType] - ]: # sourcery skip: class-extract-method + ) -> Union[JsonArray, JsonObject]: # sourcery skip: class-extract-method """Returns all movies in the database, movie based on the Radarr ID or TMDB id. Note: @@ -116,7 +114,7 @@ def get_movie( tmdb (bool): Use TMDB Id. Defaults to False Returns: - Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List or Dictionary with items + Union[JsonArray, JsonObject]: List or Dictionary with items """ params = {} if tmdb: @@ -137,7 +135,7 @@ def add_movie( monitored: bool = True, search_for_movie: bool = True, tmdb: Optional[bool] = None, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Adds a movie to the database Args: @@ -149,7 +147,7 @@ def add_movie( tmdb (Optional[bool], optional): Not in use, Deprecated. Defaults to None. Returns: - dict[str, JsonDataType]: Dictonary with added record + JsonObject: Dictonary with added record """ if tmdb: @@ -169,7 +167,7 @@ def upd_movie( self, data: Union[dict[Any, Any], list[dict[Any, Any]]], move_files: Optional[bool] = None, - ) -> Union[dict[str, JsonDataType], list[dict[str, JsonDataType]]]: + ) -> Union[JsonObject, JsonArray]: """Updates a movie in the database. Args: @@ -177,7 +175,7 @@ def upd_movie( move_files (Optional[bool], optional): Have radarr move files when updating. Defaults to None. Returns: - dict[str, JsonDataType]: Dictionary with updated record + JsonObject: Dictionary with updated record """ params = {} if move_files is not None: @@ -191,7 +189,7 @@ def upd_movie( ) # GET /movie/{id} - def get_movie_by_movie_id(self, id_: int) -> dict[str, JsonDataType]: + def get_movie_by_movie_id(self, id_: int) -> JsonObject: """Get a movie by the Radarr database ID Args: @@ -202,7 +200,7 @@ def get_movie_by_movie_id(self, id_: int) -> dict[str, JsonDataType]: future release. Please use get_movie() Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. Please use get_movie()", @@ -217,7 +215,7 @@ def del_movie( id_: Union[int, list], delete_files: Optional[bool] = None, add_exclusion: Optional[bool] = None, - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + ) -> Union[Response, JsonObject, dict[Any, Any]]: """Delete a single movie or multiple movies by database id. Args: @@ -245,7 +243,7 @@ def del_movie( ) # GET /movie/lookup - def lookup_movie(self, term: str) -> list[dict[str, JsonDataType]]: + def lookup_movie(self, term: str) -> JsonArray: """Search for a movie to add to the database (Uses TMDB for search results) Args: @@ -255,20 +253,20 @@ def lookup_movie(self, term: str) -> list[dict[str, JsonDataType]]: radarr.lookup_movie(term="tmdb:123456") Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ params = {"term": term} return self._get("movie/lookup", self.ver_uri, params) # GET /movie/lookup - def lookup_movie_by_tmdb_id(self, id_: int) -> list[dict[str, JsonDataType]]: + def lookup_movie_by_tmdb_id(self, id_: int) -> JsonArray: """Search for movie by TMDB ID Args: id_ (str): TMDB ID Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. use lookup_movie(term='tmdb:123456')", @@ -279,14 +277,14 @@ def lookup_movie_by_tmdb_id(self, id_: int) -> list[dict[str, JsonDataType]]: return self._get("movie/lookup", self.ver_uri, params) # GET /movie/lookup - def lookup_movie_by_imdb_id(self, id_: str) -> list[dict[str, JsonDataType]]: + def lookup_movie_by_imdb_id(self, id_: str) -> JsonArray: """Search for movie by IMDB ID Args: id_ (str): IMDB ID Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. use lookup_movie(term='imdb:123456')", @@ -297,16 +295,14 @@ def lookup_movie_by_imdb_id(self, id_: str) -> list[dict[str, JsonDataType]]: return self._get("movie/lookup", self.ver_uri, params) # PUT /movie/editor - def upd_movies( - self, data: dict[str, JsonDataType] - ) -> list[dict[str, JsonDataType]]: + def upd_movies(self, data: JsonObject) -> JsonArray: """The Updates operation allows to edit properties of multiple movies at once Args: - data (dict[str, JsonDataType]): Updated movie information + data (JsonObject): Updated movie information Returns: - dict[str, JsonDataType]: Dictionary containing updated record + JsonObject: Dictionary containing updated record """ warn( @@ -318,12 +314,12 @@ def upd_movies( # DELETE /movie/editor def del_movies( - self, data: dict[str, JsonDataType] - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + self, data: JsonObject + ) -> Union[Response, JsonObject, dict[Any, Any]]: """The delete operation allows mass deletion of movies (and optionally files) Args: - data (dict[str, JsonDataType]): dictionary of movies to be deleted:: + data (JsonObject): dictionary of movies to be deleted:: { "movieIds": [ @@ -344,16 +340,14 @@ def del_movies( return self._delete("movie/editor", self.ver_uri, data=data) # POST /movie/import - def import_movies( - self, data: list[dict[str, JsonDataType]] - ) -> list[dict[str, JsonDataType]]: + def import_movies(self, data: JsonArray) -> JsonArray: """The movie import endpoint is used by the bulk import view in Radarr UI. It allows movies to be bulk added to the Radarr database. Args: - data (dict[str, JsonDataType]): dictionary of all movies to be imported + data (JsonObject): dictionary of all movies to be imported Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._post("movie/import", self.ver_uri, data=data) @@ -361,28 +355,28 @@ def import_movies( # GET /moviefile # TODO: merge this with get_movie_file - def get_movie_files_by_movie_id(self, id_: int) -> list[dict[str, JsonDataType]]: + def get_movie_files_by_movie_id(self, id_: int) -> JsonArray: """Get a movie file object by Movie database ID. Args: id_ (int): Movie database ID Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ params = {"movieId": id_} return self._get("moviefile", self.ver_uri, params) # GET /moviefile - def get_movie_file(self, id_: Union[int, list]) -> list[dict[str, JsonDataType]]: + def get_movie_file(self, id_: Union[int, list]) -> JsonArray: """Get movie file by database ID Args: id_ (int, list): Movie file ID, or multiple in a list Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ if not isinstance(id_, list): return self._get(f"moviefile/{id_}", self.ver_uri) @@ -392,7 +386,7 @@ def get_movie_file(self, id_: Union[int, list]) -> list[dict[str, JsonDataType]] # DELETE /moviefile/{id} def del_movie_file( self, id_: Union[int, list] - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + ) -> Union[Response, JsonObject, dict[Any, Any]]: """Allows for deletion of a moviefile by its database ID. Args: @@ -413,7 +407,7 @@ def del_movie_file( # GET /history/movie def get_movie_history( self, id_: int, event_type: Optional[RadarrEventType] = None - ) -> list[dict[str, JsonDataType]]: + ) -> JsonArray: """Get history for a given movie in database by its database ID Args: @@ -421,7 +415,7 @@ def get_movie_history( event_type (Optional[RadarrEventType], optional): History event type to retrieve. Defaults to None. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ params: dict[str, Union[int, str, RadarrEventType]] = {"movieId": id_} if event_type: @@ -434,14 +428,14 @@ def get_movie_history( def get_blocklist_by_movie_id( self, id_: int, - ) -> list[dict[str, JsonDataType]]: + ) -> JsonArray: """Retrieves blocklisted releases that are tied to a given movie in the database. Args: id_ (int): Movie id from Database Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ params = {"movieId": id_} return self._get("blocklist/movie", self.ver_uri, params) @@ -456,7 +450,7 @@ def get_queue( sort_dir: Optional[PyarrSortDirection] = None, sort_key: Optional[RadarrSortKeys] = None, include_unknown_movie_items: Optional[bool] = None, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Return a list of items in the queue Args: @@ -467,7 +461,7 @@ def get_queue( include_unknown_movie_items (Optional[bool], optional): Include unknown movie items. Defaults to None. Returns: - dict[str, JsonDataType]: List of dictionaries with items + JsonObject: List of dictionaries with items """ params: dict[str, Union[int, PyarrSortDirection, RadarrSortKeys, bool]] = {} @@ -490,7 +484,7 @@ def get_queue_details( self, id_: Optional[int] = None, include_movie: Optional[bool] = None, - ) -> list[dict[str, JsonDataType]]: + ) -> JsonArray: """Get details of all items in queue Args: @@ -498,7 +492,7 @@ def get_queue_details( include_movie (Optional[bool], optional): Include movie object if linked. Defaults to None. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ params = {} if id_: @@ -509,11 +503,11 @@ def get_queue_details( return self._get("queue/details", self.ver_uri, params) # GET /queue/status - def get_queue_status(self) -> dict[str, JsonDataType]: + def get_queue_status(self) -> JsonObject: """Queue item status Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._get("queue/status", self.ver_uri) @@ -523,7 +517,7 @@ def del_queue_bulk( id_: list[int], remove_from_client: Optional[bool] = None, blocklist: Optional[bool] = None, - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + ) -> Union[Response, JsonObject, dict[Any, Any]]: """Remove multiple items from queue by their IDs Args: @@ -539,51 +533,47 @@ def del_queue_bulk( return self._delete("queue/bulk", self.ver_uri, params=params, data=data) # POST /queue/grab/{id} - def force_grab_queue_item(self, id_: int) -> dict[str, JsonDataType]: + def force_grab_queue_item(self, id_: int) -> JsonObject: """Perform a Radarr "force grab" on a pending queue item by its ID. Args: id_ (int): Queue item ID from database. Returns: - dict[str, JsonDataType]: Dictionary with record + JsonObject: Dictionary with record """ return self._post(f"queue/grab/{id_}", self.ver_uri) ## INDEXER # GET /indexer and /indexer/{id} - def get_indexer(self, id_: Optional[int] = None) -> list[dict[str, JsonDataType]]: + def get_indexer(self, id_: Optional[int] = None) -> JsonArray: """Get all indexers or a single indexer by its database ID. Args: id_ (Optional[int], optional): indexer database ID. Defaults to None. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ path = f"indexer/{id_}" if id_ else "indexer" return self._get(path, self.ver_uri) # PUT /indexer/{id} - def upd_indexer( - self, id_: int, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_indexer(self, id_: int, data: JsonObject) -> JsonObject: """Edit an indexer Args: id_ (int): Database ID of indexer - data (dict[str, JsonDataType]): information to be changed within the indexer + data (JsonObject): information to be changed within the indexer Returns: - dict[str, JsonDataType]: Dictionary with updated record + JsonObject: Dictionary with updated record """ return self._put(f"indexer/{id_}", self.ver_uri, data=data) # DELETE /indexer/{id} - def del_indexer( - self, id_: int - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + def del_indexer(self, id_: int) -> Union[Response, JsonObject, dict[Any, Any]]: """Delete indexer by database ID Args: @@ -599,7 +589,7 @@ def del_indexer( # POST /command def post_command( self, name: RadarrCommands, **kwargs: Optional[dict[str, Union[int, list[int]]]] - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Performs any of the predetermined Radarr command routines. Args: @@ -611,7 +601,7 @@ def post_command( Returns: - dict[str, JsonDataType]: Dictionary containing job + JsonObject: Dictionary containing job """ data: dict[str, Any] = { "name": name, @@ -623,10 +613,10 @@ def post_command( ## CUSTOM FILTERS # GET /customfilter - def get_custom_filter(self) -> list[dict[str, JsonDataType]]: + def get_custom_filter(self) -> JsonArray: """Query Radarr for custom filters Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._get("customfilter", self.ver_uri) diff --git a/pyarr/readarr.py b/pyarr/readarr.py index 2c88ee8..55adf15 100644 --- a/pyarr/readarr.py +++ b/pyarr/readarr.py @@ -2,7 +2,7 @@ from requests import Response -from pyarr.types import JsonDataType +from pyarr.types import JsonArray, JsonObject from .base import BaseArrAPI from .exceptions import PyarrMissingArgument, PyarrMissingProfile @@ -29,7 +29,7 @@ def __init__(self, host_url: str, api_key: str): ver_uri = "/v1" super().__init__(host_url, api_key, ver_uri) - def lookup(self, term: str) -> list[dict[str, JsonDataType]]: + def lookup(self, term: str) -> JsonArray: """Search for an author / book Note: @@ -45,12 +45,12 @@ def lookup(self, term: str) -> list[dict[str, JsonDataType]]: term (str): Search term Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._get("search", self.ver_uri, params={"term": term}) # GET /book/lookup - def lookup_book(self, term: str) -> list[dict[str, JsonDataType]]: + def lookup_book(self, term: str) -> JsonArray: """Searches for new books using a term, goodreads ID, isbn or asin. Args: @@ -61,19 +61,19 @@ def lookup_book(self, term: str) -> list[dict[str, JsonDataType]]: asin:B00JCDK5ME Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._get("book/lookup", self.ver_uri, {"term": term}) # GET /author/lookup/ - def lookup_author(self, term: str) -> list[dict[str, JsonDataType]]: + def lookup_author(self, term: str) -> JsonArray: """Searches for new authors using a term Args: term (str): Author name or book Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ params = {"term": term} return self._get("author/lookup", self.ver_uri, params) @@ -89,7 +89,7 @@ def _book_json( search_for_new_book: bool = False, author_monitor: ReadarrAuthorMonitor = ReadarrAuthorMonitor.ALL, author_search_for_missing_books: bool = False, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Constructs the JSON required to add a new book to Readarr Args: @@ -107,7 +107,7 @@ def _book_json( PyarrMissingProfile: Error if Metadata or Quality profile ID are incorrect Returns: - dict[str, JsonDataType]: Dictionary of generated record + JsonObject: Dictionary of generated record """ if quality_profile_id is None: try: @@ -151,7 +151,7 @@ def _author_json( monitored: bool = True, author_monitor: ReadarrAuthorMonitor = ReadarrAuthorMonitor.NONE, search_for_missing_books: bool = False, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Constructs the JSON required to add a new book to Readarr Args: @@ -167,7 +167,7 @@ def _author_json( PyarrMissingProfile: Error if Metadata or Quality profile ID are incorrect Returns: - dict[str, JsonDataType]: Dictionary of author data + JsonObject: Dictionary of author data """ if quality_profile_id is None: try: @@ -204,16 +204,14 @@ def _author_json( # COMMAND # GET /command/:id - def get_command( - self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: + def get_command(self, id_: Optional[int] = None) -> Union[JsonArray, JsonObject]: """Queries the status of a previously started command, or all currently started commands. Args: id_ (Optional[int], optional): Database ID of the command. Defaults to None. Returns: - Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items + Union[JsonArray, JsonObject]: List of dictionaries with items """ path = f"command/{id_}" if id_ else "command" return self._get(path, self.ver_uri) @@ -223,7 +221,7 @@ def post_command( self, name: ReadarrCommands, **kwargs: Optional[dict[str, Union[int, list[int]]]], - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Performs any of the predetermined Readarr command routines Args: @@ -235,7 +233,7 @@ def post_command( Returns: - dict[str, JsonDataType]: Dictionary of command run + JsonObject: Dictionary of command run """ data: dict[str, Any] = { "name": name, @@ -253,7 +251,7 @@ def get_missing( page_size: Optional[int] = None, sort_key: Optional[ReadarrSortKeys] = None, sort_dir: Optional[PyarrSortDirection] = None, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Gets missing episode (episodes without files) Args: @@ -263,7 +261,7 @@ def get_missing( sort_dir (PyarrSortDirection, optional): Direction to sort the items. Defaults to None, Returns: - dict[str, JsonDataType]: List of dictionaries with items + JsonObject: List of dictionaries with items """ params: dict[str, Union[int, ReadarrSortKeys, PyarrSortDirection, bool]] = {} if page: @@ -285,7 +283,7 @@ def get_cutoff( sort_key: Optional[ReadarrSortKeys] = None, sort_dir: Optional[PyarrSortDirection] = None, monitored: bool = None, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Get wanted items where the cutoff is unmet Args: @@ -296,7 +294,7 @@ def get_cutoff( monitored (bool, optional): Search for monitored only. Defaults to None. Returns: - dict[str, JsonDataType]: List of dictionaries with items + JsonObject: List of dictionaries with items """ params: dict[str, Union[int, ReadarrSortKeys, PyarrSortDirection, bool]] = {} if page: @@ -324,7 +322,7 @@ def get_queue( unknown_authors: Optional[bool] = None, include_author: Optional[bool] = None, include_book: Optional[bool] = None, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Get current download information Args: @@ -337,7 +335,7 @@ def get_queue( include_book (bool, optional): Include the book. Defaults to None. Returns: - dict[str, JsonDataType]: List of dictionaries with items + JsonObject: List of dictionaries with items """ params: dict[str, Union[int, ReadarrSortKeys, PyarrSortDirection, bool]] = {} if page: @@ -361,14 +359,14 @@ def get_queue( # GET /metadataprofile/{id} def get_metadata_profile( self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: + ) -> Union[JsonArray, JsonObject]: """Gets all metadata profiles or specific one with ID Args: id_ (Optional[int], optional): Metadata profile id from database. Defaults to None. Returns: - Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items + Union[JsonArray, JsonObject]: List of dictionaries with items """ path = f"metadataprofile/{id_}" if id_ else "metadataprofile" return self._get(path, self.ver_uri) @@ -376,14 +374,14 @@ def get_metadata_profile( # GET /delayprofile/{id} def get_delay_profile( self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: + ) -> Union[JsonArray, JsonObject]: """Gets all delay profiles or specific one with ID Args: id_ (Optional[int], optional): Metadata profile ID from database. Defaults to None. Returns: - Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items + Union[JsonArray, JsonObject]: List of dictionaries with items """ path = f"delayprofile/{id_}" if id_ else "delayprofile" return self._get(path, self.ver_uri) @@ -391,14 +389,14 @@ def get_delay_profile( # GET /releaseprofile/{id} def get_release_profile( self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: + ) -> Union[JsonArray, JsonObject]: """Gets all release profiles or specific one with ID Args: id_ (Optional[int], optional): Release profile ID from database. Defaults to None. Returns: - Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items + Union[JsonArray, JsonObject]: List of dictionaries with items """ path = f"releaseprofile/{id_}" if id_ else "releaseprofile" return self._get(path, self.ver_uri) @@ -406,9 +404,7 @@ def get_release_profile( ## BOOKS # GET /book and /book/{id} - def get_book( - self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: + def get_book(self, id_: Optional[int] = None) -> Union[JsonArray, JsonObject]: """Returns all books in your collection or the book with the matching book ID if one is found. @@ -416,7 +412,7 @@ def get_book( id_ (Optional[int], optional): Database id for book. Defaults to None. Returns: - Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items + Union[JsonArray, JsonObject]: List of dictionaries with items """ path = f"book/{id_}" if id_ else "book" return self._get(path, self.ver_uri) @@ -433,7 +429,7 @@ def add_book( search_for_new_book: bool = False, author_monitor: ReadarrAuthorMonitor = ReadarrAuthorMonitor.ALL, author_search_for_missing_books: bool = False, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Adds a new book and its associated author (if not already added) Args: @@ -448,7 +444,7 @@ def add_book( author_search_for_missing_books (bool, optional): search for missing books from this author. Defaults to False. Returns: - dict[str, JsonDataType]: Dictionary of added record + JsonObject: Dictionary of added record """ book_json: dict[str, Any] = self._book_json( @@ -465,9 +461,7 @@ def add_book( return self._post("book", self.ver_uri, data=book_json) # PUT /book/{id} - def upd_book( - self, id_: int, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_book(self, id_: int, data: JsonObject) -> JsonObject: """Update the given book, currently only monitored is changed, all other modifications are ignored. Note: @@ -475,10 +469,10 @@ def upd_book( Args: id_ (int): Book database ID to update - data (dict[str, JsonDataType]): All parameters to update book + data (JsonObject): All parameters to update book Returns: - dict[str, JsonDataType]: Dictionary with updated record + JsonObject: Dictionary with updated record """ return self._put(f"book/{id_}", self.ver_uri, data=data) @@ -488,7 +482,7 @@ def del_book( id_: int, delete_files: Optional[bool] = None, import_list_exclusion: Optional[bool] = None, - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + ) -> Union[Response, JsonObject, dict[Any, Any]]: """Delete the book with the given ID Args: @@ -510,16 +504,14 @@ def del_book( # AUTHOR # GET /author and /author/{id} - def get_author( - self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: + def get_author(self, id_: Optional[int] = None) -> Union[JsonArray, JsonObject]: """Returns all authors in your collection or the author with the matching ID if one is found. Args: id_ (Optional[int], optional): Database ID for author. Defaults to None. Returns: - Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items + Union[JsonArray, JsonObject]: List of dictionaries with items """ path = f"author/{id_}" if id_ else "author" return self._get(path, self.ver_uri) @@ -534,7 +526,7 @@ def add_author( monitored: bool = True, author_monitor: ReadarrAuthorMonitor = ReadarrAuthorMonitor.NONE, author_search_for_missing_books: bool = False, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Adds an authorbased on search term, must be author name or book by goodreads / isbn / asin ID Args: @@ -547,7 +539,7 @@ def add_author( author_search_for_missing_books (bool, optional): Search for any missing books by the author. Defaults to False. Returns: - dict[str, JsonDataType]: Dictonary of added record + JsonObject: Dictonary of added record """ author_json: dict[str, Any] = self._author_json( term, @@ -561,9 +553,7 @@ def add_author( return self._post("author", self.ver_uri, data=author_json) # PUT /author/{id} - def upd_author( - self, id_: int, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_author(self, id_: int, data: JsonObject) -> JsonObject: """Update the given author, currently only monitored is changed, all other modifications are ignored. Note: @@ -571,10 +561,10 @@ def upd_author( Args: id_ (int): Author database ID to update - data (dict[str, JsonDataType]): All parameters to update author + data (JsonObject): All parameters to update author Returns: - dict[str, JsonDataType]: Dictionary with updated record + JsonObject: Dictionary with updated record """ return self._put(f"author/{id_}", self.ver_uri, data=data) @@ -584,7 +574,7 @@ def del_author( id_: int, delete_files: Optional[bool] = None, import_list_exclusion: Optional[bool] = None, - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + ) -> Union[Response, JsonObject, dict[Any, Any]]: """Delete the author with the given ID Args: @@ -606,11 +596,11 @@ def del_author( ## LOG # GET /log/file - def get_log_file(self) -> list[dict[str, JsonDataType]]: + def get_log_file(self) -> JsonArray: """Get log file Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._get("log/file", self.ver_uri) @@ -629,7 +619,7 @@ def add_root_folder( default_tags: Optional[list] = None, default_quality_profile_id: int = 1, default_metadata_profile_id: int = 1, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Add a new location to store files Args: @@ -645,7 +635,7 @@ def add_root_folder( default_metadata_profile_id (int, optional): Metadata Profile. Defaults to 1. Returns: - dict[str, JsonDataType]: Dictionary of added record + JsonObject: Dictionary of added record """ folder_json = { "isCalibreLibrary": is_calibre_lib, @@ -662,25 +652,23 @@ def add_root_folder( return self._post("rootFolder", self.ver_uri, data=folder_json) # GET /config/metadataProvider - def get_metadata_provider(self) -> dict[str, JsonDataType]: + def get_metadata_provider(self) -> JsonObject: """Get metadata provider from settings/metadata Returns: - dict[str, JsonDataType]: Dictionary of record + JsonObject: Dictionary of record """ return self._get("config/metadataProvider", self.ver_uri) # PUT /config/metadataProvider - def upd_metadata_provider( - self, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_metadata_provider(self, data: JsonObject) -> JsonObject: """Update the metadata provider data. Note: To be used in conjunction with get_metadata_provider() Args: - data (dict[str, JsonDataType]): All parameters to update + data (JsonObject): All parameters to update Returns: dict[str, Any]: Dictionary of updated record diff --git a/pyarr/request_handler.py b/pyarr/request_handler.py index 8c14d95..135d9af 100644 --- a/pyarr/request_handler.py +++ b/pyarr/request_handler.py @@ -134,7 +134,6 @@ def _put( Args: path (str): Path to API endpoint e.g. /api/manualimport ver_uri (str): API Version - typevar (type): Python Type params (dict, optional): URL Parameters to send with the request. Defaults to None. data (dict, optional): Payload to send with request. Defaults to None. diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index d10ae12..f78b582 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -5,7 +5,7 @@ from requests import Response from pyarr.exceptions import PyarrMissingArgument -from pyarr.types import JsonDataType +from pyarr.types import JsonArray, JsonObject from .base import BaseArrAPI from .models.common import PyarrHistorySortKey, PyarrSortDirection @@ -78,30 +78,28 @@ def _series_json( def add_root_folder( self, directory: str, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Adds a new root folder Args: directory (str): The directory path Returns: - dict[str, JsonDataType]: Dictionary containing path details + JsonObject: Dictionary containing path details """ return self._post("rootfolder", self.ver_uri, data={"path": directory}) ## COMMAND # GET /command - def get_command( - self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: + def get_command(self, id_: Optional[int] = None) -> Union[JsonArray, JsonObject]: """Queries the status of a previously started command, or all currently started commands. Args: id_ (Optional[int], optional): Database ID of the command. Defaults to None. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + Union[JsonArray, JsonObject]: List of dictionaries with items """ path = f"command{f'/{id_}' if id_ else ''}" return self._get(path, self.ver_uri) @@ -110,7 +108,7 @@ def get_command( # TODO: Add more logic to ensure correct kwargs for a command def post_command( self, name: SonarrCommands, **kwargs: Optional[dict[str, Union[int, list[int]]]] - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Performs any of the predetermined Sonarr command routines Args: @@ -121,7 +119,7 @@ def post_command( For available commands and required `**kwargs` see the `SonarrCommands` model Returns: - dict[str, JsonDataType]: Dictionary containing job + JsonObject: Dictionary containing job """ data: dict[str, Any] = { "name": name, @@ -133,7 +131,7 @@ def post_command( ## EPISODE # GET /episode - def get_episode(self, id_: int, series: bool = False) -> dict[str, JsonDataType]: + def get_episode(self, id_: int, series: bool = False) -> JsonObject: """Get get episodes by ID or series Args: @@ -141,7 +139,7 @@ def get_episode(self, id_: int, series: bool = False) -> dict[str, JsonDataType] series (bool, optional): Set to true if the ID is for a Series. Defaults to false. Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._get( f"episode{'' if series else f'/{id_}'}", @@ -150,7 +148,7 @@ def get_episode(self, id_: int, series: bool = False) -> dict[str, JsonDataType] ) # GET /episode - def get_episodes_by_series_id(self, id_: int) -> list[dict[str, JsonDataType]]: + def get_episodes_by_series_id(self, id_: int) -> JsonArray: # sourcery skip: class-extract-method """Gets all episodes from a given series ID @@ -162,7 +160,7 @@ def get_episodes_by_series_id(self, id_: int) -> list[dict[str, JsonDataType]]: future release. Please use get_episode() Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. Please use get_episode()", @@ -173,7 +171,7 @@ def get_episodes_by_series_id(self, id_: int) -> list[dict[str, JsonDataType]]: return self._get("episode", self.ver_uri, params) # GET /episode/{id} - def get_episode_by_episode_id(self, id_: int) -> dict[str, JsonDataType]: + def get_episode_by_episode_id(self, id_: int) -> JsonObject: """Gets a specific episode by database id Args: @@ -184,7 +182,7 @@ def get_episode_by_episode_id(self, id_: int) -> dict[str, JsonDataType]: future release. Please use get_episode() Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. Please use get_episode()", @@ -194,9 +192,7 @@ def get_episode_by_episode_id(self, id_: int) -> dict[str, JsonDataType]: return self._get(f"episode/{id_}", self.ver_uri) # PUT /episode - def upd_episode( - self, id_: int, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_episode(self, id_: int, data: JsonObject) -> JsonObject: """Update the given episodes, currently only monitored is supported Args: @@ -210,21 +206,21 @@ def upd_episode( sonarr.upd_episode(1, payload) Returns: - dict[str, JsonDataType]: Dictionary with updated record + JsonObject: Dictionary with updated record """ return self._put(f"episode/{id_}", self.ver_uri, data=data) ## EPISODE FILE # GET /episodefile - def get_episode_files_by_series_id(self, id_: int) -> list[dict[str, JsonDataType]]: + def get_episode_files_by_series_id(self, id_: int) -> JsonArray: """Returns all episode file information for series id specified Args: id_ (int): Database id of series Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. Please use get_episode_file()", @@ -235,9 +231,7 @@ def get_episode_files_by_series_id(self, id_: int) -> list[dict[str, JsonDataTyp return self._get("episodefile", self.ver_uri, params) # GET /episodefile/{id} - def get_episode_file( - self, id_: int, series: bool = False - ) -> dict[str, JsonDataType]: + def get_episode_file(self, id_: int, series: bool = False) -> JsonObject: """Returns episode file information for specified id Args: @@ -245,7 +239,7 @@ def get_episode_file( series (bool, optional): Set to true if the ID is for a Series. Defaults to false. Returns: - dict[str, JsonDataType]: Dictionary with data + JsonObject: Dictionary with data """ return self._get( f"episodefile{'' if series else f'/{id_}'}", @@ -254,9 +248,7 @@ def get_episode_file( ) # DELETE /episodefile/{id} - def del_episode_file( - self, id_: int - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + def del_episode_file(self, id_: int) -> Union[Response, JsonObject, dict[Any, Any]]: """Deletes the episode file with corresponding id Args: @@ -268,14 +260,12 @@ def del_episode_file( return self._delete(f"episodefile/{id_}", self.ver_uri) # PUT /episodefile/{id} - def upd_episode_file_quality( - self, id_: int, data: dict[str, JsonDataType] - ) -> dict[str, JsonDataType]: + def upd_episode_file_quality(self, id_: int, data: JsonObject) -> JsonObject: """Updates the quality of the episode file and returns the episode file Args: id_ (int): Database id for episode file - data (dict[str, JsonDataType]): data with quality:: + data (JsonObject): data with quality:: { "quality": { @@ -290,7 +280,7 @@ def upd_episode_file_quality( } Returns: - dict[str, JsonDataType]: Dictionary with updated record + JsonObject: Dictionary with updated record """ return self._put(f"episodefile/{id_}", self.ver_uri, data=data) @@ -302,7 +292,7 @@ def get_wanted( sort_key: Optional[SonarrSortKey] = None, sort_dir: Optional[PyarrSortDirection] = None, include_series: Optional[bool] = None, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Gets missing episode (episodes without files) Args: @@ -313,7 +303,7 @@ def get_wanted( include_series (Optional[bool], optional): Include the whole series. Defaults to None Returns: - dict[str, JsonDataType]: Dictionary with items + JsonObject: Dictionary with items """ params: dict[str, Union[int, SonarrSortKey, PyarrSortDirection, bool]] = {} if page: @@ -342,7 +332,7 @@ def get_queue( include_unknown_series_items: Optional[bool] = None, include_series: Optional[bool] = None, include_episode: Optional[bool] = None, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Gets currently downloading info Args: @@ -355,7 +345,7 @@ def get_queue( include_episode (Optional[bool], optional): Include episodes. Defaults to None. Returns: - dict[str, JsonDataType]: Dictionary with queue items + JsonObject: Dictionary with queue items """ params: dict[str, Union[int, bool, SonarrSortKey, PyarrSortDirection]] = {} @@ -381,7 +371,7 @@ def get_queue( def get_parse_title_path( self, title: Optional[str] = None, path: Optional[str] = None - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Returns the result of parsing a title or path. series and episodes will be returned only if the parsing matches to a specific series and one or more episodes. series and episodes will be formatted the same as Series and Episode @@ -395,7 +385,7 @@ def get_parse_title_path( PyarrMissingArgument: If no argument is passed, error Returns: - dict[str, JsonDataType]: Dictionary with items + JsonObject: Dictionary with items """ if title is None and path is None: raise PyarrMissingArgument("A title or path must be specified") @@ -407,7 +397,7 @@ def get_parse_title_path( return self._get("parse", self.ver_uri, params) # GET /parse - def get_parsed_title(self, title: str) -> dict[str, JsonDataType]: + def get_parsed_title(self, title: str) -> JsonObject: """Returns the result of parsing a title. series and episodes will be returned only if the parsing matches to a specific series and one or more episodes. series and episodes will be formatted the same as Series and Episode @@ -417,7 +407,7 @@ def get_parsed_title(self, title: str) -> dict[str, JsonDataType]: title (str): Title of series / episode Returns: - dict[str, JsonDataType]: List of dictionaries with items + JsonObject: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. Please use get_parse_title_path()", @@ -427,7 +417,7 @@ def get_parsed_title(self, title: str) -> dict[str, JsonDataType]: return self._get("parse", self.ver_uri, {"title": title}) # GET /parse - def get_parsed_path(self, file_path: str) -> dict[str, JsonDataType]: + def get_parsed_path(self, file_path: str) -> JsonObject: """Returns the result of parsing a file path. series and episodes will be returned only if the parsing matches to a specific series and one or more episodes. series and episodes will be formatted the same as Series and Episode @@ -437,7 +427,7 @@ def get_parsed_path(self, file_path: str) -> dict[str, JsonDataType]: file_path (str): file path of series / episode Returns: - dict[str, JsonDataType]: List of dictionaries with items + JsonObject: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. Please use get_parse_title_path()", @@ -449,19 +439,19 @@ def get_parsed_path(self, file_path: str) -> dict[str, JsonDataType]: ## RELEASE # GET /release - def get_releases(self, id_: Optional[int] = None) -> list[dict[str, JsonDataType]]: + def get_releases(self, id_: Optional[int] = None) -> JsonArray: """Query indexers for latest releases. Args: id_ (int): Database id for episode to check Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ return self._get("release", self.ver_uri, {"episodeId": id_} if id_ else None) # POST /release - def download_release(self, guid: str, indexer_id: int) -> dict[str, JsonDataType]: + def download_release(self, guid: str, indexer_id: int) -> JsonObject: """Adds a previously searched release to the download client, if the release is still in Sonarr's search cache (30 minute cache). If the release is not found in the cache Sonarr will return a 404. @@ -471,7 +461,7 @@ def download_release(self, guid: str, indexer_id: int) -> dict[str, JsonDataType indexer_id (int): Database id of indexer to use Returns: - dict[str, JsonDataType]: Dictionary with download release details + JsonObject: Dictionary with download release details """ data = {"guid": guid, "indexerId": indexer_id} return self._post("release", self.ver_uri, data=data) @@ -502,9 +492,7 @@ def push_release( ## SERIES # GET /series and /series/{id} - def get_series( - self, id_: Optional[int] = None - ) -> Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: + def get_series(self, id_: Optional[int] = None) -> Union[JsonArray, JsonObject]: """Returns all series in your collection or the series with the matching series ID if one is found. @@ -512,7 +500,7 @@ def get_series( id_ (Optional[int], optional): Database id for series. Defaults to None. Returns: - Union[list[dict[str, JsonDataType]], dict[str, JsonDataType]]: List of dictionaries with items, or a + Union[JsonArray, JsonObject]: List of dictionaries with items, or a dictionary with single item """ path = f"series{f'/{id_}' if id_ else ''}" @@ -529,7 +517,7 @@ def add_series( ignore_episodes_with_files: bool = False, ignore_episodes_without_files: bool = False, search_for_missing_episodes: bool = False, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Adds a new series to your collection Note: @@ -547,7 +535,7 @@ def add_series( search_for_missing_episodes (bool, optional): Search for missing episodes to download. Defaults to False. Returns: - dict[str, JsonDataType]: Dictionary of added record + JsonObject: Dictionary of added record """ series_json = self._series_json( tvdb_id, @@ -563,21 +551,21 @@ def add_series( return self._post("series", self.ver_uri, data=series_json) # PUT /series - def upd_series(self, data: dict[str, JsonDataType]) -> dict[str, JsonDataType]: + def upd_series(self, data: JsonObject) -> JsonObject: """Update an existing series Args: - data (dict[str, JsonDataType]): contains data obtained by get_series() + data (JsonObject): contains data obtained by get_series() Returns: - dict[str, JsonDataType]: Dictionary or updated record + JsonObject: Dictionary or updated record """ return self._put("series", self.ver_uri, data=data) # DELETE /series/{id} def del_series( self, id_: int, delete_files: bool = False - ) -> Union[Response, dict[str, JsonDataType], dict[Any, Any]]: + ) -> Union[Response, JsonObject, dict[Any, Any]]: """Delete the series with the given ID Args: @@ -594,7 +582,7 @@ def del_series( # GET /series/lookup def lookup_series( self, term: Optional[str] = None, id_: Optional[int] = None - ) -> list[dict[str, JsonDataType]]: + ) -> JsonArray: """Searches for new shows on TheTVDB.com utilizing sonarr.tv's caching and augmentation proxy. Args: @@ -602,7 +590,7 @@ def lookup_series( id_ (Optional[int], optional): TVDB ID for series Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ if term is None and id_ is None: raise PyarrMissingArgument("A term or TVDB id must be included") @@ -610,14 +598,14 @@ def lookup_series( return self._get("series/lookup", self.ver_uri, {"term": term or f"tvdb:{id_}"}) # GET /series/lookup - def lookup_series_by_tvdb_id(self, id_: int) -> list[dict[str, JsonDataType]]: + def lookup_series_by_tvdb_id(self, id_: int) -> JsonArray: """Searches for new shows on TheTVDB.com utilizing sonarr.tv's caching and augmentation proxy. Args: id_ (int): TVDB ID Returns: - list[dict[str, JsonDataType]]: List of dictionaries with items + JsonArray: List of dictionaries with items """ warn( "This method is deprecated and will be removed in a future release. Please use lookup_series()", @@ -636,7 +624,7 @@ def get_history( sort_key: Optional[PyarrHistorySortKey] = None, sort_dir: Optional[PyarrSortDirection] = None, id_: Optional[int] = None, - ) -> dict[str, JsonDataType]: + ) -> JsonObject: """Gets history (grabs/failures/completed) Args: @@ -647,7 +635,7 @@ def get_history( id_ (Optional[int], optional): Filter to a specific episode ID. Defaults to None. Returns: - dict[str, JsonDataType]: Dictionary with items + JsonObject: Dictionary with items """ params: dict[str, Union[int, PyarrHistorySortKey, PyarrSortDirection]] = {} diff --git a/pyarr/types.py b/pyarr/types.py index c0ba25e..dd6623f 100644 --- a/pyarr/types.py +++ b/pyarr/types.py @@ -4,4 +4,9 @@ "JsonDataType", bound=Union[str, int, float, list, dict, bool, None] ) +JsonObject = dict[str, JsonDataType] +JsonArray = list[JsonObject] + _ReturnType = TypeVar("_ReturnType", bound=Union[dict, list]) + +__all__ = [_ReturnType, JsonArray] diff --git a/pyproject.toml b/pyproject.toml index fe4ca4a..77a0b30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,6 @@ pytest-cov = "^3.0.0" pylint = "^2.14.3" responses = "^0.21.0" pytest-responses = "^0.5.0" -enum-tools = "^0.9.0" sphinx-toolbox = "^3.1.2" autoflake = "^1.6.1" From 53efc1df0125d355e9a90dbe579f9b511e2e175c Mon Sep 17 00:00:00 2001 From: Steven Marks Date: Fri, 11 Nov 2022 21:45:02 +0000 Subject: [PATCH 41/53] test: Adding initial test with docker --- .../{recommended-Dockerfile => Dockerfile} | 1 - .devcontainer/docker-compose.workspace.yml | 13 +++++ .devcontainer/docker-compose.yml | 57 +++++++++++++++++++ .devcontainer/recommended-devcontainer.json | 6 +- .gitignore | 6 +- tests/arrs/lidarr/.gitkeep | 0 tests/arrs/radarr/.gitkeep | 0 tests/arrs/readarr/.gitkeep | 0 tests/arrs/sonarr/.gitkeep | 0 9 files changed, 79 insertions(+), 4 deletions(-) rename .devcontainer/{recommended-Dockerfile => Dockerfile} (85%) create mode 100644 .devcontainer/docker-compose.workspace.yml create mode 100644 .devcontainer/docker-compose.yml create mode 100644 tests/arrs/lidarr/.gitkeep create mode 100644 tests/arrs/radarr/.gitkeep create mode 100644 tests/arrs/readarr/.gitkeep create mode 100644 tests/arrs/sonarr/.gitkeep diff --git a/.devcontainer/recommended-Dockerfile b/.devcontainer/Dockerfile similarity index 85% rename from .devcontainer/recommended-Dockerfile rename to .devcontainer/Dockerfile index 495ca85..46e9f6c 100644 --- a/.devcontainer/recommended-Dockerfile +++ b/.devcontainer/Dockerfile @@ -10,6 +10,5 @@ RUN pip install --user poetry nox ENV PATH="${PATH}:/root/.local/bin" RUN wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O - | zsh || true -RUN poetry completions zsh > ~/.zfunc/_poetry CMD ["zsh"] diff --git a/.devcontainer/docker-compose.workspace.yml b/.devcontainer/docker-compose.workspace.yml new file mode 100644 index 0000000..1990dc4 --- /dev/null +++ b/.devcontainer/docker-compose.workspace.yml @@ -0,0 +1,13 @@ +--- + +version: '3' +services: + workspace: + build: + context: . + dockerfile: Dockerfile + container_name: workspace + volumes: + - ..:/workspace:cached + command: sleep infinity + network_mode: service:arrs diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml new file mode 100644 index 0000000..717e40e --- /dev/null +++ b/.devcontainer/docker-compose.yml @@ -0,0 +1,57 @@ +--- + +version: '3' +services: + sonarr: + image: lscr.io/linuxserver/sonarr:latest + container_name: sonarr + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - ../tests/arr_dbs/sonarr:/config + ports: + - 8989:8989 + network_mode: service:arrs + restart: unless-stopped + radarr: + image: lscr.io/linuxserver/radarr:latest + container_name: radarr + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - ../tests/arr_dbs/radarr:/config + ports: + - 7878:7878 + network_mode: service:arrs + restart: unless-stopped + readarr: + image: lscr.io/linuxserver/readarr:develop + container_name: readarr + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - ../tests/arr_dbs/readarr:/config + ports: + - 8787:8787 + network_mode: service:arrs + restart: unless-stopped + lidarr: + image: lscr.io/linuxserver/lidarr:latest + container_name: lidarr + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - ../tests/arr_dbs/lidarr:/config + ports: + - 8686:8686 + network_mode: service:arrs + restart: unless-stopped + diff --git a/.devcontainer/recommended-devcontainer.json b/.devcontainer/recommended-devcontainer.json index 222d284..9363d87 100644 --- a/.devcontainer/recommended-devcontainer.json +++ b/.devcontainer/recommended-devcontainer.json @@ -1,6 +1,10 @@ { "name": "PyArr", - "dockerFile": "Dockerfile", + "dockerComposeFile": [ + "docker-compose.yaml", + "docker-compose.workspace.yaml" + ], + "service": "workspace", "context": "..", "extensions": [ "github.vscode-pull-request-github", diff --git a/.gitignore b/.gitignore index e001cb2..57f733c 100644 --- a/.gitignore +++ b/.gitignore @@ -22,8 +22,10 @@ build .coverage coverage.xml _build +.nox .devcontainer/* !.devcontainer/recommended-devcontainer.json -!.devcontainer/recommended-Dockerfile -!.devcontainer/example-env +!.devcontainer/Dockerfile +!.devcontainer/docker-compose.yml +!.devcontainer/docker-compose.workspace.yml diff --git a/tests/arrs/lidarr/.gitkeep b/tests/arrs/lidarr/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/tests/arrs/radarr/.gitkeep b/tests/arrs/radarr/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/tests/arrs/readarr/.gitkeep b/tests/arrs/readarr/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/tests/arrs/sonarr/.gitkeep b/tests/arrs/sonarr/.gitkeep new file mode 100644 index 0000000..e69de29 From f60b196eba2b78fd3ab0a40ccefff5a1f01a734f Mon Sep 17 00:00:00 2001 From: Steven Marks Date: Fri, 11 Nov 2022 21:45:44 +0000 Subject: [PATCH 42/53] test: Adding initial test with docker --- .devcontainer/docker-compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml index 717e40e..be2ccbf 100644 --- a/.devcontainer/docker-compose.yml +++ b/.devcontainer/docker-compose.yml @@ -10,7 +10,7 @@ services: - PGID=1000 - TZ=Europe/London volumes: - - ../tests/arr_dbs/sonarr:/config + - ../tests/arrs/sonarr:/config ports: - 8989:8989 network_mode: service:arrs @@ -23,7 +23,7 @@ services: - PGID=1000 - TZ=Europe/London volumes: - - ../tests/arr_dbs/radarr:/config + - ../tests/arrs/radarr:/config ports: - 7878:7878 network_mode: service:arrs @@ -36,7 +36,7 @@ services: - PGID=1000 - TZ=Europe/London volumes: - - ../tests/arr_dbs/readarr:/config + - ../tests/arrs/readarr:/config ports: - 8787:8787 network_mode: service:arrs @@ -49,7 +49,7 @@ services: - PGID=1000 - TZ=Europe/London volumes: - - ../tests/arr_dbs/lidarr:/config + - ../tests/arrs/lidarr:/config ports: - 8686:8686 network_mode: service:arrs From c319a02368226c1cc609e611d0409990a575f646 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Sat, 12 Nov 2022 19:47:54 +0000 Subject: [PATCH 43/53] feat: Added arr config files for testing against live DBs --- .devcontainer/docker-compose.workspace.yml | 3 +-- .devcontainer/recommended-devcontainer.json | 13 +++++++++---- ...ompose.yml => recommended-docker-compose.yml} | 5 ----- .gitignore | 11 ++++++++++- sphinx-docs/contributing.rst | 14 ++++++++++++-- tests/arrs/lidarr/.gitkeep | 0 tests/arrs/lidarr/config.xml | 16 ++++++++++++++++ tests/arrs/radarr/.gitkeep | 0 tests/arrs/radarr/config.xml | 16 ++++++++++++++++ tests/arrs/readarr/.gitkeep | 0 tests/arrs/readarr/config.xml | 15 +++++++++++++++ tests/arrs/sonarr/.gitkeep | 0 tests/arrs/sonarr/config.xml | 16 ++++++++++++++++ 13 files changed, 95 insertions(+), 14 deletions(-) rename .devcontainer/{docker-compose.yml => recommended-docker-compose.yml} (89%) delete mode 100644 tests/arrs/lidarr/.gitkeep create mode 100644 tests/arrs/lidarr/config.xml delete mode 100644 tests/arrs/radarr/.gitkeep create mode 100644 tests/arrs/radarr/config.xml delete mode 100644 tests/arrs/readarr/.gitkeep create mode 100644 tests/arrs/readarr/config.xml delete mode 100644 tests/arrs/sonarr/.gitkeep create mode 100644 tests/arrs/sonarr/config.xml diff --git a/.devcontainer/docker-compose.workspace.yml b/.devcontainer/docker-compose.workspace.yml index 1990dc4..a0e0bbf 100644 --- a/.devcontainer/docker-compose.workspace.yml +++ b/.devcontainer/docker-compose.workspace.yml @@ -8,6 +8,5 @@ services: dockerfile: Dockerfile container_name: workspace volumes: - - ..:/workspace:cached + - /home/marksie1988/repos/pyarr:/workspace:cached command: sleep infinity - network_mode: service:arrs diff --git a/.devcontainer/recommended-devcontainer.json b/.devcontainer/recommended-devcontainer.json index 9363d87..64c62b8 100644 --- a/.devcontainer/recommended-devcontainer.json +++ b/.devcontainer/recommended-devcontainer.json @@ -1,11 +1,17 @@ { "name": "PyArr", "dockerComposeFile": [ - "docker-compose.yaml", - "docker-compose.workspace.yaml" + "docker-compose.yml", + "docker-compose.workspace.yml" ], "service": "workspace", - "context": "..", + "workspaceFolder": "/workspace", + "forwardPorts": [ + "sonarr:8989", + "radarr:7878", + "readarr:8787", + "lidarr:8686" + ], "extensions": [ "github.vscode-pull-request-github", "ms-python.python", @@ -25,7 +31,6 @@ } }, "terminal.integrated.defaultProfile.linux": "zsh", - "terminal.integrated.shell.linux": "/bin/zsh", "editor.formatOnPaste": false, "editor.formatOnSave": true, "editor.formatOnType": true, diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/recommended-docker-compose.yml similarity index 89% rename from .devcontainer/docker-compose.yml rename to .devcontainer/recommended-docker-compose.yml index be2ccbf..c4477e0 100644 --- a/.devcontainer/docker-compose.yml +++ b/.devcontainer/recommended-docker-compose.yml @@ -13,7 +13,6 @@ services: - ../tests/arrs/sonarr:/config ports: - 8989:8989 - network_mode: service:arrs restart: unless-stopped radarr: image: lscr.io/linuxserver/radarr:latest @@ -26,7 +25,6 @@ services: - ../tests/arrs/radarr:/config ports: - 7878:7878 - network_mode: service:arrs restart: unless-stopped readarr: image: lscr.io/linuxserver/readarr:develop @@ -39,7 +37,6 @@ services: - ../tests/arrs/readarr:/config ports: - 8787:8787 - network_mode: service:arrs restart: unless-stopped lidarr: image: lscr.io/linuxserver/lidarr:latest @@ -52,6 +49,4 @@ services: - ../tests/arrs/lidarr:/config ports: - 8686:8686 - network_mode: service:arrs restart: unless-stopped - diff --git a/.gitignore b/.gitignore index 57f733c..7e39213 100644 --- a/.gitignore +++ b/.gitignore @@ -27,5 +27,14 @@ _build .devcontainer/* !.devcontainer/recommended-devcontainer.json !.devcontainer/Dockerfile -!.devcontainer/docker-compose.yml +!.devcontainer/recommended-docker-compose.yml !.devcontainer/docker-compose.workspace.yml + +tests/arrs/sonarr/* +!tests/arrs/sonarr/config.xml +tests/arrs/radarr/* +!tests/arrs/radarr/config.xml +tests/arrs/readarr/* +!tests/arrs/readarr/config.xml +tests/arrs/lidarr/* +!tests/arrs/lidarr/config.xml diff --git a/sphinx-docs/contributing.rst b/sphinx-docs/contributing.rst index a379b48..8f3bc75 100644 --- a/sphinx-docs/contributing.rst +++ b/sphinx-docs/contributing.rst @@ -19,6 +19,7 @@ Setup your environment #. Fork the `repository `_ #. Open the repository in VSCode #. Copy the .devcontainer/recommended-*** files and remove the "recommended-" text +#. Update the renamed ``recommended-***`` files to suite your environment #. Press ``ctrl + shift + p`` and select ``Remote-Container: Reopen in Container`` #. Once loaded you can begin modification of the module or Documentation @@ -42,7 +43,7 @@ A few guidelines for approval: - Must follow PEP8 / Black formatting. (devcontainer is setup to reformat on save) - We recommend using `sourcery `_ to ensure code is most - efficient, this will be checked when the pull reuqest is opened. + efficient, this will be checked when the pull request is opened. - All functions must use google docstring format, the devcontainer has an `autodocstring `_ plugin which will auto fill. @@ -50,6 +51,12 @@ A few guidelines for approval: follow `semver `_. - Each feature / bugfix etc. should have its own pull request. +Testing +======= + +Tests can be run with the following command: ``nox -s test``. This command will check +code style and typing compliance and will then execute ``tests`` + ********************** Updating Documentation ********************** @@ -59,6 +66,9 @@ Sphinx allows for automatic documenting of all classes / functions via DocString To Update static pages, you can amend the ``.rst`` files in the ``sphinx-docs`` folder. +To test the documentation locally use command ``nox -s docs`` this will create all HTML files +in the ``build`` directory. + All Python Class / Function documentation is updated automatically by Github Actions and does not require any manual changes to be made. @@ -69,7 +79,7 @@ Pull Requests & Release *********************** Now that you have made the changes required for your enhancement, a pull request -is required for the core team to review the changes, request amendements or approve +is required for the core team to review the changes, request amendments or approve the work that you have completed. Pull Requests diff --git a/tests/arrs/lidarr/.gitkeep b/tests/arrs/lidarr/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/tests/arrs/lidarr/config.xml b/tests/arrs/lidarr/config.xml new file mode 100644 index 0000000..6530f3b --- /dev/null +++ b/tests/arrs/lidarr/config.xml @@ -0,0 +1,16 @@ + + info + + Docker + * + 8686 + 6868 + False + True + 78ee6c76a84942f68a16257beaa5fd63 + None + master + + + Lidarr + diff --git a/tests/arrs/radarr/.gitkeep b/tests/arrs/radarr/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/tests/arrs/radarr/config.xml b/tests/arrs/radarr/config.xml new file mode 100644 index 0000000..6c91fd2 --- /dev/null +++ b/tests/arrs/radarr/config.xml @@ -0,0 +1,16 @@ + + info + + Docker + * + 7878 + 9898 + False + True + 1cfe5b8a03ab47969457e03766ca6117 + None + master + + + Radarr + diff --git a/tests/arrs/readarr/.gitkeep b/tests/arrs/readarr/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/tests/arrs/readarr/config.xml b/tests/arrs/readarr/config.xml new file mode 100644 index 0000000..fd02fbc --- /dev/null +++ b/tests/arrs/readarr/config.xml @@ -0,0 +1,15 @@ + + info + + Docker + * + 8787 + 6868 + False + True + a483be8ff67a44deb0e86d6e64e2b1bc + None + develop + + + diff --git a/tests/arrs/sonarr/.gitkeep b/tests/arrs/sonarr/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/tests/arrs/sonarr/config.xml b/tests/arrs/sonarr/config.xml new file mode 100644 index 0000000..bf1af09 --- /dev/null +++ b/tests/arrs/sonarr/config.xml @@ -0,0 +1,16 @@ + + info + False + 8989 + 9898 + + * + 746b9a3b305e4b4785183f6692d03a99 + None + Docker + True + main + + Sonarr + 514 + From 0f9b539f0e63faa82ba70b1c8960dec8c40992b1 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Sat, 12 Nov 2022 19:51:14 +0000 Subject: [PATCH 44/53] fix: incorrect workflow config --- .github/workflows/test.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3a955bc..cfc26c6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,18 +11,19 @@ on: - cron: "0 0 * * *" jobs: - source: + code-quality: + name: ๐Ÿ“Š Check code quality runs-on: ubuntu-latest strategy: matrix: python-version: ["3.8", "3.9", "3.10"] - steps: - - uses: actions/checkout@v3 - - name: Setup Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: ๐Ÿงช Check tests are passing - run: | - pip install poetry nox - nox -s test + steps: + - uses: actions/checkout@v3 + - name: Setup Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: ๐Ÿงช Check tests are passing + run: | + pip install poetry nox + nox -s test From ec4f81f59c147a332dad1ea0945c7329afded9b3 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Sun, 19 Mar 2023 20:00:34 +0000 Subject: [PATCH 45/53] test: revised all tests to use live API, still WIP --- .devcontainer/docker-compose.workspace.yml | 1 + .devcontainer/recommended-devcontainer.json | 4 +- .devcontainer/recommended-docker-compose.yml | 32 +- noxfile.py | 47 + poetry.lock | 827 +- pyarr/base.py | 66 +- pyarr/exceptions.py | 4 + pyarr/lidarr.py | 50 +- pyarr/models/common.py | 16 + pyarr/models/readarr.py | 8 +- pyarr/radarr.py | 95 +- pyarr/readarr.py | 459 +- pyarr/request_handler.py | 4 + pyarr/sonarr.py | 121 +- pyproject.toml | 5 +- tests/__init__.py | 36 +- tests/conftest.py | 37 +- .../archive/state-2023-02-28T09-11-00.tar.xz | Bin 0 -> 420 bytes .../archive/state-2023-03-01T14-59-38.tar.xz | Bin 0 -> 424 bytes .../archive/state-2023-03-13T15-21-08.tar.xz | Bin 0 -> 416 bytes .../archive/state-2023-03-19T19-46-46.tar.xz | Bin 0 -> 416 bytes tests/docker_configs/deluge/config/auth | 1 + tests/docker_configs/deluge/config/core.conf | 95 + .../docker_configs/deluge/config/deluged.log | 3 + .../docker_configs/deluge/config/deluged.pid | 1 + .../deluge/config/hostlist.conf | 14 + .../deluge/config/session.state | Bin 0 -> 5411 bytes .../deluge/config/session.state.bak | Bin 0 -> 2011 bytes .../deluge/config/ssl/daemon.cert | 17 + .../deluge/config/ssl/daemon.pkey | 28 + .../deluge/config/state/.safe_state_check | 0 .../deluge/config/state/torrents.state | Bin 0 -> 80 bytes .../deluge/config/state/torrents.state.bak | Bin 0 -> 80 bytes tests/docker_configs/deluge/config/web.conf | 24 + ...y-992d35cd-3ce7-4994-b3b3-cf6630deeec7.xml | 16 + .../jackett/Jackett/Indexers/1337x.json | 67 + .../jackett/Jackett/Indexers/1337x.json.bak | 67 + .../config/jackett/Jackett/ServerConfig.json | 26 + .../jackett/config/jackett/Jackett/log.txt | 616 + .../config/jackett/Jackett/updater.txt | 1655 ++ .../Jackett/updater.txt.20230318.00000.txt | 14553 ++++++++++++++++ .../lidarr/config.xml | 4 +- .../radarr/config.xml | 4 +- .../readarr/config.xml | 5 +- .../sonarr/config.xml | 4 +- tests/fixtures/common/blocklist.json | 99 + .../fixtures/{radarr => common}/indexer.json | 0 .../{radarr => common}/indexer_all.json | 0 tests/fixtures/radarr/movie.json | 226 - tests/fixtures/radarr/movie_all.json | 228 - tests/fixtures/radarr/movie_history.json | 66 - tests/fixtures/radarr/movie_lookup.json | 228 - tests/fixtures/radarr/movie_lookup_blank.json | 1 - tests/fixtures/radarr/movie_tmdb.json | 228 - tests/fixtures/radarr/queue_status.json | 9 - tests/fixtures/sonarr/backup.json | 18 - tests/fixtures/sonarr/blocklist.json | 67 - tests/fixtures/sonarr/calendar.json | 17 - tests/fixtures/sonarr/command.json | 27 - tests/fixtures/sonarr/command_all.json | 300 - .../sonarr/config_downloadclient.json | 6 - tests/fixtures/sonarr/config_host.json | 33 - tests/fixtures/sonarr/config_naming.json | 18 - tests/fixtures/sonarr/config_ui.json | 10 - tests/fixtures/sonarr/diskspace.json | 14 - .../sonarr/download_client_schema_all.json | 58 - tests/fixtures/sonarr/downloadclient.json | 124 - tests/fixtures/sonarr/downloadclient_all.json | 126 - tests/fixtures/sonarr/episode.json | 105 - tests/fixtures/sonarr/episode_series.json | 34 - tests/fixtures/sonarr/episode_update.json | 16 - tests/fixtures/sonarr/episodefile_series.json | 88 - tests/fixtures/sonarr/health.json | 1 - tests/fixtures/sonarr/history.json | 83 - tests/fixtures/sonarr/import_list.json | 142 - tests/fixtures/sonarr/import_list_all.json | 144 - .../sonarr/import_list_schema_all.json | 37 - tests/fixtures/sonarr/indexer.json | 119 - tests/fixtures/sonarr/indexer_all.json | 121 - tests/fixtures/sonarr/log.json | 79 - tests/fixtures/sonarr/media_management.json | 21 - tests/fixtures/sonarr/metadata.json | 72 - tests/fixtures/sonarr/metadata_all.json | 178 - tests/fixtures/sonarr/notification.json | 79 - tests/fixtures/sonarr/notification_all.json | 81 - .../sonarr/notification_schema_all.json | 91 - tests/fixtures/sonarr/quality_definition.json | 13 - .../sonarr/quality_definition_all.json | 41 - tests/fixtures/sonarr/quality_profile.json | 253 - .../fixtures/sonarr/quality_profile_all.json | 255 - tests/fixtures/sonarr/release.json | 82 - tests/fixtures/sonarr/remotepathmapping.json | 6 - .../sonarr/remotepathmapping_all.json | 8 - tests/fixtures/sonarr/rootfolder.json | 12 - tests/fixtures/sonarr/rootfolder_all.json | 14 - tests/fixtures/sonarr/series.json | 75 - tests/fixtures/sonarr/series_all.json | 152 - tests/fixtures/sonarr/series_lookup.json | 63 - tests/fixtures/sonarr/system_status.json | 29 - tests/fixtures/sonarr/system_task.json | 3 - tests/fixtures/sonarr/system_task_all.json | 8 - tests/fixtures/sonarr/tag.json | 4 - tests/fixtures/sonarr/tag_all.json | 6 - tests/fixtures/sonarr/tag_detail.json | 14 - tests/fixtures/sonarr/tag_detail_all.json | 16 - tests/fixtures/sonarr/update.json | 216 - tests/fixtures/sonarr/wanted_missing.json | 24 - .../sonarr/wanted_missing_extended.json | 74 - tests/test_lidarr.py | 708 +- tests/test_radarr.py | 1228 +- tests/test_readarr.py | 990 +- tests/test_sonarr.py | 2067 +-- 112 files changed, 20653 insertions(+), 8114 deletions(-) create mode 100644 tests/docker_configs/deluge/config/archive/state-2023-02-28T09-11-00.tar.xz create mode 100644 tests/docker_configs/deluge/config/archive/state-2023-03-01T14-59-38.tar.xz create mode 100644 tests/docker_configs/deluge/config/archive/state-2023-03-13T15-21-08.tar.xz create mode 100644 tests/docker_configs/deluge/config/archive/state-2023-03-19T19-46-46.tar.xz create mode 100644 tests/docker_configs/deluge/config/auth create mode 100644 tests/docker_configs/deluge/config/core.conf create mode 100644 tests/docker_configs/deluge/config/deluged.log create mode 100644 tests/docker_configs/deluge/config/deluged.pid create mode 100644 tests/docker_configs/deluge/config/hostlist.conf create mode 100644 tests/docker_configs/deluge/config/session.state create mode 100644 tests/docker_configs/deluge/config/session.state.bak create mode 100644 tests/docker_configs/deluge/config/ssl/daemon.cert create mode 100644 tests/docker_configs/deluge/config/ssl/daemon.pkey create mode 100644 tests/docker_configs/deluge/config/state/.safe_state_check create mode 100644 tests/docker_configs/deluge/config/state/torrents.state create mode 100644 tests/docker_configs/deluge/config/state/torrents.state.bak create mode 100644 tests/docker_configs/deluge/config/web.conf create mode 100644 tests/docker_configs/jackett/config/jackett/Jackett/DataProtection/key-992d35cd-3ce7-4994-b3b3-cf6630deeec7.xml create mode 100644 tests/docker_configs/jackett/config/jackett/Jackett/Indexers/1337x.json create mode 100644 tests/docker_configs/jackett/config/jackett/Jackett/Indexers/1337x.json.bak create mode 100644 tests/docker_configs/jackett/config/jackett/Jackett/ServerConfig.json create mode 100644 tests/docker_configs/jackett/config/jackett/Jackett/log.txt create mode 100644 tests/docker_configs/jackett/config/jackett/Jackett/updater.txt create mode 100644 tests/docker_configs/jackett/config/jackett/Jackett/updater.txt.20230318.00000.txt rename tests/{arrs => docker_configs}/lidarr/config.xml (87%) rename tests/{arrs => docker_configs}/radarr/config.xml (87%) rename tests/{arrs => docker_configs}/readarr/config.xml (79%) rename tests/{arrs => docker_configs}/sonarr/config.xml (87%) create mode 100644 tests/fixtures/common/blocklist.json rename tests/fixtures/{radarr => common}/indexer.json (100%) rename tests/fixtures/{radarr => common}/indexer_all.json (100%) delete mode 100644 tests/fixtures/radarr/movie.json delete mode 100644 tests/fixtures/radarr/movie_all.json delete mode 100644 tests/fixtures/radarr/movie_history.json delete mode 100644 tests/fixtures/radarr/movie_lookup.json delete mode 100644 tests/fixtures/radarr/movie_lookup_blank.json delete mode 100644 tests/fixtures/radarr/movie_tmdb.json delete mode 100644 tests/fixtures/radarr/queue_status.json delete mode 100644 tests/fixtures/sonarr/backup.json delete mode 100644 tests/fixtures/sonarr/blocklist.json delete mode 100644 tests/fixtures/sonarr/calendar.json delete mode 100644 tests/fixtures/sonarr/command.json delete mode 100644 tests/fixtures/sonarr/command_all.json delete mode 100644 tests/fixtures/sonarr/config_downloadclient.json delete mode 100644 tests/fixtures/sonarr/config_host.json delete mode 100644 tests/fixtures/sonarr/config_naming.json delete mode 100644 tests/fixtures/sonarr/config_ui.json delete mode 100644 tests/fixtures/sonarr/diskspace.json delete mode 100644 tests/fixtures/sonarr/download_client_schema_all.json delete mode 100644 tests/fixtures/sonarr/downloadclient.json delete mode 100644 tests/fixtures/sonarr/downloadclient_all.json delete mode 100644 tests/fixtures/sonarr/episode.json delete mode 100644 tests/fixtures/sonarr/episode_series.json delete mode 100644 tests/fixtures/sonarr/episode_update.json delete mode 100644 tests/fixtures/sonarr/episodefile_series.json delete mode 100644 tests/fixtures/sonarr/health.json delete mode 100644 tests/fixtures/sonarr/history.json delete mode 100644 tests/fixtures/sonarr/import_list.json delete mode 100644 tests/fixtures/sonarr/import_list_all.json delete mode 100644 tests/fixtures/sonarr/import_list_schema_all.json delete mode 100644 tests/fixtures/sonarr/indexer.json delete mode 100644 tests/fixtures/sonarr/indexer_all.json delete mode 100644 tests/fixtures/sonarr/log.json delete mode 100644 tests/fixtures/sonarr/media_management.json delete mode 100644 tests/fixtures/sonarr/metadata.json delete mode 100644 tests/fixtures/sonarr/metadata_all.json delete mode 100644 tests/fixtures/sonarr/notification.json delete mode 100644 tests/fixtures/sonarr/notification_all.json delete mode 100644 tests/fixtures/sonarr/notification_schema_all.json delete mode 100644 tests/fixtures/sonarr/quality_definition.json delete mode 100644 tests/fixtures/sonarr/quality_definition_all.json delete mode 100644 tests/fixtures/sonarr/quality_profile.json delete mode 100644 tests/fixtures/sonarr/quality_profile_all.json delete mode 100644 tests/fixtures/sonarr/release.json delete mode 100644 tests/fixtures/sonarr/remotepathmapping.json delete mode 100644 tests/fixtures/sonarr/remotepathmapping_all.json delete mode 100644 tests/fixtures/sonarr/rootfolder.json delete mode 100644 tests/fixtures/sonarr/rootfolder_all.json delete mode 100644 tests/fixtures/sonarr/series.json delete mode 100644 tests/fixtures/sonarr/series_all.json delete mode 100644 tests/fixtures/sonarr/series_lookup.json delete mode 100644 tests/fixtures/sonarr/system_status.json delete mode 100644 tests/fixtures/sonarr/system_task.json delete mode 100644 tests/fixtures/sonarr/system_task_all.json delete mode 100644 tests/fixtures/sonarr/tag.json delete mode 100644 tests/fixtures/sonarr/tag_all.json delete mode 100644 tests/fixtures/sonarr/tag_detail.json delete mode 100644 tests/fixtures/sonarr/tag_detail_all.json delete mode 100644 tests/fixtures/sonarr/update.json delete mode 100644 tests/fixtures/sonarr/wanted_missing.json delete mode 100644 tests/fixtures/sonarr/wanted_missing_extended.json diff --git a/.devcontainer/docker-compose.workspace.yml b/.devcontainer/docker-compose.workspace.yml index a0e0bbf..9a31db8 100644 --- a/.devcontainer/docker-compose.workspace.yml +++ b/.devcontainer/docker-compose.workspace.yml @@ -9,4 +9,5 @@ services: container_name: workspace volumes: - /home/marksie1988/repos/pyarr:/workspace:cached + - /var/run/docker.sock:/var/run/docker.sock command: sleep infinity diff --git a/.devcontainer/recommended-devcontainer.json b/.devcontainer/recommended-devcontainer.json index 64c62b8..f3d34ad 100644 --- a/.devcontainer/recommended-devcontainer.json +++ b/.devcontainer/recommended-devcontainer.json @@ -10,7 +10,9 @@ "sonarr:8989", "radarr:7878", "readarr:8787", - "lidarr:8686" + "lidarr:8686", + "jackett:9117", + "deluge:8112" ], "extensions": [ "github.vscode-pull-request-github", diff --git a/.devcontainer/recommended-docker-compose.yml b/.devcontainer/recommended-docker-compose.yml index c4477e0..1f24493 100644 --- a/.devcontainer/recommended-docker-compose.yml +++ b/.devcontainer/recommended-docker-compose.yml @@ -10,7 +10,7 @@ services: - PGID=1000 - TZ=Europe/London volumes: - - ../tests/arrs/sonarr:/config + - ../tests/docker_configs/sonarr/config.xml:/config/config.xml ports: - 8989:8989 restart: unless-stopped @@ -22,7 +22,7 @@ services: - PGID=1000 - TZ=Europe/London volumes: - - ../tests/arrs/radarr:/config + - ../tests/docker_configs/radarr/config.xml:/config/config.xml ports: - 7878:7878 restart: unless-stopped @@ -34,7 +34,7 @@ services: - PGID=1000 - TZ=Europe/London volumes: - - ../tests/arrs/readarr:/config + - ../tests/docker_configs/readarr/config.xml:/config/config.xml ports: - 8787:8787 restart: unless-stopped @@ -46,7 +46,31 @@ services: - PGID=1000 - TZ=Europe/London volumes: - - ../tests/arrs/lidarr:/config + - ../tests/docker_configs/lidarr/config.xml:/config/config.xml ports: - 8686:8686 restart: unless-stopped + deluge: + image: lscr.io/linuxserver/deluge:latest + container_name: deluge + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - ../tests/docker_configs/deluge/config:/config + ports: + - 8112:8112 + restart: unless-stopped + jackett: + image: lscr.io/linuxserver/jackett:latest + container_name: jackett + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - ../tests/docker_configs/jackett/config:/config + ports: + - 9117:9117 + restart: unless-stopped diff --git a/noxfile.py b/noxfile.py index 984b7ab..bfb4918 100644 --- a/noxfile.py +++ b/noxfile.py @@ -29,6 +29,53 @@ def test(session: Session) -> None: session.notify("test_suite") +@nox.session(reuse_venv=True) +def docker_test(session: Session) -> None: + """Run the complete test suite""" + session.notify("test_docker_start") + session.notify("test_types") + session.notify("test_style") + session.notify("test_suite") + session.notify("test_docker_stop") + + +@nox.session(reuse_venv=True) +def test_docker_start(session: Session) -> None: + session.run( + "docker", + "compose", + "-f", + ".devcontainer/docker-compose.yml", + "pull", + external=True, + ) + session.run( + "docker", + "compose", + "--project-name", + "pyarr_devcontainer", + "-f", + ".devcontainer/docker-compose.yml", + "up", + "-d", + external=True, + ) + + +@nox.session(reuse_venv=True) +def test_docker_stop(session: Session) -> None: + session.run( + "docker", + "compose", + "--project-name", + "pyarr_devcontainer", + "-f", + ".devcontainer/docker-compose.yml", + "down", + external=True, + ) + + @nox.session(reuse_venv=True) def test_suite(session: Session) -> None: """Run the Python-based test suite""" diff --git a/poetry.lock b/poetry.lock index de467ec..a213c7a 100644 --- a/poetry.lock +++ b/poetry.lock @@ -24,6 +24,14 @@ requests = ">=2.24.0" all = ["cachecontrol[filecache] (>=0.12.6)", "lockfile (>=0.12.2)"] limiter = ["cachecontrol[filecache] (>=0.12.6)", "lockfile (>=0.12.2)"] +[[package]] +name = "appnope" +version = "0.1.3" +description = "Disable App Nap on macOS >= 10.9" +category = "dev" +optional = false +python-versions = "*" + [[package]] name = "astroid" version = "2.11.6" @@ -34,9 +42,24 @@ python-versions = ">=3.6.2" [package.dependencies] lazy-object-proxy = ">=1.4.0" +setuptools = ">=20.0" typing-extensions = {version = ">=3.10", markers = "python_version < \"3.10\""} wrapt = ">=1.11,<2" +[[package]] +name = "asttokens" +version = "2.1.0" +description = "Annotate AST trees with source code positions" +category = "dev" +optional = false +python-versions = "*" + +[package.dependencies] +six = "*" + +[package.extras] +test = ["astroid (<=2.5.3)", "pytest"] + [[package]] name = "atomicwrites" version = "1.4.0" @@ -54,10 +77,10 @@ optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" [package.extras] -dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit", "cloudpickle"] -docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"] -tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "cloudpickle"] -tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "cloudpickle"] +dev = ["cloudpickle", "coverage[toml] (>=5.0.2)", "furo", "hypothesis", "mypy", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "six", "sphinx", "sphinx-notfound-page", "zope.interface"] +docs = ["furo", "sphinx", "sphinx-notfound-page", "zope.interface"] +tests = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "six", "zope.interface"] +tests-no-zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "six"] [[package]] name = "autodocsumm" @@ -93,6 +116,14 @@ python-versions = ">=3.6" [package.dependencies] pytz = ">=2015.7" +[[package]] +name = "backcall" +version = "0.2.0" +description = "Specifications for callback functions passed in to an API" +category = "dev" +optional = false +python-versions = "*" + [[package]] name = "beautifulsoup4" version = "4.11.1" @@ -155,6 +186,17 @@ category = "main" optional = false python-versions = ">=3.6" +[[package]] +name = "cffi" +version = "1.15.1" +description = "Foreign Function Interface for Python calling C code." +category = "dev" +optional = false +python-versions = "*" + +[package.dependencies] +pycparser = "*" + [[package]] name = "cfgv" version = "3.3.1" @@ -172,7 +214,7 @@ optional = false python-versions = ">=3.5.0" [package.extras] -unicode_backport = ["unicodedata2"] +unicode-backport = ["unicodedata2"] [[package]] name = "click" @@ -216,8 +258,24 @@ optional = false python-versions = ">=3.7" [package.extras] -docs = ["sphinx", "jaraco.packaging (>=9)", "rst.linker (>=1.9)"] -testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "mock", "cssselect", "jaraco.test (>=5.1)", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)", "lxml", "importlib-resources"] +docs = ["jaraco.packaging (>=9)", "rst.linker (>=1.9)", "sphinx"] +testing = ["cssselect", "importlib-resources", "jaraco.test (>=5.1)", "lxml", "mock", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] + +[[package]] +name = "debugpy" +version = "1.6.3" +description = "An implementation of the Debug Adapter Protocol for Python" +category = "dev" +optional = false +python-versions = ">=3.7" + +[[package]] +name = "decorator" +version = "5.1.1" +description = "Decorators for Humans" +category = "dev" +optional = false +python-versions = ">=3.5" [[package]] name = "dict2css" @@ -274,6 +332,25 @@ typing-extensions = ">=3.7.4.1" all = ["pytz (>=2019.1)"] dates = ["pytz (>=2019.1)"] +[[package]] +name = "entrypoints" +version = "0.4" +description = "Discover and load entry points from installed packages." +category = "dev" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "executing" +version = "1.2.0" +description = "Get the currently executing AST node of a frame, and other information" +category = "dev" +optional = false +python-versions = "*" + +[package.extras] +tests = ["asttokens", "littleutils", "pytest", "rich"] + [[package]] name = "filelock" version = "3.7.0" @@ -312,7 +389,7 @@ six = ">=1.9" webencodings = "*" [package.extras] -all = ["genshi", "chardet (>=2.2)", "lxml"] +all = ["chardet (>=2.2)", "genshi", "lxml"] chardet = ["chardet (>=2.2)"] genshi = ["genshi"] lxml = ["lxml"] @@ -356,9 +433,9 @@ python-versions = ">=3.7" zipp = ">=0.5" [package.extras] -docs = ["sphinx", "jaraco.packaging (>=9)", "rst.linker (>=1.9)"] +docs = ["jaraco.packaging (>=9)", "rst.linker (>=1.9)", "sphinx"] perf = ["ipython"] -testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "packaging", "pyfakefs", "flufl.flake8", "pytest-perf (>=0.9.2)", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)", "importlib-resources (>=1.3)"] +testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)"] [[package]] name = "iniconfig" @@ -385,11 +462,71 @@ tabulate = "*" toml = "*" [package.extras] -dev = ["cairosvg", "sphinx", "sphinx-autobuild", "pytest", "pytest-cov", "pytest-mock", "wheel", "pre-commit"] +dev = ["cairosvg", "pre-commit", "pytest", "pytest-cov", "pytest-mock", "sphinx", "sphinx-autobuild", "wheel"] docs = ["sphinx", "sphinx-autobuild"] png = ["cairosvg"] tests = ["pytest", "pytest-cov", "pytest-mock"] +[[package]] +name = "ipykernel" +version = "6.17.1" +description = "IPython Kernel for Jupyter" +category = "dev" +optional = false +python-versions = ">=3.8" + +[package.dependencies] +appnope = {version = "*", markers = "platform_system == \"Darwin\""} +debugpy = ">=1.0" +ipython = ">=7.23.1" +jupyter-client = ">=6.1.12" +matplotlib-inline = ">=0.1" +nest-asyncio = "*" +packaging = "*" +psutil = "*" +pyzmq = ">=17" +tornado = ">=6.1" +traitlets = ">=5.1.0" + +[package.extras] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinxcontrib-github-alt"] +test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-cov", "pytest-timeout"] + +[[package]] +name = "ipython" +version = "8.6.0" +description = "IPython: Productive Interactive Computing" +category = "dev" +optional = false +python-versions = ">=3.8" + +[package.dependencies] +appnope = {version = "*", markers = "sys_platform == \"darwin\""} +backcall = "*" +colorama = {version = "*", markers = "sys_platform == \"win32\""} +decorator = "*" +jedi = ">=0.16" +matplotlib-inline = "*" +pexpect = {version = ">4.3", markers = "sys_platform != \"win32\""} +pickleshare = "*" +prompt-toolkit = ">3.0.1,<3.1.0" +pygments = ">=2.4.0" +stack-data = "*" +traitlets = ">=5" + +[package.extras] +all = ["black", "curio", "docrepr", "ipykernel", "ipyparallel", "ipywidgets", "matplotlib", "matplotlib (!=3.2.0)", "nbconvert", "nbformat", "notebook", "numpy (>=1.20)", "pandas", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "qtconsole", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "trio", "typing-extensions"] +black = ["black"] +doc = ["docrepr", "ipykernel", "matplotlib", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "typing-extensions"] +kernel = ["ipykernel"] +nbconvert = ["nbconvert"] +nbformat = ["nbformat"] +notebook = ["ipywidgets", "notebook"] +parallel = ["ipyparallel"] +qtconsole = ["qtconsole"] +test = ["pytest (<7.1)", "pytest-asyncio", "testpath"] +test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.20)", "pandas", "pytest (<7.1)", "pytest-asyncio", "testpath", "trio"] + [[package]] name = "isort" version = "5.10.1" @@ -399,10 +536,25 @@ optional = false python-versions = ">=3.6.1,<4.0" [package.extras] -pipfile_deprecated_finder = ["pipreqs", "requirementslib"] -requirements_deprecated_finder = ["pipreqs", "pip-api"] colors = ["colorama (>=0.4.3,<0.5.0)"] +pipfile-deprecated-finder = ["pipreqs", "requirementslib"] plugins = ["setuptools"] +requirements-deprecated-finder = ["pip-api", "pipreqs"] + +[[package]] +name = "jedi" +version = "0.18.1" +description = "An autocompletion tool for Python that can be used for text editors." +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +parso = ">=0.8.0,<0.9.0" + +[package.extras] +qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] +testing = ["Django (<3.1)", "colorama", "docopt", "pytest (<7.0.0)"] [[package]] name = "jinja2" @@ -418,6 +570,43 @@ MarkupSafe = ">=2.0" [package.extras] i18n = ["Babel (>=2.7)"] +[[package]] +name = "jupyter-client" +version = "7.3.4" +description = "Jupyter protocol implementation and client libraries" +category = "dev" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +entrypoints = "*" +jupyter-core = ">=4.9.2" +nest-asyncio = ">=1.5.4" +python-dateutil = ">=2.8.2" +pyzmq = ">=23.0" +tornado = ">=6.0" +traitlets = "*" + +[package.extras] +doc = ["ipykernel", "myst-parser", "sphinx (>=1.3.6)", "sphinx-rtd-theme", "sphinxcontrib-github-alt"] +test = ["codecov", "coverage", "ipykernel (>=6.5)", "ipython", "mypy", "pre-commit", "pytest", "pytest-asyncio (>=0.18)", "pytest-cov", "pytest-timeout"] + +[[package]] +name = "jupyter-core" +version = "5.0.0" +description = "Jupyter core package. A base package on which Jupyter projects rely." +category = "dev" +optional = false +python-versions = ">=3.8" + +[package.dependencies] +platformdirs = "*" +pywin32 = {version = ">=1.0", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""} +traitlets = "*" + +[package.extras] +test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] + [[package]] name = "lazy-object-proxy" version = "1.7.1" @@ -454,6 +643,17 @@ category = "dev" optional = false python-versions = ">=3.7" +[[package]] +name = "matplotlib-inline" +version = "0.1.6" +description = "Inline Matplotlib backend for Jupyter" +category = "dev" +optional = false +python-versions = ">=3.5" + +[package.dependencies] +traitlets = "*" + [[package]] name = "mccabe" version = "0.6.1" @@ -507,6 +707,14 @@ python-versions = ">=3.6" fast = ["fastnumbers (>=2.0.0)"] icu = ["PyICU (>=1.0.0)"] +[[package]] +name = "nest-asyncio" +version = "1.5.6" +description = "Patch asyncio to allow nested event loops" +category = "dev" +optional = false +python-versions = ">=3.5" + [[package]] name = "nodeenv" version = "1.6.0" @@ -515,6 +723,14 @@ category = "dev" optional = false python-versions = "*" +[[package]] +name = "overrides" +version = "7.3.1" +description = "A decorator to automatically detect mismatch when overriding a method." +category = "main" +optional = false +python-versions = ">=3.6" + [[package]] name = "packaging" version = "21.3" @@ -526,6 +742,18 @@ python-versions = ">=3.6" [package.dependencies] pyparsing = ">=2.0.2,<3.0.5 || >3.0.5" +[[package]] +name = "parso" +version = "0.8.3" +description = "A Python Parser" +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.extras] +qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] +testing = ["docopt", "pytest (<6.0.0)"] + [[package]] name = "pathspec" version = "0.9.0" @@ -534,6 +762,25 @@ category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +[[package]] +name = "pexpect" +version = "4.8.0" +description = "Pexpect allows easy control of interactive console applications." +category = "dev" +optional = false +python-versions = "*" + +[package.dependencies] +ptyprocess = ">=0.5" + +[[package]] +name = "pickleshare" +version = "0.7.5" +description = "Tiny 'shelve'-like database with concurrency support" +category = "dev" +optional = false +python-versions = "*" + [[package]] name = "platformdirs" version = "2.5.2" @@ -543,8 +790,8 @@ optional = false python-versions = ">=3.7" [package.extras] -docs = ["furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx-autodoc-typehints (>=1.12)", "sphinx (>=4)"] -test = ["appdirs (==1.4.4)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)", "pytest (>=6)"] +docs = ["furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx (>=4)", "sphinx-autodoc-typehints (>=1.12)"] +test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"] [[package]] name = "pluggy" @@ -574,6 +821,47 @@ pyyaml = ">=5.1" toml = "*" virtualenv = ">=20.0.8" +[[package]] +name = "prompt-toolkit" +version = "3.0.32" +description = "Library for building powerful interactive command lines in Python" +category = "dev" +optional = false +python-versions = ">=3.6.2" + +[package.dependencies] +wcwidth = "*" + +[[package]] +name = "psutil" +version = "5.9.4" +description = "Cross-platform lib for process and system monitoring in Python." +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + +[package.extras] +test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] + +[[package]] +name = "ptyprocess" +version = "0.7.0" +description = "Run a subprocess in a pseudo terminal" +category = "dev" +optional = false +python-versions = "*" + +[[package]] +name = "pure-eval" +version = "0.2.2" +description = "Safely evaluate AST nodes without side effects" +category = "dev" +optional = false +python-versions = "*" + +[package.extras] +tests = ["pytest"] + [[package]] name = "py" version = "1.11.0" @@ -590,6 +878,14 @@ category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +[[package]] +name = "pycparser" +version = "2.21" +description = "C parser in Python" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" + [[package]] name = "pyflakes" version = "2.3.1" @@ -638,7 +934,7 @@ optional = false python-versions = ">=3.6.8" [package.extras] -diagrams = ["railroad-diagrams", "jinja2"] +diagrams = ["jinja2", "railroad-diagrams"] [[package]] name = "pytest" @@ -674,22 +970,18 @@ coverage = {version = ">=5.2.1", extras = ["toml"]} pytest = ">=4.6" [package.extras] -testing = ["fields", "hunter", "process-tests", "six", "pytest-xdist", "virtualenv"] +testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtualenv"] [[package]] -name = "pytest-responses" -version = "0.5.0" -description = "py.test integration for responses" +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" category = "dev" optional = false -python-versions = "*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" [package.dependencies] -pytest = ">=2.5" -responses = "*" - -[package.extras] -tests = ["flake8"] +six = ">=1.5" [[package]] name = "pytz" @@ -699,6 +991,14 @@ category = "dev" optional = false python-versions = "*" +[[package]] +name = "pywin32" +version = "305" +description = "Python for Window Extensions" +category = "dev" +optional = false +python-versions = "*" + [[package]] name = "pyyaml" version = "6.0" @@ -707,6 +1007,18 @@ category = "dev" optional = false python-versions = ">=3.6" +[[package]] +name = "pyzmq" +version = "24.0.1" +description = "Python bindings for 0MQ" +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +cffi = {version = "*", markers = "implementation_name == \"pypy\""} +py = {version = "*", markers = "implementation_name == \"pypy\""} + [[package]] name = "requests" version = "2.27.1" @@ -723,7 +1035,7 @@ urllib3 = ">=1.21.1,<1.27" [package.extras] socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"] -use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<5)"] [[package]] name = "responses" @@ -738,7 +1050,7 @@ requests = ">=2.0,<3.0" urllib3 = ">=1.25.10" [package.extras] -tests = ["pytest (>=7.0.0)", "coverage (>=6.0.0)", "pytest-cov", "pytest-asyncio", "pytest-localserver", "flake8", "types-mock", "types-requests", "mypy"] +tests = ["coverage (>=6.0.0)", "flake8", "mypy", "pytest (>=7.0.0)", "pytest-asyncio", "pytest-cov", "pytest-localserver", "types-mock", "types-requests"] [[package]] name = "ruamel.yaml" @@ -763,6 +1075,19 @@ category = "dev" optional = false python-versions = ">=3.5" +[[package]] +name = "setuptools" +version = "65.5.1" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +category = "dev" +optional = false +python-versions = ">=3.7" + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8 (<5)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + [[package]] name = "six" version = "1.16.0" @@ -816,8 +1141,8 @@ sphinxcontrib-serializinghtml = ">=1.1.5" [package.extras] docs = ["sphinxcontrib-websupport"] -lint = ["flake8 (>=3.5.0)", "isort", "mypy (>=0.931)", "docutils-stubs", "types-typed-ast", "types-requests"] -test = ["pytest", "pytest-cov", "html5lib", "cython", "typed-ast"] +lint = ["docutils-stubs", "flake8 (>=3.5.0)", "isort", "mypy (>=0.931)", "types-requests", "types-typed-ast"] +test = ["cython", "html5lib", "pytest", "pytest-cov", "typed-ast"] [[package]] name = "sphinx-argparse" @@ -862,7 +1187,7 @@ Sphinx = ">=4.5" [package.extras] testing = ["covdefaults (>=2.2)", "coverage (>=6.3)", "diff-cover (>=6.4)", "nptyping (>=2.1.2)", "pytest (>=7.1)", "pytest-cov (>=3)", "sphobjinv (>=2)", "typing-extensions (>=4.1)"] -type_comments = ["typed-ast (>=1.5.2)"] +type-comments = ["typed-ast (>=1.5.2)"] [[package]] name = "sphinx-jinja2-compat" @@ -901,7 +1226,7 @@ docutils = "<0.18" sphinx = ">=1.6" [package.extras] -dev = ["transifex-client", "sphinxcontrib-httpdomain", "bump2version"] +dev = ["bump2version", "sphinxcontrib-httpdomain", "transifex-client"] [[package]] name = "sphinx-tabs" @@ -917,8 +1242,8 @@ pygments = "*" sphinx = ">=2,<5" [package.extras] -code_style = ["pre-commit (==2.13.0)"] -testing = ["coverage", "pytest (>=3.6,<4)", "pytest-cov", "pytest-regressions", "pygments", "sphinx-testing", "bs4", "rinohtype"] +code-style = ["pre-commit (==2.13.0)"] +testing = ["bs4", "coverage", "pygments", "pytest (>=3.6,<4)", "pytest-cov", "pytest-regressions", "rinohtype", "sphinx-testing"] [[package]] name = "sphinx-toolbox" @@ -948,8 +1273,8 @@ tabulate = ">=0.8.7" typing-extensions = ">=3.7.4.3,<3.10.0.1 || >3.10.0.1" [package.extras] -testing = ["coincidence (>=0.4.3)", "pygments (>=2.7.4)"] all = ["coincidence (>=0.4.3)", "pygments (>=2.7.4)"] +testing = ["coincidence (>=0.4.3)", "pygments (>=2.7.4)"] [[package]] name = "sphinxcontrib-applehelp" @@ -960,7 +1285,7 @@ optional = false python-versions = ">=3.5" [package.extras] -lint = ["flake8", "mypy", "docutils-stubs"] +lint = ["docutils-stubs", "flake8", "mypy"] test = ["pytest"] [[package]] @@ -972,7 +1297,7 @@ optional = false python-versions = ">=3.5" [package.extras] -lint = ["flake8", "mypy", "docutils-stubs"] +lint = ["docutils-stubs", "flake8", "mypy"] test = ["pytest"] [[package]] @@ -984,8 +1309,8 @@ optional = false python-versions = ">=3.6" [package.extras] -lint = ["flake8", "mypy", "docutils-stubs"] -test = ["pytest", "html5lib"] +lint = ["docutils-stubs", "flake8", "mypy"] +test = ["html5lib", "pytest"] [[package]] name = "sphinxcontrib-jsmath" @@ -996,7 +1321,7 @@ optional = false python-versions = ">=3.5" [package.extras] -test = ["pytest", "flake8", "mypy"] +test = ["flake8", "mypy", "pytest"] [[package]] name = "sphinxcontrib-qthelp" @@ -1007,7 +1332,7 @@ optional = false python-versions = ">=3.5" [package.extras] -lint = ["flake8", "mypy", "docutils-stubs"] +lint = ["docutils-stubs", "flake8", "mypy"] test = ["pytest"] [[package]] @@ -1019,9 +1344,25 @@ optional = false python-versions = ">=3.5" [package.extras] -lint = ["flake8", "mypy", "docutils-stubs"] +lint = ["docutils-stubs", "flake8", "mypy"] test = ["pytest"] +[[package]] +name = "stack-data" +version = "0.6.1" +description = "Extract data from python stack frames and tracebacks for informative displays" +category = "dev" +optional = false +python-versions = "*" + +[package.dependencies] +asttokens = ">=2.1.0" +executing = ">=1.2.0" +pure-eval = "*" + +[package.extras] +tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"] + [[package]] name = "tabulate" version = "0.8.9" @@ -1065,6 +1406,18 @@ category = "dev" optional = false python-versions = ">= 3.5" +[[package]] +name = "traitlets" +version = "5.5.0" +description = "" +category = "dev" +optional = false +python-versions = ">=3.7" + +[package.extras] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] +test = ["pre-commit", "pytest"] + [[package]] name = "types-requests" version = "2.27.27" @@ -1101,8 +1454,8 @@ optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" [package.extras] -brotli = ["brotlicffi (>=0.8.0)", "brotli (>=1.0.9)", "brotlipy (>=0.6.0)"] -secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)"] socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] [[package]] @@ -1121,7 +1474,15 @@ six = ">=1.9.0,<2" [package.extras] docs = ["proselint (>=0.10.2)", "sphinx (>=3)", "sphinx-argparse (>=0.2.5)", "sphinx-rtd-theme (>=0.4.3)", "towncrier (>=21.3)"] -testing = ["coverage (>=4)", "coverage-enable-subprocess (>=1)", "flaky (>=3)", "pytest (>=4)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.1)", "pytest-mock (>=2)", "pytest-randomly (>=1)", "pytest-timeout (>=1)", "packaging (>=20.0)"] +testing = ["coverage (>=4)", "coverage-enable-subprocess (>=1)", "flaky (>=3)", "packaging (>=20.0)", "pytest (>=4)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.1)", "pytest-mock (>=2)", "pytest-randomly (>=1)", "pytest-timeout (>=1)"] + +[[package]] +name = "wcwidth" +version = "0.2.5" +description = "Measures the displayed width of unicode strings in a terminal" +category = "dev" +optional = false +python-versions = "*" [[package]] name = "webencodings" @@ -1148,13 +1509,13 @@ optional = false python-versions = ">=3.7" [package.extras] -docs = ["sphinx", "jaraco.packaging (>=9)", "rst.linker (>=1.9)"] -testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "jaraco.itertools", "func-timeout", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)"] +docs = ["jaraco.packaging (>=9)", "rst.linker (>=1.9)", "sphinx"] +testing = ["func-timeout", "jaraco.itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] [metadata] lock-version = "1.1" python-versions = "^3.9" -content-hash = "609d695ada24ee40737304508de49c951d34a91456dadc7697cffce2d4f5e01b" +content-hash = "30b83b99cbf90f83ff068d306acfdc7572978da2ba84e2fc1b932dc7283ebc5e" [metadata.files] alabaster = [ @@ -1165,10 +1526,18 @@ apeye = [ {file = "apeye-1.2.0-py3-none-any.whl", hash = "sha256:d6b08c96457e4e0457088c247417fc336ebf83ab88645c508562aaeaf3077954"}, {file = "apeye-1.2.0.tar.gz", hash = "sha256:0bb0f5b037730f149d3ab3697bc30ccccd60407cf16218d8ffa8f78462239e1e"}, ] +appnope = [ + {file = "appnope-0.1.3-py2.py3-none-any.whl", hash = "sha256:265a455292d0bd8a72453494fa24df5a11eb18373a60c7c0430889f22548605e"}, + {file = "appnope-0.1.3.tar.gz", hash = "sha256:02bd91c4de869fbb1e1c50aafc4098827a7a54ab2f39d9dcba6c9547ed920e24"}, +] astroid = [ {file = "astroid-2.11.6-py3-none-any.whl", hash = "sha256:ba33a82a9a9c06a5ceed98180c5aab16e29c285b828d94696bf32d6015ea82a9"}, {file = "astroid-2.11.6.tar.gz", hash = "sha256:4f933d0bf5e408b03a6feb5d23793740c27e07340605f236496cd6ce552043d6"}, ] +asttokens = [ + {file = "asttokens-2.1.0-py2.py3-none-any.whl", hash = "sha256:1b28ed85e254b724439afc783d4bee767f780b936c3fe8b3275332f42cf5f561"}, + {file = "asttokens-2.1.0.tar.gz", hash = "sha256:4aa76401a151c8cc572d906aad7aea2a841780834a19d780f4321c0fe1b54635"}, +] atomicwrites = [ {file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"}, {file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"}, @@ -1181,11 +1550,18 @@ autodocsumm = [ {file = "autodocsumm-0.2.8-py3-none-any.whl", hash = "sha256:08f0401bb2c6f2bc92848ebd200c53a3966d1d23658e7d70c52f12b088941f79"}, {file = "autodocsumm-0.2.8.tar.gz", hash = "sha256:e67ebf6bb50a627d43f2ea3fcedfe31744eb7bfecd690e748a393248511ac6c5"}, ] -autoflake = [] +autoflake = [ + {file = "autoflake-1.6.1-py2.py3-none-any.whl", hash = "sha256:dfef4c851fb07e6111f9115d3e7c8c52d8564cbf71c12ade2d8b8a2a7b8bd176"}, + {file = "autoflake-1.6.1.tar.gz", hash = "sha256:72bce741144ef6db26005d47dba242c1fd6a91ea53f7f4c5a90ad4b051e394c2"}, +] babel = [ {file = "Babel-2.10.1-py3-none-any.whl", hash = "sha256:3f349e85ad3154559ac4930c3918247d319f21910d5ce4b25d439ed8693b98d2"}, {file = "Babel-2.10.1.tar.gz", hash = "sha256:98aeaca086133efb3e1e2aad0396987490c8425929ddbcfe0550184fdc54cd13"}, ] +backcall = [ + {file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"}, + {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"}, +] beautifulsoup4 = [ {file = "beautifulsoup4-4.11.1-py3-none-any.whl", hash = "sha256:58d5c3d29f5a36ffeb94f02f0d786cd53014cf9b3b3951d42e0080d8a9498d30"}, {file = "beautifulsoup4-4.11.1.tar.gz", hash = "sha256:ad9aa55b65ef2808eb405f46cf74df7fcb7044d5cbc26487f96eb2ef2e436693"}, @@ -1223,6 +1599,72 @@ certifi = [ {file = "certifi-2022.5.18.1-py3-none-any.whl", hash = "sha256:f1d53542ee8cbedbe2118b5686372fb33c297fcd6379b050cca0ef13a597382a"}, {file = "certifi-2022.5.18.1.tar.gz", hash = "sha256:9c5705e395cd70084351dd8ad5c41e65655e08ce46f2ec9cf6c2c08390f71eb7"}, ] +cffi = [ + {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, + {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, + {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, + {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, + {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, + {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, + {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, + {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, + {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, + {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, + {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, + {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, + {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, + {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, + {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, + {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, + {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, + {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, + {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, +] cfgv = [ {file = "cfgv-3.3.1-py2.py3-none-any.whl", hash = "sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426"}, {file = "cfgv-3.3.1.tar.gz", hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736"}, @@ -1239,11 +1681,86 @@ colorama = [ {file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"}, {file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"}, ] -coverage = [] +coverage = [ + {file = "coverage-6.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ef8674b0ee8cc11e2d574e3e2998aea5df5ab242e012286824ea3c6970580e53"}, + {file = "coverage-6.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:784f53ebc9f3fd0e2a3f6a78b2be1bd1f5575d7863e10c6e12504f240fd06660"}, + {file = "coverage-6.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4a5be1748d538a710f87542f22c2cad22f80545a847ad91ce45e77417293eb4"}, + {file = "coverage-6.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:83516205e254a0cb77d2d7bb3632ee019d93d9f4005de31dca0a8c3667d5bc04"}, + {file = "coverage-6.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af4fffaffc4067232253715065e30c5a7ec6faac36f8fc8d6f64263b15f74db0"}, + {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:97117225cdd992a9c2a5515db1f66b59db634f59d0679ca1fa3fe8da32749cae"}, + {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:a1170fa54185845505fbfa672f1c1ab175446c887cce8212c44149581cf2d466"}, + {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:11b990d520ea75e7ee8dcab5bc908072aaada194a794db9f6d7d5cfd19661e5a"}, + {file = "coverage-6.5.0-cp310-cp310-win32.whl", hash = "sha256:5dbec3b9095749390c09ab7c89d314727f18800060d8d24e87f01fb9cfb40b32"}, + {file = "coverage-6.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:59f53f1dc5b656cafb1badd0feb428c1e7bc19b867479ff72f7a9dd9b479f10e"}, + {file = "coverage-6.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4a5375e28c5191ac38cca59b38edd33ef4cc914732c916f2929029b4bfb50795"}, + {file = "coverage-6.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4ed2820d919351f4167e52425e096af41bfabacb1857186c1ea32ff9983ed75"}, + {file = "coverage-6.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:33a7da4376d5977fbf0a8ed91c4dffaaa8dbf0ddbf4c8eea500a2486d8bc4d7b"}, + {file = "coverage-6.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8fb6cf131ac4070c9c5a3e21de0f7dc5a0fbe8bc77c9456ced896c12fcdad91"}, + {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a6b7d95969b8845250586f269e81e5dfdd8ff828ddeb8567a4a2eaa7313460c4"}, + {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1ef221513e6f68b69ee9e159506d583d31aa3567e0ae84eaad9d6ec1107dddaa"}, + {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cca4435eebea7962a52bdb216dec27215d0df64cf27fc1dd538415f5d2b9da6b"}, + {file = "coverage-6.5.0-cp311-cp311-win32.whl", hash = "sha256:98e8a10b7a314f454d9eff4216a9a94d143a7ee65018dd12442e898ee2310578"}, + {file = "coverage-6.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:bc8ef5e043a2af066fa8cbfc6e708d58017024dc4345a1f9757b329a249f041b"}, + {file = "coverage-6.5.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4433b90fae13f86fafff0b326453dd42fc9a639a0d9e4eec4d366436d1a41b6d"}, + {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4f05d88d9a80ad3cac6244d36dd89a3c00abc16371769f1340101d3cb899fc3"}, + {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:94e2565443291bd778421856bc975d351738963071e9b8839ca1fc08b42d4bef"}, + {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:027018943386e7b942fa832372ebc120155fd970837489896099f5cfa2890f79"}, + {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:255758a1e3b61db372ec2736c8e2a1fdfaf563977eedbdf131de003ca5779b7d"}, + {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:851cf4ff24062c6aec510a454b2584f6e998cada52d4cb58c5e233d07172e50c"}, + {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:12adf310e4aafddc58afdb04d686795f33f4d7a6fa67a7a9d4ce7d6ae24d949f"}, + {file = "coverage-6.5.0-cp37-cp37m-win32.whl", hash = "sha256:b5604380f3415ba69de87a289a2b56687faa4fe04dbee0754bfcae433489316b"}, + {file = "coverage-6.5.0-cp37-cp37m-win_amd64.whl", hash = "sha256:4a8dbc1f0fbb2ae3de73eb0bdbb914180c7abfbf258e90b311dcd4f585d44bd2"}, + {file = "coverage-6.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d900bb429fdfd7f511f868cedd03a6bbb142f3f9118c09b99ef8dc9bf9643c3c"}, + {file = "coverage-6.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2198ea6fc548de52adc826f62cb18554caedfb1d26548c1b7c88d8f7faa8f6ba"}, + {file = "coverage-6.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c4459b3de97b75e3bd6b7d4b7f0db13f17f504f3d13e2a7c623786289dd670e"}, + {file = "coverage-6.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:20c8ac5386253717e5ccc827caad43ed66fea0efe255727b1053a8154d952398"}, + {file = "coverage-6.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b07130585d54fe8dff3d97b93b0e20290de974dc8177c320aeaf23459219c0b"}, + {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:dbdb91cd8c048c2b09eb17713b0c12a54fbd587d79adcebad543bc0cd9a3410b"}, + {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:de3001a203182842a4630e7b8d1a2c7c07ec1b45d3084a83d5d227a3806f530f"}, + {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:e07f4a4a9b41583d6eabec04f8b68076ab3cd44c20bd29332c6572dda36f372e"}, + {file = "coverage-6.5.0-cp38-cp38-win32.whl", hash = "sha256:6d4817234349a80dbf03640cec6109cd90cba068330703fa65ddf56b60223a6d"}, + {file = "coverage-6.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:7ccf362abd726b0410bf8911c31fbf97f09f8f1061f8c1cf03dfc4b6372848f6"}, + {file = "coverage-6.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:633713d70ad6bfc49b34ead4060531658dc6dfc9b3eb7d8a716d5873377ab745"}, + {file = "coverage-6.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:95203854f974e07af96358c0b261f1048d8e1083f2de9b1c565e1be4a3a48cfc"}, + {file = "coverage-6.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9023e237f4c02ff739581ef35969c3739445fb059b060ca51771e69101efffe"}, + {file = "coverage-6.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:265de0fa6778d07de30bcf4d9dc471c3dc4314a23a3c6603d356a3c9abc2dfcf"}, + {file = "coverage-6.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f830ed581b45b82451a40faabb89c84e1a998124ee4212d440e9c6cf70083e5"}, + {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7b6be138d61e458e18d8e6ddcddd36dd96215edfe5f1168de0b1b32635839b62"}, + {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:42eafe6778551cf006a7c43153af1211c3aaab658d4d66fa5fcc021613d02518"}, + {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:723e8130d4ecc8f56e9a611e73b31219595baa3bb252d539206f7bbbab6ffc1f"}, + {file = "coverage-6.5.0-cp39-cp39-win32.whl", hash = "sha256:d9ecf0829c6a62b9b573c7bb6d4dcd6ba8b6f80be9ba4fc7ed50bf4ac9aecd72"}, + {file = "coverage-6.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:fc2af30ed0d5ae0b1abdb4ebdce598eafd5b35397d4d75deb341a614d333d987"}, + {file = "coverage-6.5.0-pp36.pp37.pp38-none-any.whl", hash = "sha256:1431986dac3923c5945271f169f59c45b8802a114c8f548d611f2015133df77a"}, + {file = "coverage-6.5.0.tar.gz", hash = "sha256:f642e90754ee3e06b0e7e51bce3379590e76b7f76b708e1a71ff043f87025c84"}, +] cssutils = [ {file = "cssutils-2.4.2-py3-none-any.whl", hash = "sha256:17e5ba0de70a672cd1cd2de47fd756bd6bce12585acd91447bde7be1d7a6c5c2"}, {file = "cssutils-2.4.2.tar.gz", hash = "sha256:877818bfa9668cc535773f46e6b6a46de28436191211741b3f7b4aaa64d9afbb"}, ] +debugpy = [ + {file = "debugpy-1.6.3-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:c4b2bd5c245eeb49824bf7e539f95fb17f9a756186e51c3e513e32999d8846f3"}, + {file = "debugpy-1.6.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b8deaeb779699350deeed835322730a3efec170b88927debc9ba07a1a38e2585"}, + {file = "debugpy-1.6.3-cp310-cp310-win32.whl", hash = "sha256:fc233a0160f3b117b20216f1169e7211b83235e3cd6749bcdd8dbb72177030c7"}, + {file = "debugpy-1.6.3-cp310-cp310-win_amd64.whl", hash = "sha256:dda8652520eae3945833e061cbe2993ad94a0b545aebd62e4e6b80ee616c76b2"}, + {file = "debugpy-1.6.3-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:d5c814596a170a0a58fa6fad74947e30bfd7e192a5d2d7bd6a12156c2899e13a"}, + {file = "debugpy-1.6.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c4cd6f37e3c168080d61d698390dfe2cd9e74ebf80b448069822a15dadcda57d"}, + {file = "debugpy-1.6.3-cp37-cp37m-win32.whl", hash = "sha256:3c9f985944a30cfc9ae4306ac6a27b9c31dba72ca943214dad4a0ab3840f6161"}, + {file = "debugpy-1.6.3-cp37-cp37m-win_amd64.whl", hash = "sha256:5ad571a36cec137ae6ed951d0ff75b5e092e9af6683da084753231150cbc5b25"}, + {file = "debugpy-1.6.3-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:adcfea5ea06d55d505375995e150c06445e2b20cd12885bcae566148c076636b"}, + {file = "debugpy-1.6.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:daadab4403427abd090eccb38d8901afd8b393e01fd243048fab3f1d7132abb4"}, + {file = "debugpy-1.6.3-cp38-cp38-win32.whl", hash = "sha256:6efc30325b68e451118b795eff6fe8488253ca3958251d5158106d9c87581bc6"}, + {file = "debugpy-1.6.3-cp38-cp38-win_amd64.whl", hash = "sha256:86d784b72c5411c833af1cd45b83d80c252b77c3bfdb43db17c441d772f4c734"}, + {file = "debugpy-1.6.3-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:4e255982552b0edfe3a6264438dbd62d404baa6556a81a88f9420d3ed79b06ae"}, + {file = "debugpy-1.6.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cca23cb6161ac89698d629d892520327dd1be9321c0960e610bbcb807232b45d"}, + {file = "debugpy-1.6.3-cp39-cp39-win32.whl", hash = "sha256:7c302095a81be0d5c19f6529b600bac971440db3e226dce85347cc27e6a61908"}, + {file = "debugpy-1.6.3-cp39-cp39-win_amd64.whl", hash = "sha256:34d2cdd3a7c87302ba5322b86e79c32c2115be396f3f09ca13306d8a04fe0f16"}, + {file = "debugpy-1.6.3-py2.py3-none-any.whl", hash = "sha256:84c39940a0cac410bf6aa4db00ba174f973eef521fbe9dd058e26bcabad89c4f"}, + {file = "debugpy-1.6.3.zip", hash = "sha256:e8922090514a890eec99cfb991bab872dd2e353ebb793164d5f01c362b9a40bf"}, +] +decorator = [ + {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"}, + {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"}, +] dict2css = [ {file = "dict2css-0.3.0-py3-none-any.whl", hash = "sha256:ef934ce73a225fdd5f811b484fe9e2dd768f7ef14a89fc8f4eb5672597131d00"}, {file = "dict2css-0.3.0.tar.gz", hash = "sha256:1e8b1bf580dca2083198f88a60ec88c878a8829d760dfe45483ef80fe2905117"}, @@ -1264,6 +1781,14 @@ domdf-python-tools = [ {file = "domdf_python_tools-3.3.0-py3-none-any.whl", hash = "sha256:692a33cfc4bc4270a30f18b95beb8f65bf56935d122a4bdb0af7f7760452d41c"}, {file = "domdf_python_tools-3.3.0.tar.gz", hash = "sha256:7c588cdfa3e8bfd9617efbb4fa42652b7010c0f158c81844c862fbda5d86d9cc"}, ] +entrypoints = [ + {file = "entrypoints-0.4-py3-none-any.whl", hash = "sha256:f174b5ff827504fd3cd97cc3f8649f3693f51538c7e4bdf3ef002c8429d42f9f"}, + {file = "entrypoints-0.4.tar.gz", hash = "sha256:b706eddaa9218a19ebcd67b56818f05bb27589b1ca9e8d797b74affad4ccacd4"}, +] +executing = [ + {file = "executing-1.2.0-py2.py3-none-any.whl", hash = "sha256:0314a69e37426e3608aada02473b4161d4caf5a4b244d1d0c48072b8fee7bacc"}, + {file = "executing-1.2.0.tar.gz", hash = "sha256:19da64c18d2d851112f09c287f8d3dbbdf725ab0e569077efb6cdcbd3497c107"}, +] filelock = [ {file = "filelock-3.7.0-py3-none-any.whl", hash = "sha256:c7b5fdb219b398a5b28c8e4c1893ef5f98ece6a38c6ab2c22e26ec161556fed6"}, {file = "filelock-3.7.0.tar.gz", hash = "sha256:b795f1b42a61bbf8ec7113c341dad679d772567b936fbd1bf43c9a238e673e20"}, @@ -1300,14 +1825,34 @@ interrogate = [ {file = "interrogate-1.5.0-py3-none-any.whl", hash = "sha256:a4ccc5cbd727c74acc98dee6f5e79ef264c0bcfa66b68d4e123069b2af89091a"}, {file = "interrogate-1.5.0.tar.gz", hash = "sha256:b6f325f0aa84ac3ac6779d8708264d366102226c5af7d69058cecffcff7a6d6c"}, ] +ipykernel = [ + {file = "ipykernel-6.17.1-py3-none-any.whl", hash = "sha256:3a9a1b2ad6dbbd5879855aabb4557f08e63fa2208bffed897f03070e2bb436f6"}, + {file = "ipykernel-6.17.1.tar.gz", hash = "sha256:e178c1788399f93a459c241fe07c3b810771c607b1fb064a99d2c5d40c90c5d4"}, +] +ipython = [ + {file = "ipython-8.6.0-py3-none-any.whl", hash = "sha256:91ef03016bcf72dd17190f863476e7c799c6126ec7e8be97719d1bc9a78a59a4"}, + {file = "ipython-8.6.0.tar.gz", hash = "sha256:7c959e3dedbf7ed81f9b9d8833df252c430610e2a4a6464ec13cd20975ce20a5"}, +] isort = [ {file = "isort-5.10.1-py3-none-any.whl", hash = "sha256:6f62d78e2f89b4500b080fe3a81690850cd254227f27f75c3a0c491a1f351ba7"}, {file = "isort-5.10.1.tar.gz", hash = "sha256:e8443a5e7a020e9d7f97f1d7d9cd17c88bcb3bc7e218bf9cf5095fe550be2951"}, ] +jedi = [ + {file = "jedi-0.18.1-py2.py3-none-any.whl", hash = "sha256:637c9635fcf47945ceb91cd7f320234a7be540ded6f3e99a50cb6febdfd1ba8d"}, + {file = "jedi-0.18.1.tar.gz", hash = "sha256:74137626a64a99c8eb6ae5832d99b3bdd7d29a3850fe2aa80a4126b2a7d949ab"}, +] jinja2 = [ {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, ] +jupyter-client = [ + {file = "jupyter_client-7.3.4-py3-none-any.whl", hash = "sha256:17d74b0d0a7b24f1c8c527b24fcf4607c56bee542ffe8e3418e50b21e514b621"}, + {file = "jupyter_client-7.3.4.tar.gz", hash = "sha256:aa9a6c32054b290374f95f73bb0cae91455c58dfb84f65c8591912b8f65e6d56"}, +] +jupyter-core = [ + {file = "jupyter_core-5.0.0-py3-none-any.whl", hash = "sha256:6da1fae48190da8551e1b5dbbb19d51d00b079d59a073c7030407ecaf96dbb1e"}, + {file = "jupyter_core-5.0.0.tar.gz", hash = "sha256:4ed68b7c606197c7e344a24b7195eef57898157075a69655a886074b6beb7043"}, +] lazy-object-proxy = [ {file = "lazy-object-proxy-1.7.1.tar.gz", hash = "sha256:d609c75b986def706743cdebe5e47553f4a5a1da9c5ff66d76013ef396b5a8a4"}, {file = "lazy_object_proxy-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bb8c5fd1684d60a9902c60ebe276da1f2281a318ca16c1d0a96db28f62e9166b"}, @@ -1348,6 +1893,7 @@ lazy-object-proxy = [ {file = "lazy_object_proxy-1.7.1-pp37.pp38-none-any.whl", hash = "sha256:d66906d5785da8e0be7360912e99c9188b70f52c422f9fc18223347235691a84"}, ] livereload = [ + {file = "livereload-2.6.3-py2.py3-none-any.whl", hash = "sha256:ad4ac6f53b2d62bb6ce1a5e6e96f1f00976a32348afedcb4b6d68df2a1d346e4"}, {file = "livereload-2.6.3.tar.gz", hash = "sha256:776f2f865e59fde56490a56bcc6773b6917366bce0c267c60ee8aaf1a0959869"}, ] lockfile = [ @@ -1396,6 +1942,10 @@ markupsafe = [ {file = "MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247"}, {file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"}, ] +matplotlib-inline = [ + {file = "matplotlib-inline-0.1.6.tar.gz", hash = "sha256:f887e5f10ba98e8d2b150ddcf4702c1e5f8b3a20005eb0f74bfdbd360ee6f304"}, + {file = "matplotlib_inline-0.1.6-py3-none-any.whl", hash = "sha256:f1f41aab5328aa5aaea9b16d083b128102f8712542f819fe7e6a420ff581b311"}, +] mccabe = [ {file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"}, {file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"}, @@ -1487,18 +2037,38 @@ natsort = [ {file = "natsort-8.1.0-py3-none-any.whl", hash = "sha256:f59988d2f24e77b6b56f8a8f882d5df6b3b637e09e075abc67b486d59fba1a4b"}, {file = "natsort-8.1.0.tar.gz", hash = "sha256:c7c1f3f27c375719a4dfcab353909fe39f26c2032a062a8c80cc844eaaca0445"}, ] +nest-asyncio = [ + {file = "nest_asyncio-1.5.6-py3-none-any.whl", hash = "sha256:b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8"}, + {file = "nest_asyncio-1.5.6.tar.gz", hash = "sha256:d267cc1ff794403f7df692964d1d2a3fa9418ffea2a3f6859a439ff482fef290"}, +] nodeenv = [ {file = "nodeenv-1.6.0-py2.py3-none-any.whl", hash = "sha256:621e6b7076565ddcacd2db0294c0381e01fd28945ab36bcf00f41c5daf63bef7"}, {file = "nodeenv-1.6.0.tar.gz", hash = "sha256:3ef13ff90291ba2a4a7a4ff9a979b63ffdd00a464dbe04acf0ea6471517a4c2b"}, ] +overrides = [ + {file = "overrides-7.3.1-py3-none-any.whl", hash = "sha256:6187d8710a935d09b0bcef8238301d6ee2569d2ac1ae0ec39a8c7924e27f58ca"}, + {file = "overrides-7.3.1.tar.gz", hash = "sha256:8b97c6c1e1681b78cbc9424b138d880f0803c2254c5ebaabdde57bb6c62093f2"}, +] packaging = [ {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"}, {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"}, ] +parso = [ + {file = "parso-0.8.3-py2.py3-none-any.whl", hash = "sha256:c001d4636cd3aecdaf33cbb40aebb59b094be2a74c556778ef5576c175e19e75"}, + {file = "parso-0.8.3.tar.gz", hash = "sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0"}, +] pathspec = [ {file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"}, {file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"}, ] +pexpect = [ + {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"}, + {file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"}, +] +pickleshare = [ + {file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"}, + {file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"}, +] platformdirs = [ {file = "platformdirs-2.5.2-py3-none-any.whl", hash = "sha256:027d8e83a2d7de06bbac4e5ef7e023c02b863d7ea5d079477e722bb41ab25788"}, {file = "platformdirs-2.5.2.tar.gz", hash = "sha256:58c8abb07dcb441e6ee4b11d8df0ac856038f944ab98b7be6b27b2a3c7feef19"}, @@ -1511,6 +2081,34 @@ pre-commit = [ {file = "pre_commit-2.19.0-py2.py3-none-any.whl", hash = "sha256:10c62741aa5704faea2ad69cb550ca78082efe5697d6f04e5710c3c229afdd10"}, {file = "pre_commit-2.19.0.tar.gz", hash = "sha256:4233a1e38621c87d9dda9808c6606d7e7ba0e087cd56d3fe03202a01d2919615"}, ] +prompt-toolkit = [ + {file = "prompt_toolkit-3.0.32-py3-none-any.whl", hash = "sha256:24becda58d49ceac4dc26232eb179ef2b21f133fecda7eed6018d341766ed76e"}, + {file = "prompt_toolkit-3.0.32.tar.gz", hash = "sha256:e7f2129cba4ff3b3656bbdda0e74ee00d2f874a8bcdb9dd16f5fec7b3e173cae"}, +] +psutil = [ + {file = "psutil-5.9.4-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c1ca331af862803a42677c120aff8a814a804e09832f166f226bfd22b56feee8"}, + {file = "psutil-5.9.4-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:68908971daf802203f3d37e78d3f8831b6d1014864d7a85937941bb35f09aefe"}, + {file = "psutil-5.9.4-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:3ff89f9b835100a825b14c2808a106b6fdcc4b15483141482a12c725e7f78549"}, + {file = "psutil-5.9.4-cp27-cp27m-win32.whl", hash = "sha256:852dd5d9f8a47169fe62fd4a971aa07859476c2ba22c2254d4a1baa4e10b95ad"}, + {file = "psutil-5.9.4-cp27-cp27m-win_amd64.whl", hash = "sha256:9120cd39dca5c5e1c54b59a41d205023d436799b1c8c4d3ff71af18535728e94"}, + {file = "psutil-5.9.4-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:6b92c532979bafc2df23ddc785ed116fced1f492ad90a6830cf24f4d1ea27d24"}, + {file = "psutil-5.9.4-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:efeae04f9516907be44904cc7ce08defb6b665128992a56957abc9b61dca94b7"}, + {file = "psutil-5.9.4-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:54d5b184728298f2ca8567bf83c422b706200bcbbfafdc06718264f9393cfeb7"}, + {file = "psutil-5.9.4-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:16653106f3b59386ffe10e0bad3bb6299e169d5327d3f187614b1cb8f24cf2e1"}, + {file = "psutil-5.9.4-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:54c0d3d8e0078b7666984e11b12b88af2db11d11249a8ac8920dd5ef68a66e08"}, + {file = "psutil-5.9.4-cp36-abi3-win32.whl", hash = "sha256:149555f59a69b33f056ba1c4eb22bb7bf24332ce631c44a319cec09f876aaeff"}, + {file = "psutil-5.9.4-cp36-abi3-win_amd64.whl", hash = "sha256:fd8522436a6ada7b4aad6638662966de0d61d241cb821239b2ae7013d41a43d4"}, + {file = "psutil-5.9.4-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:6001c809253a29599bc0dfd5179d9f8a5779f9dffea1da0f13c53ee568115e1e"}, + {file = "psutil-5.9.4.tar.gz", hash = "sha256:3d7f9739eb435d4b1338944abe23f49584bde5395f27487d2ee25ad9a8774a62"}, +] +ptyprocess = [ + {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}, + {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"}, +] +pure-eval = [ + {file = "pure_eval-0.2.2-py3-none-any.whl", hash = "sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350"}, + {file = "pure_eval-0.2.2.tar.gz", hash = "sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3"}, +] py = [ {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, @@ -1519,6 +2117,10 @@ pycodestyle = [ {file = "pycodestyle-2.7.0-py2.py3-none-any.whl", hash = "sha256:514f76d918fcc0b55c6680472f0a37970994e07bbb80725808c17089be302068"}, {file = "pycodestyle-2.7.0.tar.gz", hash = "sha256:c389c1d06bf7904078ca03399a4816f974a1d590090fecea0c63ec26ebaf1cef"}, ] +pycparser = [ + {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, + {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, +] pyflakes = [ {file = "pyflakes-2.3.1-py2.py3-none-any.whl", hash = "sha256:7893783d01b8a89811dd72d7dfd4d84ff098e5eed95cfa8905b22bbffe52efc3"}, {file = "pyflakes-2.3.1.tar.gz", hash = "sha256:f5bc8ecabc05bb9d291eb5203d6810b49040f6ff446a756326104746cc00c1db"}, @@ -1543,13 +2145,30 @@ pytest-cov = [ {file = "pytest-cov-3.0.0.tar.gz", hash = "sha256:e7f0f5b1617d2210a2cabc266dfe2f4c75a8d32fb89eafb7ad9d06f6d076d470"}, {file = "pytest_cov-3.0.0-py3-none-any.whl", hash = "sha256:578d5d15ac4a25e5f961c938b85a05b09fdaae9deef3bb6de9a6e766622ca7a6"}, ] -pytest-responses = [ - {file = "pytest_responses-0.5.0-py2.py3-none-any.whl", hash = "sha256:6fffd7412294c8a01ccfec05ae51910db76aeb0df877c5fac16c64991cb465e6"}, +python-dateutil = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, ] pytz = [ {file = "pytz-2022.1-py2.py3-none-any.whl", hash = "sha256:e68985985296d9a66a881eb3193b0906246245294a881e7c8afe623866ac6a5c"}, {file = "pytz-2022.1.tar.gz", hash = "sha256:1e760e2fe6a8163bc0b3d9a19c4f84342afa0a2affebfaa84b01b978a02ecaa7"}, ] +pywin32 = [ + {file = "pywin32-305-cp310-cp310-win32.whl", hash = "sha256:421f6cd86e84bbb696d54563c48014b12a23ef95a14e0bdba526be756d89f116"}, + {file = "pywin32-305-cp310-cp310-win_amd64.whl", hash = "sha256:73e819c6bed89f44ff1d690498c0a811948f73777e5f97c494c152b850fad478"}, + {file = "pywin32-305-cp310-cp310-win_arm64.whl", hash = "sha256:742eb905ce2187133a29365b428e6c3b9001d79accdc30aa8969afba1d8470f4"}, + {file = "pywin32-305-cp311-cp311-win32.whl", hash = "sha256:19ca459cd2e66c0e2cc9a09d589f71d827f26d47fe4a9d09175f6aa0256b51c2"}, + {file = "pywin32-305-cp311-cp311-win_amd64.whl", hash = "sha256:326f42ab4cfff56e77e3e595aeaf6c216712bbdd91e464d167c6434b28d65990"}, + {file = "pywin32-305-cp311-cp311-win_arm64.whl", hash = "sha256:4ecd404b2c6eceaca52f8b2e3e91b2187850a1ad3f8b746d0796a98b4cea04db"}, + {file = "pywin32-305-cp36-cp36m-win32.whl", hash = "sha256:48d8b1659284f3c17b68587af047d110d8c44837736b8932c034091683e05863"}, + {file = "pywin32-305-cp36-cp36m-win_amd64.whl", hash = "sha256:13362cc5aa93c2beaf489c9c9017c793722aeb56d3e5166dadd5ef82da021fe1"}, + {file = "pywin32-305-cp37-cp37m-win32.whl", hash = "sha256:a55db448124d1c1484df22fa8bbcbc45c64da5e6eae74ab095b9ea62e6d00496"}, + {file = "pywin32-305-cp37-cp37m-win_amd64.whl", hash = "sha256:109f98980bfb27e78f4df8a51a8198e10b0f347257d1e265bb1a32993d0c973d"}, + {file = "pywin32-305-cp38-cp38-win32.whl", hash = "sha256:9dd98384da775afa009bc04863426cb30596fd78c6f8e4e2e5bbf4edf8029504"}, + {file = "pywin32-305-cp38-cp38-win_amd64.whl", hash = "sha256:56d7a9c6e1a6835f521788f53b5af7912090674bb84ef5611663ee1595860fc7"}, + {file = "pywin32-305-cp39-cp39-win32.whl", hash = "sha256:9d968c677ac4d5cbdaa62fd3014ab241718e619d8e36ef8e11fb930515a1e918"}, + {file = "pywin32-305-cp39-cp39-win_amd64.whl", hash = "sha256:50768c6b7c3f0b38b7fb14dd4104da93ebced5f1a50dc0e834594bff6fbe1271"}, +] pyyaml = [ {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, @@ -1558,6 +2177,13 @@ pyyaml = [ {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, @@ -1585,6 +2211,82 @@ pyyaml = [ {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, ] +pyzmq = [ + {file = "pyzmq-24.0.1-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:28b119ba97129d3001673a697b7cce47fe6de1f7255d104c2f01108a5179a066"}, + {file = "pyzmq-24.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bcbebd369493d68162cddb74a9c1fcebd139dfbb7ddb23d8f8e43e6c87bac3a6"}, + {file = "pyzmq-24.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ae61446166983c663cee42c852ed63899e43e484abf080089f771df4b9d272ef"}, + {file = "pyzmq-24.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:87f7ac99b15270db8d53f28c3c7b968612993a90a5cf359da354efe96f5372b4"}, + {file = "pyzmq-24.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9dca7c3956b03b7663fac4d150f5e6d4f6f38b2462c1e9afd83bcf7019f17913"}, + {file = "pyzmq-24.0.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:8c78bfe20d4c890cb5580a3b9290f700c570e167d4cdcc55feec07030297a5e3"}, + {file = "pyzmq-24.0.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:48f721f070726cd2a6e44f3c33f8ee4b24188e4b816e6dd8ba542c8c3bb5b246"}, + {file = "pyzmq-24.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:afe1f3bc486d0ce40abb0a0c9adb39aed3bbac36ebdc596487b0cceba55c21c1"}, + {file = "pyzmq-24.0.1-cp310-cp310-win32.whl", hash = "sha256:3e6192dbcefaaa52ed81be88525a54a445f4b4fe2fffcae7fe40ebb58bd06bfd"}, + {file = "pyzmq-24.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:86de64468cad9c6d269f32a6390e210ca5ada568c7a55de8e681ca3b897bb340"}, + {file = "pyzmq-24.0.1-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:838812c65ed5f7c2bd11f7b098d2e5d01685a3f6d1f82849423b570bae698c00"}, + {file = "pyzmq-24.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dfb992dbcd88d8254471760879d48fb20836d91baa90f181c957122f9592b3dc"}, + {file = "pyzmq-24.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7abddb2bd5489d30ffeb4b93a428130886c171b4d355ccd226e83254fcb6b9ef"}, + {file = "pyzmq-24.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:94010bd61bc168c103a5b3b0f56ed3b616688192db7cd5b1d626e49f28ff51b3"}, + {file = "pyzmq-24.0.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:8242543c522d84d033fe79be04cb559b80d7eb98ad81b137ff7e0a9020f00ace"}, + {file = "pyzmq-24.0.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ccb94342d13e3bf3ffa6e62f95b5e3f0bc6bfa94558cb37f4b3d09d6feb536ff"}, + {file = "pyzmq-24.0.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6640f83df0ae4ae1104d4c62b77e9ef39be85ebe53f636388707d532bee2b7b8"}, + {file = "pyzmq-24.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a180dbd5ea5d47c2d3b716d5c19cc3fb162d1c8db93b21a1295d69585bfddac1"}, + {file = "pyzmq-24.0.1-cp311-cp311-win32.whl", hash = "sha256:624321120f7e60336be8ec74a172ae7fba5c3ed5bf787cc85f7e9986c9e0ebc2"}, + {file = "pyzmq-24.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:1724117bae69e091309ffb8255412c4651d3f6355560d9af312d547f6c5bc8b8"}, + {file = "pyzmq-24.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:15975747462ec49fdc863af906bab87c43b2491403ab37a6d88410635786b0f4"}, + {file = "pyzmq-24.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b947e264f0e77d30dcbccbb00f49f900b204b922eb0c3a9f0afd61aaa1cedc3d"}, + {file = "pyzmq-24.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0ec91f1bad66f3ee8c6deb65fa1fe418e8ad803efedd69c35f3b5502f43bd1dc"}, + {file = "pyzmq-24.0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:db03704b3506455d86ec72c3358a779e9b1d07b61220dfb43702b7b668edcd0d"}, + {file = "pyzmq-24.0.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:e7e66b4e403c2836ac74f26c4b65d8ac0ca1eef41dfcac2d013b7482befaad83"}, + {file = "pyzmq-24.0.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:7a23ccc1083c260fa9685c93e3b170baba45aeed4b524deb3f426b0c40c11639"}, + {file = "pyzmq-24.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fa0ae3275ef706c0309556061185dd0e4c4cd3b7d6f67ae617e4e677c7a41e2e"}, + {file = "pyzmq-24.0.1-cp36-cp36m-win32.whl", hash = "sha256:f01de4ec083daebf210531e2cca3bdb1608dbbbe00a9723e261d92087a1f6ebc"}, + {file = "pyzmq-24.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:de4217b9eb8b541cf2b7fde4401ce9d9a411cc0af85d410f9d6f4333f43640be"}, + {file = "pyzmq-24.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:78068e8678ca023594e4a0ab558905c1033b2d3e806a0ad9e3094e231e115a33"}, + {file = "pyzmq-24.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77c2713faf25a953c69cf0f723d1b7dd83827b0834e6c41e3fb3bbc6765914a1"}, + {file = "pyzmq-24.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8bb4af15f305056e95ca1bd086239b9ebc6ad55e9f49076d27d80027f72752f6"}, + {file = "pyzmq-24.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:0f14cffd32e9c4c73da66db97853a6aeceaac34acdc0fae9e5bbc9370281864c"}, + {file = "pyzmq-24.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:0108358dab8c6b27ff6b985c2af4b12665c1bc659648284153ee501000f5c107"}, + {file = "pyzmq-24.0.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:d66689e840e75221b0b290b0befa86f059fb35e1ee6443bce51516d4d61b6b99"}, + {file = "pyzmq-24.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ae08ac90aa8fa14caafc7a6251bd218bf6dac518b7bff09caaa5e781119ba3f2"}, + {file = "pyzmq-24.0.1-cp37-cp37m-win32.whl", hash = "sha256:8421aa8c9b45ea608c205db9e1c0c855c7e54d0e9c2c2f337ce024f6843cab3b"}, + {file = "pyzmq-24.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:54d8b9c5e288362ec8595c1d98666d36f2070fd0c2f76e2b3c60fbad9bd76227"}, + {file = "pyzmq-24.0.1-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:acbd0a6d61cc954b9f535daaa9ec26b0a60a0d4353c5f7c1438ebc88a359a47e"}, + {file = "pyzmq-24.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:47b11a729d61a47df56346283a4a800fa379ae6a85870d5a2e1e4956c828eedc"}, + {file = "pyzmq-24.0.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:abe6eb10122f0d746a0d510c2039ae8edb27bc9af29f6d1b05a66cc2401353ff"}, + {file = "pyzmq-24.0.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:07bec1a1b22dacf718f2c0e71b49600bb6a31a88f06527dfd0b5aababe3fa3f7"}, + {file = "pyzmq-24.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0d945a85b70da97ae86113faf9f1b9294efe66bd4a5d6f82f2676d567338b66"}, + {file = "pyzmq-24.0.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1b7928bb7580736ffac5baf814097be342ba08d3cfdfb48e52773ec959572287"}, + {file = "pyzmq-24.0.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:b946da90dc2799bcafa682692c1d2139b2a96ec3c24fa9fc6f5b0da782675330"}, + {file = "pyzmq-24.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c8840f064b1fb377cffd3efeaad2b190c14d4c8da02316dae07571252d20b31f"}, + {file = "pyzmq-24.0.1-cp38-cp38-win32.whl", hash = "sha256:4854f9edc5208f63f0841c0c667260ae8d6846cfa233c479e29fdc85d42ebd58"}, + {file = "pyzmq-24.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:42d4f97b9795a7aafa152a36fe2ad44549b83a743fd3e77011136def512e6c2a"}, + {file = "pyzmq-24.0.1-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:52afb0ac962963fff30cf1be775bc51ae083ef4c1e354266ab20e5382057dd62"}, + {file = "pyzmq-24.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8bad8210ad4df68c44ff3685cca3cda448ee46e20d13edcff8909eba6ec01ca4"}, + {file = "pyzmq-24.0.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:dabf1a05318d95b1537fd61d9330ef4313ea1216eea128a17615038859da3b3b"}, + {file = "pyzmq-24.0.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5bd3d7dfd9cd058eb68d9a905dec854f86649f64d4ddf21f3ec289341386c44b"}, + {file = "pyzmq-24.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8012bce6836d3f20a6c9599f81dfa945f433dab4dbd0c4917a6fb1f998ab33d"}, + {file = "pyzmq-24.0.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c31805d2c8ade9b11feca4674eee2b9cce1fec3e8ddb7bbdd961a09dc76a80ea"}, + {file = "pyzmq-24.0.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:3104f4b084ad5d9c0cb87445cc8cfd96bba710bef4a66c2674910127044df209"}, + {file = "pyzmq-24.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:df0841f94928f8af9c7a1f0aaaffba1fb74607af023a152f59379c01c53aee58"}, + {file = "pyzmq-24.0.1-cp39-cp39-win32.whl", hash = "sha256:a435ef8a3bd95c8a2d316d6e0ff70d0db524f6037411652803e118871d703333"}, + {file = "pyzmq-24.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:2032d9cb994ce3b4cba2b8dfae08c7e25bc14ba484c770d4d3be33c27de8c45b"}, + {file = "pyzmq-24.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bb5635c851eef3a7a54becde6da99485eecf7d068bd885ac8e6d173c4ecd68b0"}, + {file = "pyzmq-24.0.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:83ea1a398f192957cb986d9206ce229efe0ee75e3c6635baff53ddf39bd718d5"}, + {file = "pyzmq-24.0.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:941fab0073f0a54dc33d1a0460cb04e0d85893cb0c5e1476c785000f8b359409"}, + {file = "pyzmq-24.0.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e8f482c44ccb5884bf3f638f29bea0f8dc68c97e38b2061769c4cb697f6140d"}, + {file = "pyzmq-24.0.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:613010b5d17906c4367609e6f52e9a2595e35d5cc27d36ff3f1b6fa6e954d944"}, + {file = "pyzmq-24.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:65c94410b5a8355cfcf12fd600a313efee46ce96a09e911ea92cf2acf6708804"}, + {file = "pyzmq-24.0.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:20e7eeb1166087db636c06cae04a1ef59298627f56fb17da10528ab52a14c87f"}, + {file = "pyzmq-24.0.1-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a2712aee7b3834ace51738c15d9ee152cc5a98dc7d57dd93300461b792ab7b43"}, + {file = "pyzmq-24.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a7c280185c4da99e0cc06c63bdf91f5b0b71deb70d8717f0ab870a43e376db8"}, + {file = "pyzmq-24.0.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:858375573c9225cc8e5b49bfac846a77b696b8d5e815711b8d4ba3141e6e8879"}, + {file = "pyzmq-24.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:80093b595921eed1a2cead546a683b9e2ae7f4a4592bb2ab22f70d30174f003a"}, + {file = "pyzmq-24.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f3f3154fde2b1ff3aa7b4f9326347ebc89c8ef425ca1db8f665175e6d3bd42f"}, + {file = "pyzmq-24.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abb756147314430bee5d10919b8493c0ccb109ddb7f5dfd2fcd7441266a25b75"}, + {file = "pyzmq-24.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44e706bac34e9f50779cb8c39f10b53a4d15aebb97235643d3112ac20bd577b4"}, + {file = "pyzmq-24.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:687700f8371643916a1d2c61f3fdaa630407dd205c38afff936545d7b7466066"}, + {file = "pyzmq-24.0.1.tar.gz", hash = "sha256:216f5d7dbb67166759e59b0479bca82b8acf9bed6015b526b8eb10143fb08e77"}, +] requests = [ {file = "requests-2.27.1-py2.py3-none-any.whl", hash = "sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d"}, {file = "requests-2.27.1.tar.gz", hash = "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61"}, @@ -1599,6 +2301,7 @@ responses = [ ] "ruamel.yaml.clib" = [ {file = "ruamel.yaml.clib-0.2.6-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6e7be2c5bcb297f5b82fee9c665eb2eb7001d1050deaba8471842979293a80b0"}, + {file = "ruamel.yaml.clib-0.2.6-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:066f886bc90cc2ce44df8b5f7acfc6a7e2b2e672713f027136464492b0c34d7c"}, {file = "ruamel.yaml.clib-0.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:221eca6f35076c6ae472a531afa1c223b9c29377e62936f61bc8e6e8bdc5f9e7"}, {file = "ruamel.yaml.clib-0.2.6-cp310-cp310-win32.whl", hash = "sha256:1070ba9dd7f9370d0513d649420c3b362ac2d687fe78c6e888f5b12bf8bc7bee"}, {file = "ruamel.yaml.clib-0.2.6-cp310-cp310-win_amd64.whl", hash = "sha256:77df077d32921ad46f34816a9a16e6356d8100374579bc35e15bab5d4e9377de"}, @@ -1608,22 +2311,30 @@ responses = [ {file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-win_amd64.whl", hash = "sha256:de9c6b8a1ba52919ae919f3ae96abb72b994dd0350226e28f3686cb4f142165c"}, {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d67f273097c368265a7b81e152e07fb90ed395df6e552b9fa858c6d2c9f42502"}, {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:72a2b8b2ff0a627496aad76f37a652bcef400fd861721744201ef1b45199ab78"}, + {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:d3c620a54748a3d4cf0bcfe623e388407c8e85a4b06b8188e126302bcab93ea8"}, {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-win32.whl", hash = "sha256:9efef4aab5353387b07f6b22ace0867032b900d8e91674b5d8ea9150db5cae94"}, {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-win_amd64.whl", hash = "sha256:846fc8336443106fe23f9b6d6b8c14a53d38cef9a375149d61f99d78782ea468"}, {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0847201b767447fc33b9c235780d3aa90357d20dd6108b92be544427bea197dd"}, {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:78988ed190206672da0f5d50c61afef8f67daa718d614377dcd5e3ed85ab4a99"}, + {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:210c8fcfeff90514b7133010bf14e3bad652c8efde6b20e00c43854bf94fa5a6"}, {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-win32.whl", hash = "sha256:a49e0161897901d1ac9c4a79984b8410f450565bbad64dbfcbf76152743a0cdb"}, {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-win_amd64.whl", hash = "sha256:bf75d28fa071645c529b5474a550a44686821decebdd00e21127ef1fd566eabe"}, {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a32f8d81ea0c6173ab1b3da956869114cae53ba1e9f72374032e33ba3118c233"}, {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7f7ecb53ae6848f959db6ae93bdff1740e651809780822270eab111500842a84"}, + {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:61bc5e5ca632d95925907c569daa559ea194a4d16084ba86084be98ab1cec1c6"}, {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-win32.whl", hash = "sha256:89221ec6d6026f8ae859c09b9718799fea22c0e8da8b766b0b2c9a9ba2db326b"}, {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-win_amd64.whl", hash = "sha256:31ea73e564a7b5fbbe8188ab8b334393e06d997914a4e184975348f204790277"}, {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dc6a613d6c74eef5a14a214d433d06291526145431c3b964f5e16529b1842bed"}, {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:1866cf2c284a03b9524a5cc00daca56d80057c5ce3cdc86a52020f4c720856f0"}, + {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:1b4139a6ffbca8ef60fdaf9b33dec05143ba746a6f0ae0f9d11d38239211d335"}, {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-win32.whl", hash = "sha256:3fb9575a5acd13031c57a62cc7823e5d2ff8bc3835ba4d94b921b4e6ee664104"}, {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-win_amd64.whl", hash = "sha256:825d5fccef6da42f3c8eccd4281af399f21c02b32d98e113dbc631ea6a6ecbc7"}, {file = "ruamel.yaml.clib-0.2.6.tar.gz", hash = "sha256:4ff604ce439abb20794f05613c374759ce10e3595d1867764dd1ae675b85acbd"}, ] +setuptools = [ + {file = "setuptools-65.5.1-py3-none-any.whl", hash = "sha256:d0b9a8433464d5800cbe05094acf5c6d52a91bfac9b52bcfc4d41382be5d5d31"}, + {file = "setuptools-65.5.1.tar.gz", hash = "sha256:e197a19aa8ec9722928f2206f8de752def0e4c9fc6953527360d1c36d94ddb2f"}, +] six = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, @@ -1695,6 +2406,10 @@ sphinxcontrib-serializinghtml = [ {file = "sphinxcontrib-serializinghtml-1.1.5.tar.gz", hash = "sha256:aa5f6de5dfdf809ef505c4895e51ef5c9eac17d0f287933eb49ec495280b6952"}, {file = "sphinxcontrib_serializinghtml-1.1.5-py2.py3-none-any.whl", hash = "sha256:352a9a00ae864471d3a7ead8d7d79f5fc0b57e8b3f95e9867eb9eb28999b92fd"}, ] +stack-data = [ + {file = "stack_data-0.6.1-py3-none-any.whl", hash = "sha256:960cb054d6a1b2fdd9cbd529e365b3c163e8dabf1272e02cfe36b58403cff5c6"}, + {file = "stack_data-0.6.1.tar.gz", hash = "sha256:6c9a10eb5f342415fe085db551d673955611afb821551f554d91772415464315"}, +] tabulate = [ {file = "tabulate-0.8.9-py3-none-any.whl", hash = "sha256:d7c013fe7abbc5e491394e10fa845f8f32fe54f8dc60c6622c6cf482d25d47e4"}, {file = "tabulate-0.8.9.tar.gz", hash = "sha256:eb1d13f25760052e8931f2ef80aaf6045a6cceb47514db8beab24cded16f13a7"}, @@ -1754,6 +2469,10 @@ tornado = [ {file = "tornado-6.1-cp39-cp39-win_amd64.whl", hash = "sha256:548430be2740e327b3fe0201abe471f314741efcb0067ec4f2d7dcfb4825f3e4"}, {file = "tornado-6.1.tar.gz", hash = "sha256:33c6e81d7bd55b468d2e793517c909b139960b6c790a60b7991b9b6b76fb9791"}, ] +traitlets = [ + {file = "traitlets-5.5.0-py3-none-any.whl", hash = "sha256:1201b2c9f76097195989cdf7f65db9897593b0dfd69e4ac96016661bb6f0d30f"}, + {file = "traitlets-5.5.0.tar.gz", hash = "sha256:b122f9ff2f2f6c1709dab289a05555be011c87828e911c0cf4074b85cb780a79"}, +] types-requests = [ {file = "types-requests-2.27.27.tar.gz", hash = "sha256:d618d9809fa32f514cf17cea8460814da671c56366fb1c908accca8bf183112b"}, {file = "types_requests-2.27.27-py3-none-any.whl", hash = "sha256:6d8463ffe1f6edcf2e5361740a6140e7a16d427c267d83c7c1d3d1298f4e67c5"}, @@ -1774,6 +2493,10 @@ virtualenv = [ {file = "virtualenv-20.14.1-py2.py3-none-any.whl", hash = "sha256:e617f16e25b42eb4f6e74096b9c9e37713cf10bf30168fb4a739f3fa8f898a3a"}, {file = "virtualenv-20.14.1.tar.gz", hash = "sha256:ef589a79795589aada0c1c5b319486797c03b67ac3984c48c669c0e4f50df3a5"}, ] +wcwidth = [ + {file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"}, + {file = "wcwidth-0.2.5.tar.gz", hash = "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"}, +] webencodings = [ {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, diff --git a/pyarr/base.py b/pyarr/base.py index 9d530ba..9895052 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -9,12 +9,12 @@ PyarrDownloadClientSchema, PyarrHistorySortKey, PyarrImportListSchema, + PyarrIndexerSchema, PyarrLogFilterKey, PyarrLogFilterValue, PyarrLogSortKey, PyarrNotificationSchema, PyarrSortDirection, - PyarrTaskSortKey, ) from pyarr.types import JsonArray, JsonObject @@ -393,6 +393,30 @@ def upd_quality_definition(self, id_: int, data: JsonObject) -> JsonObject: # INDEXER + # GET /indexer/schema + def get_indexer_schema( + self, implementation: Optional[PyarrIndexerSchema] = None + ) -> Union[JsonArray, JsonObject]: + """Get possible indexer connections + + Args: + implementation (Optional[PyarrIndexerSchema], optional): indexer system + + Returns: + Union[JsonArray, JsonObject]: List of dictionaries with items + """ + response: JsonArray = self._get("indexer/schema", self.ver_uri) + if implementation: + if filter_response := [ + item for item in response if item["implementation"] == implementation + ]: + response = filter_response + else: + raise PyarrRecordNotFound( + f"A record with implementation {implementation} was not found" + ) + return response + # GET /indexer/{id} def get_indexer( self, id_: Optional[int] = None @@ -467,44 +491,19 @@ def del_queue( # GET /system/task/{id} def get_task( self, - page: Optional[int] = None, - page_size: Optional[int] = None, - sort_key: Optional[PyarrTaskSortKey] = None, - sort_dir: Optional[PyarrSortDirection] = None, id_: Optional[int] = None, ) -> JsonObject: """Return a list of tasks, or specify a task ID to return single task Args: - page (Optional[int], optional): Page number to return. Defaults to None. - page_size (Optional[int], optional): Number of items per page. Defaults to None. - sort_key (Optional[PyarrTaskSortKey], optional): Field to sort by. Defaults to None. - sort_dir (Optional[PyarrSortDirection], optional): Direction to sort the items. Defaults to None. id_ (Optional[int], optional): ID for task. Defaults to None. Returns: JsonObject: List of dictionaries with items """ - params: dict[ - str, - Union[ - int, - PyarrTaskSortKey, - PyarrSortDirection, - ], - ] = {} - if page: - params["page"] = page - if page_size: - params["pageSize"] = page_size - if sort_key and sort_dir: - params["sortKey"] = sort_key - params["sortDirection"] = sort_dir - elif sort_key or sort_dir: - raise PyarrMissingArgument("sort_key and sort_dir must be used together") path = f"system/task/{id_}" if id_ else "system/task" - return self._get(path, self.ver_uri, params) + return self._get(path, self.ver_uri) # GET /remotepathmapping def get_remote_path_mapping( @@ -947,3 +946,16 @@ def upd_config_download_client(self, data: JsonObject) -> JsonObject: JsonObject: dictionary with updated items """ return self._put("config/downloadclient", self.ver_uri, data=data) + + # GET /command + def get_command(self, id_: Optional[int] = None) -> Union[JsonArray, JsonObject]: + """Queries the status of a previously started command, or all currently started commands. + + Args: + id_ (Optional[int], optional): Database ID of the command. Defaults to None. + + Returns: + Union[JsonArray, JsonObject]: List of dictionaries with items + """ + path = f"command{f'/{id_}' if id_ else ''}" + return self._get(path, self.ver_uri) diff --git a/pyarr/exceptions.py b/pyarr/exceptions.py index 2f94bc9..289a16e 100644 --- a/pyarr/exceptions.py +++ b/pyarr/exceptions.py @@ -36,3 +36,7 @@ class PyarrRecordNotFound(PyarrError): class PyarrMissingArgument(PyarrError): """Missing one of multiple possible arguments""" + + +class PyarrBadRequest(PyarrError): + """Bad Request, possible bug.""" diff --git a/pyarr/lidarr.py b/pyarr/lidarr.py index baac4c5..34cdc36 100644 --- a/pyarr/lidarr.py +++ b/pyarr/lidarr.py @@ -33,26 +33,26 @@ def add_root_folder( self, name: str, path: str, - qualityProfile: int, - metadataProfile: int, - defaultTags: list[int] = None, + default_quality_profile_id: int, + default_metadata_profile_id: int, + default_tags: list[int] = None, ) -> JsonObject: """Add a new location to store files Args: name (str): Name for this root folder path (str): Location the files should be stored - defaultTags (list[int]): List of default tag IDs - qualityProfile (int): Default quality profile ID - metadataProfile (int): Default metadata profile ID + default_quality_profile_id (int): Default quality profile ID + default_metadata_profile_id (int): Default metadata profile ID + default_tags (list[int]): List of default tag IDs Returns: JsonObject: Dictonary with added record """ folder_json = { - "defaultTags": defaultTags or [], - "defaultQualityProfileId": qualityProfile, - "defaultMetadataProfileId": metadataProfile, + "defaultTags": default_tags or [], + "defaultQualityProfileId": default_quality_profile_id, + "defaultMetadataProfileId": default_metadata_profile_id, "name": name, "path": path, } @@ -312,15 +312,14 @@ def _album_json( album: dict[str, Any] = self.lookup_album(term=f"lidarr:{id_}")[0] album["id"] = 0 - album["metadataProfileId"] = metadata_profile_id - album["qualityProfileId"] = quality_profile_id - album["rootFolderPath"] = root_dir - album["addOptions"] = { + album["artist"]["metadataProfileId"] = metadata_profile_id + album["artist"]["qualityProfileId"] = quality_profile_id + album["artist"]["rootFolderPath"] = root_dir + album["artist"]["addOptions"] = { "monitor": artist_monitor, "searchForMissingAlbums": artist_search_for_missing_albums, } album["monitored"] = monitored - return album def add_album( @@ -814,3 +813,26 @@ def get_retag( self.ver_uri, params=params, ) + + # POST /qualityprofile + def add_quality_profile( + self, name: str, upgrades_allowed: bool, cutoff: int, items: list + ) -> JsonObject: + """Add new quality profile + + Args: + name (str): Name of the profile + upgrades_allowed (bool): Are upgrades in quality allowed? + cutoff (int): ID of quality definition to cutoff at. Must be an allowed definition ID. + items (list): Add a list of items (from `get_quality_definition()`) + + Returns: + JsonObject: An object containing the profile + """ + data = { + "name": name, + "upgradeAllowed": upgrades_allowed, + "cutoff": cutoff, + "items": items, + } + return self._post("qualityprofile", self.ver_uri, data=data) diff --git a/pyarr/models/common.py b/pyarr/models/common.py index 07a9d52..79d2c24 100644 --- a/pyarr/models/common.py +++ b/pyarr/models/common.py @@ -141,3 +141,19 @@ class PyarrImportListSchema(str, Enum): TRAKT_LIST = "TraktListImport" TRAKT_POPULAR = "TraktPopularImport" TRAKT_USER = "TraktUserImport" + + +class PyarrIndexerSchema(str, Enum): + """Import List schema implementations""" + + FILE_LIST = "FileList" + HD_BITS = "HDBits" + IP_TORRENTS = "IPTorrents" + NEWZNAB = "Newznab" + NYAA = "Nyaa" + OMGWTFNZBS = "Omgwtfnzbs" + PASS_THE_POPCORN = "PassThePopcorn" + RARBG = "Rarbg" + TORRENT_RSS_INDEXER = "TorrentRssIndexer" + TORRENT_POTATO = "TorrentPotato" + TORZNAB = "Torznab" diff --git a/pyarr/models/readarr.py b/pyarr/models/readarr.py index b1ce8fa..d97cb64 100644 --- a/pyarr/models/readarr.py +++ b/pyarr/models/readarr.py @@ -78,12 +78,14 @@ class ReadarrSortKeys(str, Enum): TITLE = "title" -class ReadarrBookTypes(str, Enum): - """Readarr book types.""" +class ReadarrSearchType(str, Enum): + """Readarr search types.""" ASIN = "asin" - GOODREADS = "goodreads" + GOODREADS = "edition" ISBN = "isbn" + AUTHOR = "author" + WORK = "work" class ReadarrAuthorMonitor(str, Enum): diff --git a/pyarr/radarr.py b/pyarr/radarr.py index ce5a1fc..9537e66 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -165,13 +165,13 @@ def add_movie( # PUT /movie def upd_movie( self, - data: Union[dict[Any, Any], list[dict[Any, Any]]], + data: JsonObject, move_files: Optional[bool] = None, - ) -> Union[JsonObject, JsonArray]: + ) -> JsonObject: """Updates a movie in the database. Args: - data (Union[dict[Any, Any], list[dict[Any, Any]]]): Dictionary containing an object obtained from get_movie() + data (JsonObject): Dictionary containing an object obtained from get_movie() move_files (Optional[bool], optional): Have radarr move files when updating. Defaults to None. Returns: @@ -182,7 +182,7 @@ def upd_movie( params["moveFiles"] = move_files print(type(data)) return self._put( - f"movie{'/editor' if isinstance(data, list) else ''}", + "movie", self.ver_uri, data=data, params=params, @@ -227,14 +227,15 @@ def del_movie( Response: HTTP Response """ params: dict[str, Union[str, list[int], int]] = {} + if isinstance(id_, list): + params["movieIds"] = id_ if delete_files: - params["deleteFiles"] = str(delete_files) + params["deleteFiles"] = delete_files if add_exclusion: - params["addImportExclusion"] = str(add_exclusion) + params["addImportExclusion"] = add_exclusion - if isinstance(id_, list): - params["movieIds"] = id_ + print(params) return self._delete( "movie/editor" if isinstance(id_, list) else f"movie/{id_}", self.ver_uri, @@ -299,17 +300,18 @@ def upd_movies(self, data: JsonObject) -> JsonArray: """The Updates operation allows to edit properties of multiple movies at once Args: - data (JsonObject): Updated movie information + data (JsonObject): Updated movie information:: + + {"movieIds":[28],"tags":[3],"applyTags":"add"} + {"movieIds":[28],"monitored":true} + {"movieIds":[28],"qualityProfileId":1} + {"movieIds":[28],"minimumAvailability":"inCinemas"} + {"movieIds":[28],"rootFolderPath":"/defaults/"} Returns: - JsonObject: Dictionary containing updated record + JsonArray: Dictionary containing updated record """ - warn( - "This method is deprecated and will be removed in a future release. Please use upd_movie() with a list to update", - DeprecationWarning, - stacklevel=2, - ) return self._put("movie/editor", self.ver_uri, data=data) # DELETE /movie/editor @@ -544,46 +546,6 @@ def force_grab_queue_item(self, id_: int) -> JsonObject: """ return self._post(f"queue/grab/{id_}", self.ver_uri) - ## INDEXER - - # GET /indexer and /indexer/{id} - def get_indexer(self, id_: Optional[int] = None) -> JsonArray: - """Get all indexers or a single indexer by its database ID. - - Args: - id_ (Optional[int], optional): indexer database ID. Defaults to None. - - Returns: - JsonArray: List of dictionaries with items - """ - path = f"indexer/{id_}" if id_ else "indexer" - return self._get(path, self.ver_uri) - - # PUT /indexer/{id} - def upd_indexer(self, id_: int, data: JsonObject) -> JsonObject: - """Edit an indexer - - Args: - id_ (int): Database ID of indexer - data (JsonObject): information to be changed within the indexer - - Returns: - JsonObject: Dictionary with updated record - """ - return self._put(f"indexer/{id_}", self.ver_uri, data=data) - - # DELETE /indexer/{id} - def del_indexer(self, id_: int) -> Union[Response, JsonObject, dict[Any, Any]]: - """Delete indexer by database ID - - Args: - id_ (int): DAtabase ID of the indexer - - Returns: - Response: HTTP Response - """ - return self._delete(f"indexer/{id_}", self.ver_uri) - ## COMMAND # POST /command @@ -620,3 +582,26 @@ def get_custom_filter(self) -> JsonArray: JsonArray: List of dictionaries with items """ return self._get("customfilter", self.ver_uri) + + # POST /qualityprofile + def add_quality_profile( + self, name: str, upgrades_allowed: bool, cutoff: int, items: list + ) -> JsonObject: + """Add new quality profile + + Args: + name (str): Name of the profile + upgrades_allowed (bool): Are upgrades in quality allowed? + cutoff (int): ID of quality definition to cutoff at. Must be an allowed definition ID. + items (list): Add a list of items (from `get_quality_definition()`) + + Returns: + JsonObject: An object containing the profile + """ + data = { + "name": name, + "upgradeAllowed": upgrades_allowed, + "cutoff": cutoff, + "items": items, + } + return self._post("qualityprofile", self.ver_uri, data=data) diff --git a/pyarr/readarr.py b/pyarr/readarr.py index 55adf15..ca7ee0d 100644 --- a/pyarr/readarr.py +++ b/pyarr/readarr.py @@ -7,12 +7,7 @@ from .base import BaseArrAPI from .exceptions import PyarrMissingArgument, PyarrMissingProfile from .models.common import PyarrSortDirection -from .models.readarr import ( - ReadarrAuthorMonitor, - ReadarrBookTypes, - ReadarrCommands, - ReadarrSortKeys, -) +from .models.readarr import ReadarrAuthorMonitor, ReadarrCommands, ReadarrSortKeys class ReadarrAPI(BaseArrAPI): @@ -30,7 +25,7 @@ def __init__(self, host_url: str, api_key: str): super().__init__(host_url, api_key, ver_uri) def lookup(self, term: str) -> JsonArray: - """Search for an author / book + """Search for an author / book by name or Goodreads ID / ISBN / ASIN Note: You can also search using the Goodreads ID, work, or author, the ISBN or ASIN:: @@ -78,129 +73,6 @@ def lookup_author(self, term: str) -> JsonArray: params = {"term": term} return self._get("author/lookup", self.ver_uri, params) - def _book_json( - self, - id_: str, - book_id_type: ReadarrBookTypes, - root_dir: str, - quality_profile_id: Optional[int] = None, - metadata_profile_id: Optional[int] = None, - monitored: bool = True, - search_for_new_book: bool = False, - author_monitor: ReadarrAuthorMonitor = ReadarrAuthorMonitor.ALL, - author_search_for_missing_books: bool = False, - ) -> JsonObject: - """Constructs the JSON required to add a new book to Readarr - - Args: - id_ (str): Book ID from Goodreads, ISBN or ASIN - book_id_type (ReadarrBookTypes): Type of book ID - root_dir (str): Root directory for books - quality_profile_id (Optional[int], optional): Quality profile ID. Defaults to None. - metadata_profile_id (Optional[int], optional): Metadata profile ID. Defaults to None. - monitored (bool, optional): Monitor for book. Defaults to True. - search_for_new_book (bool, optional): Search for new book on adding. Defaults to False. - author_monitor (ReadarrAuthorMonitor, optional): Monitor the author. Defaults to ReadarrAuthorMonitor.ALL. - author_search_for_missing_books (bool, optional): Search for other missing books by author. Defaults to False. - - Raises: - PyarrMissingProfile: Error if Metadata or Quality profile ID are incorrect - - Returns: - JsonObject: Dictionary of generated record - """ - if quality_profile_id is None: - try: - quality_profile_id = self.get_quality_profile()[0]["id"] - except IndexError as exception: - raise PyarrMissingProfile( - "There is no Quality Profile setup" - ) from exception - if metadata_profile_id is None: - try: - metadata_profile: Union[ - list[dict[str, Any]], dict[str, Any] - ] = self.get_metadata_profile() - if isinstance(metadata_profile, list): - metadata_profile_id = metadata_profile[0]["id"] - except IndexError as exception: - raise PyarrMissingProfile( - "There is no Metadata Profile setup" - ) from exception - book: dict[str, Any] = self.lookup_book(f"{book_id_type}:{id_}")[0] - book["author"] = {} - book["author"]["metadataProfileId"] = metadata_profile_id - book["author"]["qualityProfileId"] = quality_profile_id - book["author"]["rootFolderPath"] = root_dir - book["author"]["addOptions"] = { - "monitor": author_monitor, - "searchForMissingBooks": author_search_for_missing_books, - } - book["monitored"] = monitored - book["author"]["manualAdd"] = True - book["addOptions"] = {"searchForNewBook": search_for_new_book} - - return book - - def _author_json( - self, - term: str, - root_dir: str, - quality_profile_id: Optional[int] = None, - metadata_profile_id: Optional[int] = None, - monitored: bool = True, - author_monitor: ReadarrAuthorMonitor = ReadarrAuthorMonitor.NONE, - search_for_missing_books: bool = False, - ) -> JsonObject: - """Constructs the JSON required to add a new book to Readarr - - Args: - term (str): Search term - root_dir (str): Root directory for books - quality_profile_id (Optional[int], optional): Quality profile ID. Defaults to None. - metadata_profile_id (Optional[int], optional): Metadata profile ID. Defaults to None. - monitored (bool, optional): Monitor this author. Defaults to True. - author_monitor (ReadarrAuthorMonitor, optional): Monitor the author. Defaults to ReadarrAuthorMonitor.NONE. - search_for_missing_books (bool, optional): Search for missing books by the author. Defaults to False. - - Raises: - PyarrMissingProfile: Error if Metadata or Quality profile ID are incorrect - - Returns: - JsonObject: Dictionary of author data - """ - if quality_profile_id is None: - try: - quality_profile_id = self.get_quality_profile()[0]["id"] - except IndexError as exception: - raise PyarrMissingProfile( - "There is no Quality Profile setup" - ) from exception - if metadata_profile_id is None: - try: - metadata_profile: Union[ - list[dict[str, Any]], dict[str, Any] - ] = self.get_metadata_profile() - if isinstance(metadata_profile, list): - metadata_profile_id = metadata_profile[0]["id"] - except IndexError as exception: - raise PyarrMissingProfile( - "There is no Metadata Profile setup" - ) from exception - - author: dict[str, Any] = self.lookup_author(term)[0] - - author["metadataProfileId"] = metadata_profile_id - author["qualityProfileId"] = quality_profile_id - author["rootFolderPath"] = root_dir - author["addOptions"] = { - "monitor": author_monitor, - "searchForMissingBooks": search_for_missing_books, - } - author["monitored"] = monitored - - return author - # COMMAND # GET /command/:id @@ -356,10 +228,48 @@ def get_queue( return self._get("queue", self.ver_uri, params) + # PROFILES + + # POST /qualityprofile + def add_quality_profile( + self, + name: str, + upgrades_allowed: bool, + cutoff: int, + items: list, + min_format_score: int, + cutoff_format_score: int, + format_items: list = [], + ) -> JsonObject: # type: ignore[override] + """Add new quality profile + + Args: + name (str): Name of the profile + upgrades_allowed (bool): Are upgrades in quality allowed? + cutoff (int): ID of quality definition to cutoff at. Must be an allowed definition ID. + items (list): Add a list of items (from `get_quality_definition()`) + min_format_score (int): minimum score for format. + cutoff_format_score (int): + format_items (list): custom format items. Defaults to [] + + Returns: + JsonObject: An object containing the profile + """ + data = { + "name": name, + "upgradeAllowed": upgrades_allowed, + "cutoff": cutoff, + "items": items, + "minFormatScore": min_format_score, + "cutoffFormatScore": cutoff_format_score, + "formatItems": format_items, + } + return self._post("qualityprofile", self.ver_uri, data=data) + # GET /metadataprofile/{id} def get_metadata_profile( self, id_: Optional[int] = None - ) -> Union[JsonArray, JsonObject]: + ) -> Union[JsonArray, dict[Any, Any]]: """Gets all metadata profiles or specific one with ID Args: @@ -371,6 +281,61 @@ def get_metadata_profile( path = f"metadataprofile/{id_}" if id_ else "metadataprofile" return self._get(path, self.ver_uri) + # POST /metadataprofile + def add_metadata_profile( + self, + name: str, + min_popularity: int, + skip_missing_date: bool, + skip_missing_isbn: bool, + skip_parts_and_sets: bool, + skip_series_secondary: bool, + allowed_languages: str, + min_pages: int, + ) -> Union[JsonArray, JsonObject]: + """Add a metadata profile + + Args: + name (str): Name of the profile + min_popularity (int): Minimum popularity + skip_missing_date (bool): Skip missing dates + skip_missing_isbn (bool): Skip missing isbn + skip_parts_and_sets (bool): Skip parts and sets + skip_series_secondary (bool): Skip series secondary + allowed_languages (str): List of allowed languages + min_pages (int): minimum pages + + Returns: + Union[JsonArray, JsonObject]: object of added record + """ + data = { + "name": name, + "minPopularity": min_popularity, + "skipMissingDate": skip_missing_date, + "skipMissingIsbn": skip_missing_isbn, + "skipPartsAndSets": skip_parts_and_sets, + "skipSeriesSecondary": skip_series_secondary, + "allowedLanguages": allowed_languages, + "minPages": min_pages, + } + return self._post("metadataprofile", self.ver_uri, data=data) + + # DELETE /metadataprofile/{id} + def del_metadata_profile( + self, + id_: int, + ) -> Union[Response, JsonObject, dict[Any, Any]]: + """Delete the metadata profile with the given ID + + Args: + id_ (int): Database ID for metadata profile + + Returns: + Response: HTTP Response + """ + + return self._delete(f"metadataprofile/{id_}", self.ver_uri) + # GET /delayprofile/{id} def get_delay_profile( self, id_: Optional[int] = None @@ -420,8 +385,7 @@ def get_book(self, id_: Optional[int] = None) -> Union[JsonArray, JsonObject]: # POST /book def add_book( self, - id_: str, - book_id_type: ReadarrBookTypes, + book: JsonObject, root_dir: str, quality_profile_id: Optional[int] = None, metadata_profile_id: Optional[int] = None, @@ -430,35 +394,49 @@ def add_book( author_monitor: ReadarrAuthorMonitor = ReadarrAuthorMonitor.ALL, author_search_for_missing_books: bool = False, ) -> JsonObject: - """Adds a new book and its associated author (if not already added) + """Add a new book and its associated author (if not already added). Args: - id_ (str): goodreads, isbn, asin ID for the book - book_id_type (str): goodreads / isbn / asin - root_dir (str): Directory for book to be stored - quality_profile_id (int, optional): quality profile id. Defaults to 1. - metadata_profile_id (int, optional): metadata profile id. Defaults to 0. - monitored (bool, optional): should the book be monitored. Defaults to True. - search_for_new_book (bool, optional): search for the book to download now. Defaults to False. - author_monitor (str, optional): monitor the author for new books. Defaults to "all". - author_search_for_missing_books (bool, optional): search for missing books from this author. Defaults to False. + book (JsonObject): A book object from `lookup()` + root_dir (str): The root directory for the books to be saved. + quality_profile_id (Optional[int], optional): Quality Profile. Defaults to first found profile. + metadata_profile_id (Optional[int], optional): Metadata Profile. Defaults to first found profile. + monitored (bool, optional): Monitor the book. Defaults to True. + search_for_new_book (bool, optional): Look for new books. Defaults to False. + author_monitor (ReadarrAuthorMonitor, optional): Monitor the author for books. Defaults to ReadarrAuthorMonitor.ALL. + author_search_for_missing_books (bool, optional): Search missing books by the author. Defaults to False. Returns: - JsonObject: Dictionary of added record + JsonObject: A copy of the added books """ + if quality_profile_id is None: + try: + quality_profile_id = self.get_quality_profile()[0]["id"] + except IndexError as exception: + raise PyarrMissingProfile( + "There is no Quality Profile setup" + ) from exception + if metadata_profile_id is None: + try: + metadata_profile_id = self.get_metadata_profile()[0]["id"] + except IndexError as exception: + raise PyarrMissingProfile( + "There is no Metadata Profile setup" + ) from exception - book_json: dict[str, Any] = self._book_json( - id_, - book_id_type, - root_dir, - quality_profile_id, - metadata_profile_id, - monitored, - search_for_new_book, - author_monitor, - author_search_for_missing_books, - ) - return self._post("book", self.ver_uri, data=book_json) + book["author"]["rootFolderPath"] = root_dir + book["author"]["metadataProfileId"] = metadata_profile_id + book["author"]["qualityProfileId"] = quality_profile_id + book["author"]["rootFolderPath"] = root_dir + book["author"]["addOptions"] = { + "monitor": author_monitor, + "searchForMissingBooks": author_search_for_missing_books, + } + book["monitored"] = monitored + book["author"]["manualAdd"] = True + book["addOptions"] = {"searchForNewBook": search_for_new_book} + + return self._post("book", self.ver_uri, data=book) # PUT /book/{id} def upd_book(self, id_: int, data: JsonObject) -> JsonObject: @@ -501,7 +479,7 @@ def del_book( return self._delete(f"book/{id_}", self.ver_uri, params=params) - # AUTHOR + # AUTHORadd_author # GET /author and /author/{id} def get_author(self, id_: Optional[int] = None) -> Union[JsonArray, JsonObject]: @@ -519,7 +497,7 @@ def get_author(self, id_: Optional[int] = None) -> Union[JsonArray, JsonObject]: # POST /author/ def add_author( self, - term: str, + author: JsonObject, root_dir: str, quality_profile_id: Optional[int] = None, metadata_profile_id: Optional[int] = None, @@ -527,10 +505,10 @@ def add_author( author_monitor: ReadarrAuthorMonitor = ReadarrAuthorMonitor.NONE, author_search_for_missing_books: bool = False, ) -> JsonObject: - """Adds an authorbased on search term, must be author name or book by goodreads / isbn / asin ID + """Adds an author based on data from lookup, must be an author record Args: - term (str): Author name or Author book by ID + author (JsonObject): A author object from `lookup()` root_dir (str): Directory for book to be stored quality_profile_id (int, optional): Quality profile id. Defaults to 1. metadata_profile_id (int, optional): Metadata profile id. Defaults to 0. @@ -541,16 +519,29 @@ def add_author( Returns: JsonObject: Dictonary of added record """ - author_json: dict[str, Any] = self._author_json( - term, - root_dir, - quality_profile_id, - metadata_profile_id, - monitored, - author_monitor, - author_search_for_missing_books, - ) - return self._post("author", self.ver_uri, data=author_json) + if quality_profile_id is None: + try: + quality_profile_id = self.get_quality_profile()[0]["id"] + except IndexError as exception: + raise PyarrMissingProfile( + "There is no Quality Profile setup" + ) from exception + if metadata_profile_id is None: + try: + metadata_profile_id = self.get_metadata_profile()[0]["id"] + except IndexError as exception: + raise PyarrMissingProfile( + "There is no Metadata Profile setup" + ) from exception + author["metadataProfileId"] = metadata_profile_id + author["qualityProfileId"] = quality_profile_id + author["rootFolderPath"] = root_dir + author["addOptions"] = { + "monitor": author_monitor, + "searchForMissingBooks": author_search_for_missing_books, + } + author["monitored"] = monitored + return self._post("author", self.ver_uri, data=author) # PUT /author/{id} def upd_author(self, id_: int, data: JsonObject) -> JsonObject: @@ -611,28 +602,28 @@ def add_root_folder( self, name: str, path: str, + default_quality_profile_id: int, + default_metadata_profile_id: int, + default_tags: Optional[list] = None, is_calibre_lib: bool = False, calibre_host: str = "localhost", calibre_port: int = 8080, use_ssl: bool = False, output_profile: str = "default", - default_tags: Optional[list] = None, - default_quality_profile_id: int = 1, - default_metadata_profile_id: int = 1, ) -> JsonObject: """Add a new location to store files Args: name (str): Friendly Name for folder path (str): Location the files should be stored + default_quality_profile_id (int): Quality Profile. + default_metadata_profile_id (int): Metadata Profile. + default_tags (Optional[list], optional): List of tags to apply. Defaults to None. is_calibre_lib (bool, optional): Use Calibre Content Server. Defaults to False. calibre_host (str, optional): Calibre Content Server address. Defaults to "localhost". calibre_port (int, optional): Calibre Content Server port. Defaults to 8080. use_ssl (bool, optional): Calibre Content Server SSL. Defaults to False. output_profile (str, optional): Books to monitor. Defaults to "default". - default_tags (Optional[list], optional): List of tags to apply. Defaults to None. - default_quality_profile_id (int, optional): Quality Profile. Defaults to 1. - default_metadata_profile_id (int, optional): Metadata Profile. Defaults to 1. Returns: JsonObject: Dictionary of added record @@ -674,3 +665,119 @@ def upd_metadata_provider(self, data: JsonObject) -> JsonObject: dict[str, Any]: Dictionary of updated record """ return self._put("config/metadataProvider", self.ver_uri, data=data) + + def add_release_profile( + self, + ignored: list, + required: list, + indexerId: int = 0, + tags: list[int] = None, + enabled: bool = True, + includePreferredWhenRenaming: bool = False, + ) -> JsonObject: + """Add a Release Profile + + Args: + ignored (list): List of terms in the release to ignore + indexerId (int): ID for preferred indexer. Defaults to 0 (any). + required (list): List of terms the release must include. + tags (list[int]): List of tag id's. Defaults to empty list + enabled (bool, optional): Enable release profile. Defaults to True. + includePreferredWhenRenaming (bool, optional): Include preferred when renaming. Defaults to False. + + Returns: + JsonObject: Dictionary containing details of new profile + """ + + if tags is None: + tags = [] + + data: dict[str, Any] = { + "enabled": enabled, + "ignored": ignored, + "includePreferredWhenRenaming": includePreferredWhenRenaming, + "indexerId": indexerId, + "required": required, + "tags": tags, + } + return self._post( + "releaseprofile", + self.ver_uri, + data=data, + ) + + # DELETE /releaseprofile/{id} + def del_release_profile( + self, + id_: int, + ) -> Union[Response, JsonObject, dict[Any, Any]]: + """Delete the release profile with the given ID + + Args: + id_ (int): Database ID for release profile + + Returns: + Response: HTTP Response + """ + + return self._delete(f"releaseprofile/{id_}", self.ver_uri) + + def add_delay_profile( + self, + tags: list[int], + preferredProtocol: str = "usenet", + usenetDelay: int = 0, + torrentDelay: int = 0, + bypassIfHighestQuality: bool = False, + bypassIfAboveCustomFormatScore: bool = False, + minimumCustomFormatScore: int = 0, + ) -> JsonObject: + """Add delay profile + + Args: + tags (list[int]): List of tag IDs. Use: `get_tag`. + preferredProtocol (str, optional): usenet, torrent, onlyusenet, onlytorrent . Defaults to "usenet". + usenetDelay (int, optional): Delay before grabbing a release. Defaults to 0. + torrentDelay (int, optional): Delay before grabbing a release. Defaults to 0. + bypassIfHighestQuality (bool, optional): Bypass delay when release has the highest enabled quality in the quality profile. Defaults to False. + bypassIfAboveCustomFormatScore (bool, optional): Enable bypass when release has a score higher than the configured minimum custom format score. Defaults to False. + minimumCustomFormatScore (int, optional): set when using `bypassIfAboveCustomFormatScore`. Defaults to 0. + + Returns: + JsonObject: Dictonary with added item + """ + data = { + "enableUsenet": True, + "enableTorrent": True, + "preferredProtocol": preferredProtocol, + "usenetDelay": usenetDelay, + "torrentDelay": torrentDelay, + "bypassIfHighestQuality": bypassIfHighestQuality, + "bypassIfAboveCustomFormatScore": bypassIfAboveCustomFormatScore, + "minimumCustomFormatScore": minimumCustomFormatScore, + "tags": tags, + } + + if preferredProtocol == "onlytorrent": + data["preferredProtocol"] = "torrent" + data["enableUsenet"] = False + elif preferredProtocol == "onlyusenet": + data["preferredProtocol"] = "usenet" + data["enableTorrent"] = False + return self._post("delayprofile", self.ver_uri, data=data) + + # DELETE /delayprofile/{id} + def del_delay_profile( + self, + id_: int, + ) -> Union[Response, JsonObject, dict[Any, Any]]: + """Delete the delay profile with the given ID + + Args: + id_ (int): Database ID for delay profile + + Returns: + Response: HTTP Response + """ + + return self._delete(f"delayprofile/{id_}", self.ver_uri) diff --git a/pyarr/request_handler.py b/pyarr/request_handler.py index 135d9af..015995f 100644 --- a/pyarr/request_handler.py +++ b/pyarr/request_handler.py @@ -7,6 +7,7 @@ from .exceptions import ( PyarrAccessRestricted, PyarrBadGateway, + PyarrBadRequest, PyarrConnectionError, PyarrMethodNotAllowed, PyarrResourceNotFound, @@ -115,6 +116,7 @@ def _post( json=data, auth=self.auth, ) + except requests.Timeout as exception: raise PyarrConnectionError( "Timeout occurred while connecting to API." @@ -226,6 +228,8 @@ def _process_response( Returns: JSON: Array """ + if res.status_code == 400: + raise PyarrBadRequest(f"Bad Request, possibly a bug. {str(res.request.body)}") if res.status_code == 401: raise PyarrUnauthorizedError( "Unauthorized. Please ensure valid API Key is used.", {} diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index f78b582..f6401cc 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -30,6 +30,7 @@ def _series_json( self, tvdb_id: int, quality_profile_id: int, + language_profile_id: int, root_dir: str, season_folder: bool = True, monitored: bool = True, @@ -42,6 +43,7 @@ def _series_json( Args: tvdb_id (int): TVDB id to search quality_profile_id (int): Database id for Quality profile + language_profile_id (int): Database id for language root_dir (str): Root directory for media season_folder (bool, optional): Specify if a season folder should be created. Defaults to True. monitored (bool, optional): Specify if the series should be monitored. Defaults to True. @@ -52,7 +54,7 @@ def _series_json( Returns: dict: dictionary of series data """ - series: dict[str, Any] = self.lookup_series_by_tvdb_id(tvdb_id)[0] + series: dict[str, Any] = self.lookup_series(id_=tvdb_id)[0] if not monitored and series.get("seasons"): for season in series["seasons"]: season["monitored"] = False @@ -62,6 +64,7 @@ def _series_json( "seasons": series["seasons"], "rootFolderPath": root_dir, "qualityProfileId": quality_profile_id, + "languageProfileId": language_profile_id, "seasonFolder": season_folder, "monitored": monitored, "tvdbId": tvdb_id, @@ -91,19 +94,6 @@ def add_root_folder( ## COMMAND - # GET /command - def get_command(self, id_: Optional[int] = None) -> Union[JsonArray, JsonObject]: - """Queries the status of a previously started command, or all currently started commands. - - Args: - id_ (Optional[int], optional): Database ID of the command. Defaults to None. - - Returns: - Union[JsonArray, JsonObject]: List of dictionaries with items - """ - path = f"command{f'/{id_}' if id_ else ''}" - return self._get(path, self.ver_uri) - # POST /command # TODO: Add more logic to ensure correct kwargs for a command def post_command( @@ -132,7 +122,7 @@ def post_command( # GET /episode def get_episode(self, id_: int, series: bool = False) -> JsonObject: - """Get get episodes by ID or series + """Get episodes by ID or series Args: id_ (int): ID for Episode or Series. @@ -511,6 +501,7 @@ def add_series( self, tvdb_id: int, quality_profile_id: int, + language_profile_id: int, root_dir: str, season_folder: bool = True, monitored: bool = True, @@ -527,6 +518,7 @@ def add_series( Args: tvdb_id (int): TVDB Id quality_profile_id (int): Database id for quality profile + language_profile_id (int): Database id for language profile root_dir (str): Root folder location, full path will be created from this season_folder (bool, optional): Create a folder for each season. Defaults to True. monitored (bool, optional): Monitor this series. Defaults to True. @@ -540,6 +532,7 @@ def add_series( series_json = self._series_json( tvdb_id, quality_profile_id, + language_profile_id, root_dir, season_folder, monitored, @@ -548,7 +541,14 @@ def add_series( search_for_missing_episodes, ) - return self._post("series", self.ver_uri, data=series_json) + response: dict[str, Any] = self._post("series", self.ver_uri, data=series_json) + for item in response: + if "errorMessage" in item: + raise Exception(item) + else: + continue + + return response # PUT /series def upd_series(self, data: JsonObject) -> JsonObject: @@ -601,6 +601,9 @@ def lookup_series( def lookup_series_by_tvdb_id(self, id_: int) -> JsonArray: """Searches for new shows on TheTVDB.com utilizing sonarr.tv's caching and augmentation proxy. + Note: + This method is deprecated and will be removed in a future release. Please use lookup_series() + Args: id_ (int): TVDB ID @@ -655,3 +658,89 @@ def get_history( params["episodeId"] = id_ return self._get("history", self.ver_uri, params) + + # GET /languageprofile/{id} + def get_language_profile( + self, id_: Optional[int] = None + ) -> Union[JsonArray, dict[Any, Any]]: + """Gets all language profiles or specific one with id + + Args: + id_ (Optional[int], optional): Language profile id from database. Defaults to None. + + Returns: + Union[JsonArray, dict[Any, Any]]: List of dictionaries with items + """ + + path = f"languageprofile{f'/{id_}' if id_ else ''}" + return self._get(path, self.ver_uri) + + # PUT /languageprofile/{id} + def upd_language_profile(self, id_: int, data: JsonObject) -> JsonObject: + """Update the language profile data + + Note: + To be used in conjunction with get_language_profile() + + Args: + id_ (int): Profile ID to Update + data (JsonObject): All parameters to update + + Returns: + JsonObject: Dictionary of updated record + """ + + return self._put(f"languageprofile/{id_}", self.ver_uri, data=data) + + # DELETE /languageprofile + def del_language_profile( + self, id_: int + ) -> Union[Response, JsonObject, dict[Any, Any]]: + """Removes a specific language profile from the blocklist + + Args: + id_ (int): Profile ID from database + + Returns: + Response: HTTP Response + """ + return self._delete(f"languageprofile/{id_}", self.ver_uri) + + # GET /languageprofile/schema/{id} + def get_language_profile_schema( + self, id_: Optional[int] = None + ) -> Union[JsonArray, dict[Any, Any]]: + """Gets all language profile schemas or specific one with id + + Args: + id_ (Optional[int], optional): Language profile schema id from database. Defaults to None. + + Returns: + Union[JsonArray, dict[Any, Any]]: List of dictionaries with items + """ + + path = f"languageprofile/schema{f'/{id_}' if id_ else ''}" + return self._get(path, self.ver_uri) + + # POST /qualityprofile + def add_quality_profile( + self, name: str, upgrades_allowed: bool, cutoff: int, items: list + ) -> JsonObject: + """Add new quality profile + + Args: + name (str): Name of the profile + upgrades_allowed (bool): Are upgrades in quality allowed? + cutoff (int): ID of quality definition to cutoff at. Must be an allowed definition ID. + items (list): Add a list of items (from `get_quality_definition()`) + + Returns: + JsonObject: An object containing the profile + """ + data = { + "name": name, + "upgradeAllowed": upgrades_allowed, + "cutoff": cutoff, + "items": items, + } + return self._post("qualityprofile", self.ver_uri, data=data) diff --git a/pyproject.toml b/pyproject.toml index 77a0b30..758676a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,7 @@ packages = [ python = "^3.9" requests = "^2.21.0" types-requests = "^2.25.11" +overrides = "^7.3.1" [tool.poetry.dev-dependencies] black = {version = "^22.3", allow-prereleases = true} @@ -45,10 +46,12 @@ pytest = "^7.1.2" pytest-cov = "^3.0.0" pylint = "^2.14.3" responses = "^0.21.0" -pytest-responses = "^0.5.0" sphinx-toolbox = "^3.1.2" autoflake = "^1.6.1" +[tool.poetry.group.dev.dependencies] +ipykernel = "^6.17.1" + [tool.black] line-length = 88 target_version = ['py39'] diff --git a/tests/__init__.py b/tests/__init__.py index 4fdee49..f5d3676 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,7 +1,39 @@ import pathlib +import xml.etree.ElementTree as ET -API_TOKEN = "1234567890abcdef1234567890abcdef" -HOST_URL = "https://127.0.0.1" +MOCK_URL = "https://127.0.0.1" +MOCK_API_KEY = "123456789abcdefg123456789" +SONARR_API_KEY = ( + ET.parse("tests/docker_configs/sonarr/config.xml").getroot().find("ApiKey").text +) +RADARR_API_KEY = ( + ET.parse("tests/docker_configs/radarr/config.xml").getroot().find("ApiKey").text +) +READARR_API_KEY = ( + ET.parse("tests/docker_configs/readarr/config.xml").getroot().find("ApiKey").text +) +LIDARR_API_KEY = ( + ET.parse("tests/docker_configs/lidarr/config.xml").getroot().find("ApiKey").text +) + +RADARR_IMDB = "tt1213644" +RADARR_IMDB_LIST = ["tt0060666", "tt1316037"] +RADARR_TMDB = 129 +RADARR_MOVIE_TERM = "Movie" + +SONARR_TVDB = 305288 + +LIDARR_TERM = "Silvertin" +LIDARR_ARTIST_TERM = "Silvertin" +LIDARR_ALBUM_TERM = "Dawn" +LIDARR_MUSICBRAINZ_ARTIST_ID = "a2324db2-9f11-41cf-bdef-4ccea8aae4bf" +LIDARR_MUSICBRAINZ_ALBUM_ID = "1dc4c347-a1db-32aa-b14f-bc9cc507b843" + +READARR_GOODREADS_ID = "489521" +READARR_ASIN_ID = "9780691017846" +READARR_ISBN_ID = "9780691017846" +READARR_AUTHOR_ID = "7182094" +READARR_AUTHOR_TERM = "Maurice Maeterlinck" def load_fixture(filename) -> str: diff --git a/tests/conftest.py b/tests/conftest.py index 3462a47..b7d33ad 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -5,24 +5,51 @@ from pyarr.readarr import ReadarrAPI from pyarr.sonarr import SonarrAPI -from tests import API_TOKEN, HOST_URL +from tests import ( + LIDARR_API_KEY, + MOCK_API_KEY, + MOCK_URL, + RADARR_API_KEY, + READARR_API_KEY, + SONARR_API_KEY, +) @pytest.fixture() def sonarr_client(): - yield SonarrAPI(f"{HOST_URL}:8989", API_TOKEN) + yield SonarrAPI("http://sonarr:8989", SONARR_API_KEY) + + +@pytest.fixture() +def sonarr_mock_client(): + yield SonarrAPI(f"{MOCK_URL}:8989", MOCK_API_KEY) @pytest.fixture() def radarr_client(): - yield RadarrAPI(f"{HOST_URL}:7878", API_TOKEN) + yield RadarrAPI("http://radarr:7878", RADARR_API_KEY) + + +@pytest.fixture() +def radarr_mock_client(): + yield RadarrAPI(f"{MOCK_URL}:7878", MOCK_API_KEY) @pytest.fixture() def lidarr_client(): - yield LidarrAPI(f"{HOST_URL}:8686", API_TOKEN) + yield LidarrAPI("http://lidarr:8686", LIDARR_API_KEY) + + +@pytest.fixture() +def lidarr_mock_client(): + yield LidarrAPI(f"{MOCK_URL}:8686", MOCK_API_KEY) @pytest.fixture() def readarr_client(): - yield ReadarrAPI(f"{HOST_URL}:8787", API_TOKEN) + yield ReadarrAPI("http://readarr:8787", READARR_API_KEY) + + +@pytest.fixture() +def readarr_mock_client(): + yield ReadarrAPI(f"{MOCK_URL}:8787", MOCK_API_KEY) diff --git a/tests/docker_configs/deluge/config/archive/state-2023-02-28T09-11-00.tar.xz b/tests/docker_configs/deluge/config/archive/state-2023-02-28T09-11-00.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..bc687950bf1a8de27f8742463bfd29533781e18c GIT binary patch literal 420 zcmV;V0bBn4H+ooF000E$*0e?f03iVu0001VFXf})C;tItT>uvg+ysD7GA8aFeH-)g z%QNik_&4zC)_Xa@yc<>@b#9&+*YTBN)!VIG#ciz=hC-Pj>Ht(`7Bh@f=0*x$D}GW7 zT&-^g-9y0HZvu~&r3kl_NL7sY*=nyLnNAuVrDle`otY8UUZ{wu(>)08x;L}_(~6oq z!%u6a;0@D1>M!J}Ljv#02Xr$<<)IMr`?I_rO2&_KD&FJfJ6EI4-sd4`Px;5S`e*ai z>Z0A=QlByJjHryY+M(#vm;;y#zVPu5nFeDik=vZr1ZOsaqBx4Fz6r~u?3o(=(xcy2<$8>E#xm$EN z+pS9U68EC0VqXGqfw2*h5Iy>t#cCSn+L_J3s;vNjoD_x1PlU7p0e}O5Pyhg4BA^?w O#Ao{g000001X)^%9LDkh literal 0 HcmV?d00001 diff --git a/tests/docker_configs/deluge/config/archive/state-2023-03-01T14-59-38.tar.xz b/tests/docker_configs/deluge/config/archive/state-2023-03-01T14-59-38.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..229720ceb26b6b07925794bb6c1d0979274bd6a0 GIT binary patch literal 424 zcmV;Z0ayP0H+ooF000E$*0e?f03iVu0001VFXf})C;tIuT>uvg+ysD7GA8aFeH-)g z%QNik_&4zC)_Xa@yc<>@b#9&+*YTBN)!VIG#ciz=hC-Pj>Ht(`7Bh@f=0*x$D}Mpv z5$IHb0boFacOn2J*cHCyS8Nbzmli~)bzI1i0J)TkO>E48wouQRe_aee2o0`H(*EDE za@)wgXo-vG&*3iwB9|o!%Cdk5%jN3?qy``wC+{p{l(_R57)36VA;u>W))q+#@(Yrz znDS6UFOU+x9`s}k`aJ*SyiI7@X};xvXS)|2^Q$Cgpl~lV)z3k;8jm-DVzfCC6mt6m zpm<_XICIR70k?%J=_R8qAZwm7q|nP^l(*_)04Kr@{T|ccyynSY@5hV|@a0R0Yv~6N zciISre5}gmlLpoq_!Lms%m?m)#`xDSooHK&lX|LC56R%ee)u6DJW^CFT4soVB+9&Y z>YzDHh{FF~`9TP3J@N9%_NiHfah7}$K)_|&Tb0=W0001wmbgBEt?aS@0f7U6Pyhh? S@%+%S#Ao{g000001X)_SWyLxG literal 0 HcmV?d00001 diff --git a/tests/docker_configs/deluge/config/archive/state-2023-03-13T15-21-08.tar.xz b/tests/docker_configs/deluge/config/archive/state-2023-03-13T15-21-08.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..6989f413858e40ac1b0c241a8c0ddcbc60d9f80d GIT binary patch literal 416 zcmV;R0bl<8H+ooF000E$*0e?f03iVu0001VFXf})C;tInT>uvg+ysD7GA8aFeH-)g z%QNik_&4zC)_Xa@yc<>@b#9&+*YTBN)!VIG#ciz=hC-Pj>Ht(`7Bh@f=0*x$D}Sc5 zO@Q#ByZh?WocF6MMmCz}WC(XS-lVr({#SqF6(8x%z~7%iR4!kP@WFqnI19+LD8DgpWj4M^!MD&a|ZUTS?pEco( zotL-#F|xUysG}ZIlE79B#d8Zo|M+@r0001aYwEk?ABHdh0r~=fPyhf)C3%do#Ao{g K000001X)@;FvlwZ literal 0 HcmV?d00001 diff --git a/tests/docker_configs/deluge/config/archive/state-2023-03-19T19-46-46.tar.xz b/tests/docker_configs/deluge/config/archive/state-2023-03-19T19-46-46.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..edeca40293df052f6f9902814cfab8deba007ff5 GIT binary patch literal 416 zcmV;R0bl<8H+ooF000E$*0e?f03iVu0001VFXf})C;tInT>uvg+ysD7GA8aFeH-)g z%QNik_&4zC)_Xa@yc<>@b#9&+*YTBN)!VIG#ciz=hC-Pj>Ht(`7Bh@f=0*x$Aee)NI9k z(4n}R83o#&fp*6JS#(<=y2on&q(qW0o5?j9BWVFvk~-k~00000Y$6D2GOx%00r~=fPyhf)C3%do#Ao{g K000001X)^^XTXU7 literal 0 HcmV?d00001 diff --git a/tests/docker_configs/deluge/config/auth b/tests/docker_configs/deluge/config/auth new file mode 100644 index 0000000..acb303e --- /dev/null +++ b/tests/docker_configs/deluge/config/auth @@ -0,0 +1 @@ +localclient:942f6f4ab8b0b0c14aed9417affdf2ff350a173f:10 diff --git a/tests/docker_configs/deluge/config/core.conf b/tests/docker_configs/deluge/config/core.conf new file mode 100644 index 0000000..b1cf6fd --- /dev/null +++ b/tests/docker_configs/deluge/config/core.conf @@ -0,0 +1,95 @@ +{ + "file": 1, + "format": 1 +}{ + "add_paused": false, + "allow_remote": false, + "auto_manage_prefer_seeds": false, + "auto_managed": true, + "cache_expiry": 60, + "cache_size": 512, + "copy_torrent_file": false, + "daemon_port": 58846, + "del_copy_torrent_file": false, + "dht": true, + "dont_count_slow_torrents": false, + "download_location": "/downloads", + "download_location_paths_list": [], + "enabled_plugins": [], + "enc_in_policy": 1, + "enc_level": 2, + "enc_out_policy": 1, + "geoip_db_location": "/usr/share/GeoIP/GeoIP.dat", + "ignore_limits_on_local_network": true, + "info_sent": 0.0, + "listen_interface": "", + "listen_ports": [ + 6881, + 6891 + ], + "listen_random_port": 51765, + "listen_reuse_port": true, + "listen_use_sys_port": false, + "lsd": true, + "max_active_downloading": 3, + "max_active_limit": 8, + "max_active_seeding": 5, + "max_connections_global": 200, + "max_connections_per_second": 20, + "max_connections_per_torrent": -1, + "max_download_speed": -1.0, + "max_download_speed_per_torrent": -1, + "max_half_open_connections": 50, + "max_upload_slots_global": 4, + "max_upload_slots_per_torrent": -1, + "max_upload_speed": -1.0, + "max_upload_speed_per_torrent": -1, + "move_completed": false, + "move_completed_path": "/downloads", + "move_completed_paths_list": [], + "natpmp": true, + "new_release_check": true, + "outgoing_interface": "", + "outgoing_ports": [ + 0, + 0 + ], + "path_chooser_accelerator_string": "Tab", + "path_chooser_auto_complete_enabled": true, + "path_chooser_max_popup_rows": 20, + "path_chooser_show_chooser_button_on_localhost": true, + "path_chooser_show_hidden_files": false, + "peer_tos": "0x00", + "plugins_location": "/config/plugins", + "pre_allocate_storage": false, + "prioritize_first_last_pieces": false, + "proxy": { + "anonymous_mode": false, + "force_proxy": false, + "hostname": "", + "password": "", + "port": 8080, + "proxy_hostnames": true, + "proxy_peer_connections": true, + "proxy_tracker_connections": true, + "type": 0, + "username": "" + }, + "queue_new_to_top": false, + "random_outgoing_ports": true, + "random_port": true, + "rate_limit_ip_overhead": true, + "remove_seed_at_ratio": false, + "seed_time_limit": 180, + "seed_time_ratio_limit": 7.0, + "send_info": false, + "sequential_download": false, + "share_ratio_limit": 2.0, + "shared": false, + "stop_seed_at_ratio": false, + "stop_seed_ratio": 2.0, + "super_seeding": false, + "torrentfiles_location": "/config/torrents", + "upnp": true, + "utpex": true +} \ No newline at end of file diff --git a/tests/docker_configs/deluge/config/deluged.log b/tests/docker_configs/deluge/config/deluged.log new file mode 100644 index 0000000..dd9c9be --- /dev/null +++ b/tests/docker_configs/deluge/config/deluged.log @@ -0,0 +1,3 @@ +Exiting... +Exiting... +Exiting... diff --git a/tests/docker_configs/deluge/config/deluged.pid b/tests/docker_configs/deluge/config/deluged.pid new file mode 100644 index 0000000..66d1b1c --- /dev/null +++ b/tests/docker_configs/deluge/config/deluged.pid @@ -0,0 +1 @@ +128;58846 diff --git a/tests/docker_configs/deluge/config/hostlist.conf b/tests/docker_configs/deluge/config/hostlist.conf new file mode 100644 index 0000000..ad315cc --- /dev/null +++ b/tests/docker_configs/deluge/config/hostlist.conf @@ -0,0 +1,14 @@ +{ + "file": 3, + "format": 1 +}{ + "hosts": [ + [ + "e2a02e4d50f6454ba6db0f2891749d4a", + "127.0.0.1", + 58846, + "localclient", + "942f6f4ab8b0b0c14aed9417affdf2ff350a173f" + ] + ] +} \ No newline at end of file diff --git a/tests/docker_configs/deluge/config/session.state b/tests/docker_configs/deluge/config/session.state new file mode 100644 index 0000000000000000000000000000000000000000..121ba2b475c693743197c4e57f8e45baffa37212 GIT binary patch literal 5411 zcmZWtd036<`)8D842H-kCQXH+(>c|7)zer~G$LAQk=N;*w>mmY&eCFJDOp0wI($Qx zOp{WUYC@utN@zoAnL*PGO_pI~_xn6YznSlKeXsM!b3M;}Klk#vm*+jV#EwY9H4=dX z5ru`RIJH_D#j!G_GC~`vmI^q5kc7yT;s{nH(r_}VT&j@@Ie}g8p++j_lv<6{j?br@ zoFY`I5_7CVDdAYDM9SxEZ3!2n;S>^1!m22zB8=6DLS!67+wzGtOrcb9tVE=WV5JHT zr&4els??51HJqH4Nkg%ha}b0hxhRH(sVpU_rBkU&d);BENGfB+O07a8wdHe;y0b`* zQ>mrGPj=Cpx&v0lMap8O0vy|Zx~oyDRGdP?syUHL9NtTZ6oIWyOfOjt!JkA$s-#gO zaqK?`QGF^-Bw>{b2!>cbwrY(^D%Sktu=Ep>l(Co6tF4#7kluZWN~92n10!Gzxo~#8 zS_9lAQwfFCS}Kvj?CmcFM?=n+#r1tN;FmHy$K3Quu}kTlYT0;$A!jeV?OC}P^tSVJ zseEnIxP)QpRF0REFAKh*dt`^ZaQW7p6gTx9yh8)@kA@aj67ZpPx@4oB3jZ2~DU5*3w>x5535nWek!pBoN z1*^OBKjA;;jVJVL8?4!oV#u`~o?4>9zI1Q4MK<`fCKI1GU|)aM(u9w-<@@|2XMlrs zwZRV9p&jhTqxL)bKUzfniF_43ite>#q00VbDrs&~bb_FSr0`|;xV znoz7&*E*gcKE`+QmerbrZ)tG>^`Glw<)Q5ay>#aE6zeecyNm z9s|F&;$t|CQ?-xfyQg!3lar#^xf|#0xqGOb6Be7=NA9BX7iSyh123{+_W2W_zp{;{ zctoE&@Zr>Ds%OWLF$oO0ruGZh();x#8))9N>|gb>3Gy%U)l2qGUxwuN$#C?U40`RO zsRgAtH}OudhMm*;cIt3t<8vK+wbTce5MHc zThynh-)-rq5@tIvH{f*SF z#~Wyzj7w#IP&r|zifqJ)t5fjs2b168{>QT!{?Bk8c(6Q_VE8UD}O;^my{vA<0Zy}T^V8>RGa=`J@^_7;^n&aqLA|a#IIRT z?QZpq4ZDZB)L-b^c=HYVO?})o!wC$z(cCm-Qwu|E=R9j^tzk&O##zo=1|pC6nKNBo zQ2&p%vh==H$Zt7;h)>Y{Y*RA>hJ3a1yt5JVY*kuw<0B37V}!m9)n~zHQySn0?~nTY zH$sLSSlPPV=mA6gE?qF!|BN9^E1a(`|B4~aE@@^|uC>v@D{t!=QWW8qD33;eT*)?5 zImzpr3o2F6m%sNJ<%>(sOQCB~|Kg0|pWw$TvO=_o92Yk8~9P_s4f<(7i=!t?~-u!26@2f)8ANlN-9PC5zq$zAof5zK_1nGBXQ`U#`8DD)!~7Ao!{?EmlL^j`v@ZH?;yZ?H z%x`?(@eShh<(C(FAV+`WksXxp)~1DzD}QImx*e0eDL#8Wjepc4?=lRd3XO4pucy_% z$AJvlwsdr1Ecw}dQJOc6E@cGT1&bs)tGJfE*Zi+jLI0OF_ zIqINY88hGz`r)l(cdR=U)W6suDz7Mloh?UQ!S2V@9w)t-#Rm~DdG$2CfhM3|bI`kb z9(u0T^gA~Q^yBL<(fr6WS>yT|xSt;1982YR6}S(i_r0?8_o}J9JuRvCU!oq5Zm%&J z%#hE#^OfbPpr05y>slTBci7B3hx!i~{R3l`z>u=y+9^BH*KVyHe5!64jYIJ7E!GSv zy}5H7l^d|TW)WS(Mjf*l*q0%J`@j3%&Wa(cliez){<8hgYK{9N4@ck5T8aK-!4Ejs z@f2}gZnuTfPajF`l&?a578sdcuV%=(A5dvtvl~ao)69;PLWIJTdeP+t3Ta4@3VXEh8OQqXNHM`seN~YvN)qh$j^-T zM!^-ZbFbI7ap2$UX@1{qBH|<$Lk3)GWLm}5Ab6DjIoxTC|{^H;K?0bMyp19WB9R05>E8Bve`wbua zp8Dlqb^M^G9`GzaA6SWcU4B;UWQ+J}9e=**JD(w$R}LN7F#&#CRaVS}zTAWh9$k*; zAHJ!9Vth|5H8}Y_l~=TWgC3RV(IbzEb707h###H;pQCYUzbO|%|DfiCM|sHmV`Z~x zek@80*hl%<%*^sG^dD!FZUL2Z%iZ^=;T(p9^OMzdUwG&8nFz$I!lL3?74p1n|C!Hn z;~8?{ubaC17*Qt`TpGm?yTT33+R?CMcfh2pYKC0)@IKrPd@qlFGx-ku3D{j3EZ<1u z<+fG6miEh=VRsrJCq8Kp#l3aOyvO72FeGGI|8Oz#ZIj^3YHA-ZBzE&$jIyBVF3yFS^f?E=N)M+4K}VRza9`(kIrYrxk@RDaRxC%XQhlD#@ugE(CD$;zem zg}!%jF7VQy=%K^AXjD^XH~M(l{yZ~N*opq_LJlL(oF?nuVXr>osxH*0SE270JC@*m zx_>Fb8+cmJKR54E0YiRt`1?<_H}HA>?7MX6Z5o)Z;?+y^9IxJ zqLj^nx$0Pkd@Bql&dBf6f_eSvz0)p7&E_HBEY5Q!)bGHc|8&wmZ5I?3Y>IxNKjPgK z{yyAGYtSrusq=q&CHkAIa%m^cL-a+vr&!OeocF;9b#yl4)?0h@rxwfceXl@X-k>?U z{;=nD@YmvXG#=OWjK`qQt>)!xg{ZIQr*%|s(E5?i{gKB-w?{bAy-VTpAvFHJf1NX> z`-XQ`M-FIctskLdY3im`UH`_$MO{nu_qQ7&r(`A+K@# z^J@79=-c_1e;ndbWO6K54>-;|8-MsH@LS+597n$cJuSzqk|2MFT8S2x8zNuk1ynA~ zhrFBTSDQkv=Zi4~w_WKwF3S~*f#;TzMYT$XEKJy(Pvd}h!cD%1A#OhDe^P(-*FBI7 z=nGuZqpgnvZ?CL`rktCo^NVE%DgQh&XnbNi-c9ERk|}?p-z+NedHEdQ8=t*Ql^{Rj zqMOh4?~nLr7wo(QyQh_Pg$J$#eg~4gOi&kXyRy5|(MPw~7z{USMIEjF>Hgc{DCo;|d_&JYEVh<^4ShLxO(*4o&eQz)fy%$!r@7CvB=p}G z;~qa)jQ91`q<$jg6Kj&)F!nRxoXw4mvqXPXd??Y^XGqDJjrz2na{@AdUuI0-wUlRG z9~m-HariaWQ{~THpN>2&^uF=Xa6dzWm*yEZpx&%IlG+jzVOL9Ww?6v5&A3dar3vSH z)om?vpyxzf_uEF`d9qaEc7Y+koOw8ZI_yw%tk->qet&oFmw~Y7=C0v^>G*D98@4T9 zhJIT$$UH|=fqrUW=g_|&?5W*+X+R-E1lK>l8v}cd9eWOE+@Nx!?5KU`zk1rCe+hQn zPqK-r#k-w!QBh?M`zJe2zKwj0G?!URry_6q__^l~Lw%==a*r=TUZvI#qxaj={oFU9 z?-jm3`3*0GA^BD|>#W?-KWn4+Q9S+jbuK6#g8v5#udku}OUInt+yOsr#^sb}FVkGKkMXlf&lAs?Sz?l&Iq`~jY(w#5_uiP%r4_j%WE`AE}&uh;cx zx^H`UY(v^n1dxXB4Ky` z^f40*(8u|zihTHA;*(fc;spEtx-aW{`GP7xLIe*O93A)q zI}Weur_&W$PRp@s=}OF?Fx1hFdc-1eILC4^ky2Hxl)(|7d^*yx2?e(Fx>%`Da8RXG zuxd<`By`v$&`oLB5T#Os(T*rmH~LZwgnT-@;fXLY(@51ku~JSL2M56vIs)TVyb!4d zN1Wzg0_Dbig<3Af1Wu_4`7hePmwKmB|6c1QY5#{n<;kQW|9`Gjg%Mk!Jzs$Fkwl4c zmu_0ds%6S(_MZ_Kyb+Rckt~!|Msf-a-*m%1-K4B{PKWuGR?e|>B!{__{L@%#Dv?Rm z81a1?;Dw6BoEpPAK2P@}Lcvr2j#StYjrG@w)?7&@bRZ5HqyXjmPI7Sl9k v1cEI?czTKUG`Lzd?u)`O__GrbS5Br4<7{ks0-j*}zo6lO&vW4MIqv@es@}2X literal 0 HcmV?d00001 diff --git a/tests/docker_configs/deluge/config/session.state.bak b/tests/docker_configs/deluge/config/session.state.bak new file mode 100644 index 0000000000000000000000000000000000000000..9182f07998651569cde5fb6eb1d2049d5a0e3140 GIT binary patch literal 2011 zcmZuydr(wW7}xPp>X=hRD$WQ@N)KV%yXzj7569H-tprLSHgvsv_w4R;s}n?l#19`Q|kCigPQuzvf&>!JF{oL_jkVExxdeC z2e;33b50PvUY#0-lt+14)BM4JA#s#*fJ@dyKd%cWl_f1bUVW$|?^5%zv&)W@!|H8G6D-9S&GUhVPBDL@psP>NGQ(qb-jRc)s_`ui4t%X8?hm)u}mceem=~&RT_e>t@e4YS1s; z8P$9IT>_;wW3-tVzo~V1Wm8{fFKLWwC-8RO@A>m@F@0mvuWu5_-Y|0Mg-QbB*ZC_- zI|yv+n|}YopExgjOmx;T0>?WBmG#ZR_@ASu#8wlyxa1{w>E8tQ=guffTZ!?l`#R3A z#dCu8+t7;yKB&(gk>thsG;*h>qrN(3O!c8E0yFn!^=J24b?ADq>j44ZogZ@M<`J0X zYf3v7OR(X%b=M`txva@AjY-#yr z0?8xJ#FgDgeCqn=MdSQh+V`BT7=!200p(@Q1Oi{)dRVp`@mW!Gq8a-Q>{)5hdS3c)_IH&`N$d`MvPvQOJO@LgonPjm2lT z&Q5tyMX3|Nbd!;w;YNZHL^DLTAy#!#&I*D|b(2>F!;gfMAbL zok&I@iV_9UM|qkbkn{qHpvnr}s*sz5v$1edQ&ozkG?h1y1>KA!xe&YXE=@C$l7v8r zvJK9G?1d~%b&E?fMNOfm1^EiF(sp?1k#>cLz)h;Ja5R_BEE;3@iq?d39^UR0#wDN5n56qh7a!- zp%Pv9m zBikndTPwWV5Cd#S;fKXU4+2be+!U(mgoKpIHjXnA5SoBaJ!sa&vE7T+Krlj0g?r|# zP6lfd1aS*!egs=ac*4f94BViB@q!l@mYstXDhIvv4V#6ta4}COi3+R5X|YoJ4_Hzj ASpWb4 literal 0 HcmV?d00001 diff --git a/tests/docker_configs/deluge/config/ssl/daemon.cert b/tests/docker_configs/deluge/config/ssl/daemon.cert new file mode 100644 index 0000000..e0f4b91 --- /dev/null +++ b/tests/docker_configs/deluge/config/ssl/daemon.cert @@ -0,0 +1,17 @@ +-----BEGIN CERTIFICATE----- +MIICpDCCAYwCAQAwDQYJKoZIhvcNAQELBQAwGDEWMBQGA1UEAwwNRGVsdWdlIERh +ZW1vbjAeFw0yMzAyMjUxNTUwMTZaFw0yNjAyMjQxNTUwMTZaMBgxFjAUBgNVBAMM +DURlbHVnZSBEYWVtb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCP +sWE2Gk0meLr/SgMnSz+3g42e+1Xb3tiDuzOrQWRJT2ZNuhfU7ZvTCX+Y+sEtnTB+ +onSfSJ+/qQBKY7RG9a3s7mec8HbzNEXYakwxTd6ae5rJl/zz6sE9Xa+D5a2k/mNO +jyI1VYTgAl7MoVVCWAysZHguidPNL+ussDoRkrYe71SKr3mm+Tehm6q4jMR0dIVX +EcLK6bJjGdTY14EDTJzxUCxDw+blyr6EdVPIyh2G57+SvxHflkdNF53mtXJcJFQS +zqlDgjo60CA0Mg/tAD3bslt6dII29oMfH0F0VM2rg78skbf0tPZ7cfpE4VDQ/7lD +cVIqYNReXgQ5vJ+/RFl9AgMBAAEwDQYJKoZIhvcNAQELBQADggEBABBLQg1/IBhW +KGTpMuiRrTuzTcttqKG9Hpn3MECy7V/JFOHWUkkyGVAA4D/vXdCLQzYOR7oobhzS +hPGQbaqCMhlRuiOdtq3Smfw9xirvIW7QPa0JeivI4Uyn/p4T1+3SUffN1VBKLoFa +yc0L/3I99OkW8aAUhycaAgm0SblfOm4n4Sf06RgxApE3PqigEQ9WrzJpNSiQZdTz +WPqT6dzhcErm5pLVW7uc9HNUg/B/SIQ/tCmjZMOyN7NrQSRTZcabOrFmaoToImPd +iLiA3AXBVF8v/qkfePXtBb0RhY2L8jXx3++fWVqkgXY8JqA65XWuk7bJ2Lo0cOg1 +zIMtFiVOAWo= +-----END CERTIFICATE----- diff --git a/tests/docker_configs/deluge/config/ssl/daemon.pkey b/tests/docker_configs/deluge/config/ssl/daemon.pkey new file mode 100644 index 0000000..993621a --- /dev/null +++ b/tests/docker_configs/deluge/config/ssl/daemon.pkey @@ -0,0 +1,28 @@ +-----BEGIN PRIVATE KEY----- +MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCPsWE2Gk0meLr/ +SgMnSz+3g42e+1Xb3tiDuzOrQWRJT2ZNuhfU7ZvTCX+Y+sEtnTB+onSfSJ+/qQBK +Y7RG9a3s7mec8HbzNEXYakwxTd6ae5rJl/zz6sE9Xa+D5a2k/mNOjyI1VYTgAl7M +oVVCWAysZHguidPNL+ussDoRkrYe71SKr3mm+Tehm6q4jMR0dIVXEcLK6bJjGdTY +14EDTJzxUCxDw+blyr6EdVPIyh2G57+SvxHflkdNF53mtXJcJFQSzqlDgjo60CA0 +Mg/tAD3bslt6dII29oMfH0F0VM2rg78skbf0tPZ7cfpE4VDQ/7lDcVIqYNReXgQ5 +vJ+/RFl9AgMBAAECggEAAKHuxB60hT1V0WbhgaxGoQeuuWrw01F1UYsi7JeSmfIE +CMaPcUwEehbaHXHJJOrCumP7sHHQ5jaXvjwXIJLXS6o3AY1bcLGjtxKsuDDYEIUH +xuho4CgB5sPBUIrTy1ylUkS2CVcRiSzpfuwc5HhfweiFUOshaA9UccOq1cX4EEXK +wEvtK92s+KYd5doSqSB0EKZF3z30oY8XLL+lHIe0NZge18cgJrDJ0HL9CMzJeGx+ +ECzsPR1V1wAab1PiU2AjVh2vW5BQsCfvZUEnwL2FGk/7u5DogrBbLvPeYckyMylQ +ajJ9KpSH8RAlkCLXRD5i/kpeDlQhgcFZF3qkTEGhcQKBgQDIM1n34PSnGiGpP14t +EBk7raJXhoVDawlMEszl/J2aLmqleb6wlVC62HYnlw/snk7utNVeIv7pP9FLBKC2 +VtA2gMVYKwZ9NJ+rsjeF/xH4+QtK9Fttw0AN5ZR8nypXUTzxGkBF/AfG3IA0t8Cb +UGai2UeL6qoN3dGB/YwEylSepQKBgQC3vhvblHZKJAPyapETcZDNV3/Q2vNovqJL +sHYZUWJ8gdPV2nbbFKJiaEorDQ+UjFh+o1w/BGaaiY3QD38UhnhPCV2jZfkTH16N +L2kB0Gf5nAgwbK75TTs61FaP5fTKVWI+wTYO+IBbBHemPj0wxMmucA31jE3FRatC +DkjC+lLv+QKBgBWrqVNxoEnuRDKDz3flRDX3h5kd0JMJpQn9BvzmKVElMRoUYZXP +s9tlzvReH7UnNbgVDvuPojQxWkBakeLq5sLfkX0Huz4WUipNskDo6VMf8h788GCj +P+3BKh+LQxQMkSIwC0EIFPdrqt0J/ulQ/KsoBdyZXCsAFcuSXHOwSxSZAoGBAIpF +56Lz85zRw6KfbbPLJ+RPr6FV1A2EQJBjKEzfQRVfgjISKJWvzo/t2brSJmJsx3/t +odLOlgQ/9deYgdLJaypXav83Exy/46CuCADUfBqMwGDouThlVWhtOQMrU28cmEWP +kwXrHnTgRMZ3WgckYH4EV4zs2+3UAxA/vaP1S4rJAoGAXO0z9ysHcuCDgGZX1RNU +Jddp6WMGtw+Y1yGj5zSDdfiK07id53zjWP8DEuAo9Jy6nalSkFVFJz8/9Jm/YdCo +7JpMF6OaWK47Ltdp8mcT6A3MesbFs7xLry0fcVU/DR8X0UIDmq0/GR9zZzXY/Hwf +AlYl8AV1GXUH7WvWoXc5RJU= +-----END PRIVATE KEY----- diff --git a/tests/docker_configs/deluge/config/state/.safe_state_check b/tests/docker_configs/deluge/config/state/.safe_state_check new file mode 100644 index 0000000..e69de29 diff --git a/tests/docker_configs/deluge/config/state/torrents.state b/tests/docker_configs/deluge/config/state/torrents.state new file mode 100644 index 0000000000000000000000000000000000000000..b57309cade3c5b60b7f668f46b1b798d763d3784 GIT binary patch literal 80 zcmZo*N=`}5DNRq+OU^G!)ho#_DoV{O$xX~lOiwN13W0EaA>81S#FA95LI%yoLdM!c VrU(uO1_r2x;zH)wLYCqrJpiAy8?OKW literal 0 HcmV?d00001 diff --git a/tests/docker_configs/deluge/config/state/torrents.state.bak b/tests/docker_configs/deluge/config/state/torrents.state.bak new file mode 100644 index 0000000000000000000000000000000000000000..b57309cade3c5b60b7f668f46b1b798d763d3784 GIT binary patch literal 80 zcmZo*N=`}5DNRq+OU^G!)ho#_DoV{O$xX~lOiwN13W0EaA>81S#FA95LI%yoLdM!c VrU(uO1_r2x;zH)wLYCqrJpiAy8?OKW literal 0 HcmV?d00001 diff --git a/tests/docker_configs/deluge/config/web.conf b/tests/docker_configs/deluge/config/web.conf new file mode 100644 index 0000000..e462be9 --- /dev/null +++ b/tests/docker_configs/deluge/config/web.conf @@ -0,0 +1,24 @@ +{ + "file": 2, + "format": 1 +}{ + "base": "/", + "cert": "ssl/daemon.cert", + "default_daemon": "", + "enabled_plugins": [], + "first_login": true, + "https": false, + "interface": "0.0.0.0", + "language": "", + "pkey": "ssl/daemon.pkey", + "port": 8112, + "pwd_salt": "c26ab3bbd8b137f99cd83c2c1c0963bcc1a35cad", + "pwd_sha1": "2ce1a410bcdcc53064129b6d950f2e9fee4edc1e", + "session_timeout": 3600, + "sessions": {}, + "show_session_speed": false, + "show_sidebar": true, + "sidebar_multiple_filters": true, + "sidebar_show_zero": false, + "theme": "gray" +} \ No newline at end of file diff --git a/tests/docker_configs/jackett/config/jackett/Jackett/DataProtection/key-992d35cd-3ce7-4994-b3b3-cf6630deeec7.xml b/tests/docker_configs/jackett/config/jackett/Jackett/DataProtection/key-992d35cd-3ce7-4994-b3b3-cf6630deeec7.xml new file mode 100644 index 0000000..176fab7 --- /dev/null +++ b/tests/docker_configs/jackett/config/jackett/Jackett/DataProtection/key-992d35cd-3ce7-4994-b3b3-cf6630deeec7.xml @@ -0,0 +1,16 @@ +๏ปฟ + + 2023-02-28T09:15:33.243488Z + 2023-02-28T09:15:33.2344714Z + 2023-05-29T09:15:33.2344714Z + + + + + + + e4dLZlzAPmADuJ3hLF7ecnD9bA2gN8EGUKWuySStPnMGme+EuR0WZiLhGnyg0qzyVQGTExHDwZGwWpMgKy+KUA== + + + + \ No newline at end of file diff --git a/tests/docker_configs/jackett/config/jackett/Jackett/Indexers/1337x.json b/tests/docker_configs/jackett/config/jackett/Jackett/Indexers/1337x.json new file mode 100644 index 0000000..e456009 --- /dev/null +++ b/tests/docker_configs/jackett/config/jackett/Jackett/Indexers/1337x.json @@ -0,0 +1,67 @@ +[ + { + "id": "sitelink", + "type": "inputstring", + "name": "Site Link", + "value": "https://1337x.to/" + }, + { + "id": "cookieheader", + "type": "hiddendata", + "name": "CookieHeader", + "value": "" + }, + { + "id": "lasterror", + "type": "hiddendata", + "name": "LastError", + "value": null + }, + { + "id": "downloadlink", + "type": "inputselect", + "name": "Download link", + "value": "http://itorrents.org/", + "options": { + "http://itorrents.org/": "iTorrents.org", + "magnet:": "magnet" + } + }, + { + "id": "downloadlink(fallback)", + "type": "inputselect", + "name": "Download link (fallback)", + "value": "magnet:", + "options": { + "http://itorrents.org/": "iTorrents.org", + "magnet:": "magnet" + } + }, + { + "id": "sortrequestedfromsite", + "type": "inputselect", + "name": "Sort requested from site", + "value": "time", + "options": { + "time": "created", + "seeders": "seeders", + "size": "size" + } + }, + { + "id": "orderrequestedfromsite", + "type": "inputselect", + "name": "Order requested from site", + "value": "desc", + "options": { + "desc": "desc", + "asc": "asc" + } + }, + { + "id": "tags", + "type": "inputtags", + "name": "Tags", + "value": "" + } +] \ No newline at end of file diff --git a/tests/docker_configs/jackett/config/jackett/Jackett/Indexers/1337x.json.bak b/tests/docker_configs/jackett/config/jackett/Jackett/Indexers/1337x.json.bak new file mode 100644 index 0000000..0323226 --- /dev/null +++ b/tests/docker_configs/jackett/config/jackett/Jackett/Indexers/1337x.json.bak @@ -0,0 +1,67 @@ +[ + { + "id": "sitelink", + "type": "inputstring", + "name": "Site Link", + "value": "https://1337x.to/" + }, + { + "id": "cookieheader", + "type": "hiddendata", + "name": "CookieHeader", + "value": null + }, + { + "id": "lasterror", + "type": "hiddendata", + "name": "LastError", + "value": null + }, + { + "id": "downloadlink", + "type": "inputselect", + "name": "Download link", + "value": "http://itorrents.org/", + "options": { + "http://itorrents.org/": "iTorrents.org", + "magnet:": "magnet" + } + }, + { + "id": "downloadlink(fallback)", + "type": "inputselect", + "name": "Download link (fallback)", + "value": "magnet:", + "options": { + "http://itorrents.org/": "iTorrents.org", + "magnet:": "magnet" + } + }, + { + "id": "sortrequestedfromsite", + "type": "inputselect", + "name": "Sort requested from site", + "value": "time", + "options": { + "time": "created", + "seeders": "seeders", + "size": "size" + } + }, + { + "id": "orderrequestedfromsite", + "type": "inputselect", + "name": "Order requested from site", + "value": "desc", + "options": { + "desc": "desc", + "asc": "asc" + } + }, + { + "id": "tags", + "type": "inputtags", + "name": "Tags", + "value": "" + } +] \ No newline at end of file diff --git a/tests/docker_configs/jackett/config/jackett/Jackett/ServerConfig.json b/tests/docker_configs/jackett/config/jackett/Jackett/ServerConfig.json new file mode 100644 index 0000000..0c2569a --- /dev/null +++ b/tests/docker_configs/jackett/config/jackett/Jackett/ServerConfig.json @@ -0,0 +1,26 @@ +{ + "Port": 9117, + "AllowExternal": true, + "AllowCORS": false, + "APIKey": "kk8487s588bhn8uvxskwdtuencjjar5f", + "AdminPassword": null, + "InstanceId": "2n71zqg1oqjao1wghugwackupdrq38g4mp9cv6e6m2vfy7lm2qykdj8vm3ke1i9a", + "BlackholeDir": null, + "UpdateDisabled": false, + "UpdatePrerelease": false, + "BasePathOverride": null, + "BaseUrlOverride": null, + "CacheEnabled": true, + "CacheTtl": 2100, + "CacheMaxResultsPerIndexer": 1000, + "FlareSolverrUrl": null, + "FlareSolverrMaxTimeout": 55000, + "OmdbApiKey": null, + "OmdbApiUrl": null, + "ProxyType": 0, + "ProxyUrl": null, + "ProxyPort": null, + "ProxyUsername": null, + "ProxyPassword": null, + "ProxyIsAnonymous": true +} \ No newline at end of file diff --git a/tests/docker_configs/jackett/config/jackett/Jackett/log.txt b/tests/docker_configs/jackett/config/jackett/Jackett/log.txt new file mode 100644 index 0000000..a423b39 --- /dev/null +++ b/tests/docker_configs/jackett/config/jackett/Jackett/log.txt @@ -0,0 +1,616 @@ +2023-02-28 09:15:29.5222 Info Starting Jackett v0.20.3269 +2023-02-28 09:15:30.5915 Info Environment version: 6.0.14 (/app/Jackett/) +2023-02-28 09:15:30.5941 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) +2023-02-28 09:15:30.5954 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-02-28 09:15:30.5965 Info File /etc/issue: Welcome to Alpine Linux 3.17 +2023-02-28 09:15:30.5970 Info Running in Docker: Yes (image build: v0.20.3269-ls95) +2023-02-28 09:15:30.5989 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads +2023-02-28 09:15:30.5989 Info App config/log directory: /config/Jackett +2023-02-28 09:15:30.6002 Info Using proxy: Disabled +2023-02-28 09:15:30.6002 Info Using FlareSolverr: No +2023-02-28 09:15:30.6082 Info Using HTTP Client: HttpWebClient2 +2023-02-28 09:15:30.6306 Info Loading Native indexers ... +2023-02-28 09:15:30.8857 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api +2023-02-28 09:15:30.8915 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions +2023-02-28 09:15:32.9973 Info Loaded 494 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, cloudtorrents, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornleech, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker +2023-02-28 09:15:32.9979 Info Loaded 570 indexers in total +2023-02-28 09:15:32.9996 Info Adding aggregate indexer ('all' indexer) ... +2023-02-28 09:15:33.0235 Info Adding filter indexer ('type:public' indexer) ... +2023-02-28 09:15:33.0242 Info Adding filter indexer ('type:private' indexer) ... +2023-02-28 09:15:33.0242 Info Adding filter indexer ('type:semi-public' indexer) ... +2023-02-28 09:15:33.2622 Warn No XML encryptor configured. Key {992d35cd-3ce7-4994-b3b3-cf6630deeec7} may be persisted to storage in unencrypted form. +2023-02-28 09:15:33.3340 Info Jackett startup finished in 5.619 s +2023-02-28 09:16:38.1358 Info Jackett stopped +2023-02-28 09:28:23.2128 Info Starting Jackett v0.20.3269 +2023-02-28 09:28:24.2356 Info Environment version: 6.0.14 (/app/Jackett/) +2023-02-28 09:28:24.2368 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) +2023-02-28 09:28:24.2380 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-02-28 09:28:24.2380 Info File /etc/issue: Welcome to Alpine Linux 3.17 +2023-02-28 09:28:24.2387 Info Running in Docker: Yes (image build: v0.20.3269-ls95) +2023-02-28 09:28:24.2404 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads +2023-02-28 09:28:24.2404 Info App config/log directory: /config/Jackett +2023-02-28 09:28:24.2416 Info Using proxy: Disabled +2023-02-28 09:28:24.2418 Info Using FlareSolverr: No +2023-02-28 09:28:24.2493 Info Using HTTP Client: HttpWebClient2 +2023-02-28 09:28:24.2701 Info Loading Native indexers ... +2023-02-28 09:28:24.5193 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api +2023-02-28 09:28:24.5252 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions +2023-02-28 09:28:26.7100 Info Loaded 494 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, cloudtorrents, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornleech, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker +2023-02-28 09:28:26.7100 Info Loaded 570 indexers in total +2023-02-28 09:28:26.7125 Info Adding aggregate indexer ('all' indexer) ... +2023-02-28 09:28:26.7384 Info Adding filter indexer ('type:public' indexer) ... +2023-02-28 09:28:26.7389 Info Adding filter indexer ('type:private' indexer) ... +2023-02-28 09:28:26.7389 Info Adding filter indexer ('type:semi-public' indexer) ... +2023-02-28 09:28:27.0413 Info Jackett startup finished in 5.346 s +2023-02-28 09:45:58.7057 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 09:46:05.8350 Info Torznab search in 1337x => Found 20 releases +2023-02-28 09:46:13.5622 Warn Request to IPTorrents failed with exception 'The request was canceled due to the configured HttpClient.Timeout of 100 seconds elapsing.'. Retrying in 0.5s... (Attempt 1 of 2). +2023-02-28 09:46:40.8895 Warn Request to IPTorrents failed with exception 'Network unreachable (iptorrents.com:443)'. Retrying in 1s... (Attempt 2 of 2). +2023-02-28 09:46:43.2272 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 09:46:43.2368 Info Torznab search in 1337x => Found 20 releases (from cache) +2023-02-28 09:47:31.7757 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 09:47:31.7769 Info Torznab search in 1337x => Found 20 releases (from cache) +2023-02-28 09:48:21.9194 Error System.Exception: Your cookie did not work, make sure the user agent matches your computer: The request was canceled due to the configured HttpClient.Timeout of 100 seconds elapsing. System.Exception: Your cookie did not work, make sure the user agent matches your computer: The request was canceled due to the configured HttpClient.Timeout of 100 seconds elapsing. + at Jackett.Common.Indexers.IPTorrents.ApplyConfiguration(JToken configJson) in /home/vsts/work/1/s/src/Jackett.Common/Indexers/IPTorrents.cs:line 196 + at Jackett.Server.Controllers.IndexerApiController.UpdateConfig(ConfigItem[] config) in /home/vsts/work/1/s/src/Jackett.Server/Controllers/IndexerApiController.cs:line 97 + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Jackett.Server.Middleware.CustomExceptionHandler.Invoke(HttpContext httpContext) in /home/vsts/work/1/s/src/Jackett.Server/Middleware/CustomExceptionHandler.cs:line 61 +2023-02-28 10:04:16.0034 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:04:21.1475 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases +2023-02-28 10:04:21.1643 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:04:27.7230 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 32 releases +2023-02-28 10:05:49.6471 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:05:49.6515 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases (from cache) +2023-02-28 10:05:51.6414 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:05:51.6428 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 32 releases (from cache) +2023-02-28 10:07:04.5848 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:07:04.5863 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases (from cache) +2023-02-28 10:07:06.5934 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:07:06.5947 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 32 releases (from cache) +2023-02-28 10:09:20.2742 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:09:20.2773 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases (from cache) +2023-02-28 10:09:22.1289 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:09:22.1310 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 32 releases (from cache) +2023-02-28 10:27:04.7846 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:27:09.9358 Info Torznab search in 1337x for Plane 2023 => Found 18 releases +2023-02-28 10:27:12.5553 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:27:15.1834 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:27:15.1840 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases (from cache) +2023-02-28 10:27:17.1655 Info Torznab search in 1337x for Black Panther: Wakanda Forever 2022 => Found 60 releases +2023-02-28 10:27:17.1829 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:27:17.1829 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 32 releases (from cache) +2023-02-28 10:28:12.5496 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:28:12.5522 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases (from cache) +2023-02-28 10:28:14.5623 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:28:14.5633 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 32 releases (from cache) +2023-02-28 10:28:19.6063 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:28:24.8383 Info Torznab search in 1337x => Found 20 releases +2023-02-28 10:28:26.7689 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-02-28 10:28:26.9834 Info New release found. Current version: v0.20.3269 New version: v0.20.3403 +2023-02-28 10:28:26.9839 Info Downloading release v0.20.3403 It could take a while... +2023-02-28 10:28:31.6802 Info Starting updater: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "135" --NoRestart +2023-02-28 10:28:31.6813 Info Updater started process id: 294 +2023-02-28 10:28:39.9761 Info Starting Jackett v0.20.3403 +2023-02-28 10:28:40.9721 Info Environment version: 6.0.14 (/app/Jackett/) +2023-02-28 10:28:40.9733 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) +2023-02-28 10:28:40.9746 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-02-28 10:28:40.9749 Info File /etc/issue: Welcome to Alpine Linux 3.17 +2023-02-28 10:28:40.9749 Info Running in Docker: Yes (image build: v0.20.3269-ls95) +2023-02-28 10:28:40.9771 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads +2023-02-28 10:28:40.9771 Info App config/log directory: /config/Jackett +2023-02-28 10:28:40.9785 Info Using proxy: Disabled +2023-02-28 10:28:40.9787 Info Using FlareSolverr: No +2023-02-28 10:28:40.9864 Info Using HTTP Client: HttpWebClient2 +2023-02-28 10:28:41.0089 Info Loading Native indexers ... +2023-02-28 10:28:41.2484 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api +2023-02-28 10:28:41.2545 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions +2023-02-28 10:28:43.8279 Info Loaded 493 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornleech, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker +2023-02-28 10:28:43.8279 Info Loaded 569 indexers in total +2023-02-28 10:28:43.8303 Info Adding aggregate indexer ('all' indexer) ... +2023-02-28 10:28:43.8422 Info Adding filter indexer ('type:public' indexer) ... +2023-02-28 10:28:43.8428 Info Adding filter indexer ('type:private' indexer) ... +2023-02-28 10:28:43.8428 Info Adding filter indexer ('type:semi-public' indexer) ... +2023-02-28 10:28:43.8506 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3403-638131769094127020 +2023-02-28 10:28:44.3935 Info Jackett startup finished in 6.271 s +2023-02-28 10:50:30.3592 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:50:38.0499 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases +2023-02-28 10:50:38.1297 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 10:50:46.7187 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 40 releases +2023-02-28 11:28:44.0031 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-02-28 11:28:44.9394 Info Jackett is already updated. Current version: v0.20.3403 +2023-02-28 11:28:52.2161 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 11:28:58.8866 Info Torznab search in 1337x => Found 20 releases +2023-02-28 12:29:24.1687 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 12:29:31.6105 Info Torznab search in 1337x => Found 20 releases +2023-02-28 13:29:56.3515 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 13:30:03.7712 Info Torznab search in 1337x => Found 20 releases +2023-02-28 14:30:28.1020 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 14:30:35.7821 Info Torznab search in 1337x => Found 20 releases +2023-02-28 15:30:59.7660 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 15:31:07.4339 Info Torznab search in 1337x => Found 20 releases +2023-02-28 16:31:31.9563 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 16:31:39.8101 Info Torznab search in 1337x => Found 20 releases +2023-02-28 17:32:03.8075 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 17:32:11.5367 Info Torznab search in 1337x => Found 20 releases +2023-02-28 18:32:36.0480 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 18:32:43.2025 Info Torznab search in 1337x => Found 20 releases +2023-02-28 19:33:08.1782 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 19:33:15.2451 Info Torznab search in 1337x => Found 20 releases +2023-02-28 20:33:40.3318 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 20:33:49.1289 Info Torznab search in 1337x => Found 20 releases +2023-02-28 21:34:12.7374 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-02-28 21:34:20.1442 Info Torznab search in 1337x => Found 20 releases +2023-03-01 14:59:37.2374 Info Starting Jackett v0.20.3403 +2023-03-01 14:59:39.8874 Info Environment version: 6.0.14 (/app/Jackett/) +2023-03-01 14:59:39.8885 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) +2023-03-01 14:59:39.8899 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-01 14:59:39.8899 Info File /etc/issue: Welcome to Alpine Linux 3.17 +2023-03-01 14:59:39.8906 Info Running in Docker: Yes (image build: v0.20.3269-ls95) +2023-03-01 14:59:39.8924 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads +2023-03-01 14:59:39.8927 Info App config/log directory: /config/Jackett +2023-03-01 14:59:39.8938 Info Using proxy: Disabled +2023-03-01 14:59:39.8938 Info Using FlareSolverr: No +2023-03-01 14:59:39.9018 Info Using HTTP Client: HttpWebClient2 +2023-03-01 14:59:39.9222 Info Loading Native indexers ... +2023-03-01 14:59:40.1878 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api +2023-03-01 14:59:40.1961 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions +2023-03-01 14:59:44.4337 Info Loaded 493 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornleech, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker +2023-03-01 14:59:44.4337 Info Loaded 569 indexers in total +2023-03-01 14:59:44.4363 Info Adding aggregate indexer ('all' indexer) ... +2023-03-01 14:59:44.4485 Info Adding filter indexer ('type:public' indexer) ... +2023-03-01 14:59:44.4491 Info Adding filter indexer ('type:private' indexer) ... +2023-03-01 14:59:44.4491 Info Adding filter indexer ('type:semi-public' indexer) ... +2023-03-01 14:59:44.7600 Info Jackett startup finished in 9.345 s +2023-03-01 15:00:16.6490 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-01 15:00:24.6431 Info Torznab search in 1337x => Found 21 releases +2023-03-01 15:50:53.9753 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-01 15:51:01.3002 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases +2023-03-01 15:51:01.3373 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-01 15:51:10.3784 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 40 releases +2023-03-01 15:52:44.0609 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-01 15:52:44.0677 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases (from cache) +2023-03-01 15:52:46.0187 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-01 15:52:46.0197 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 40 releases (from cache) +2023-03-01 15:59:44.4955 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-03-01 15:59:45.2720 Info New release found. Current version: v0.20.3403 New version: v0.20.3411 +2023-03-01 15:59:45.2727 Info Downloading release v0.20.3411 It could take a while... +2023-03-01 15:59:50.4000 Info Starting updater: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "134" --NoRestart +2023-03-01 15:59:50.4009 Info Updater started process id: 224 +2023-03-01 16:00:00.4336 Info Starting Jackett v0.20.3411 +2023-03-01 16:00:01.5514 Info Environment version: 6.0.14 (/app/Jackett/) +2023-03-01 16:00:01.5527 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) +2023-03-01 16:00:01.5541 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-01 16:00:01.5541 Info File /etc/issue: Welcome to Alpine Linux 3.17 +2023-03-01 16:00:01.5549 Info Running in Docker: Yes (image build: v0.20.3269-ls95) +2023-03-01 16:00:01.5568 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads +2023-03-01 16:00:01.5568 Info App config/log directory: /config/Jackett +2023-03-01 16:00:01.5583 Info Using proxy: Disabled +2023-03-01 16:00:01.5583 Info Using FlareSolverr: No +2023-03-01 16:00:01.5672 Info Using HTTP Client: HttpWebClient2 +2023-03-01 16:00:01.5907 Info Loading Native indexers ... +2023-03-01 16:00:01.8514 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api +2023-03-01 16:00:01.8576 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions +2023-03-01 16:00:04.1625 Info Loaded 493 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornleech, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker +2023-03-01 16:00:04.1631 Info Loaded 569 indexers in total +2023-03-01 16:00:04.1649 Info Adding aggregate indexer ('all' indexer) ... +2023-03-01 16:00:04.1772 Info Adding filter indexer ('type:public' indexer) ... +2023-03-01 16:00:04.1778 Info Adding filter indexer ('type:private' indexer) ... +2023-03-01 16:00:04.1778 Info Adding filter indexer ('type:semi-public' indexer) ... +2023-03-01 16:00:04.1865 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3411-638132831882369369 +2023-03-01 16:00:04.6829 Info Jackett startup finished in 5.668 s +2023-03-01 16:00:48.7021 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-01 16:00:56.9233 Info Torznab search in 1337x => Found 21 releases +2023-03-01 17:00:04.3526 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-03-01 17:00:05.2990 Info Jackett is already updated. Current version: v0.20.3411 +2023-03-01 17:01:20.4649 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-01 17:01:27.5999 Info Torznab search in 1337x => Found 21 releases +2023-03-01 18:01:52.1289 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-01 18:01:59.8268 Info Torznab search in 1337x => Found 21 releases +2023-03-01 18:46:32.0307 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-01 18:46:39.3831 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases +2023-03-01 18:46:39.4026 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-01 18:46:48.1685 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 40 releases +2023-03-01 19:02:24.0835 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-01 19:02:31.8009 Info Torznab search in 1337x => Found 20 releases +2023-03-01 20:02:56.5009 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-01 20:03:03.7978 Info Torznab search in 1337x => Found 20 releases +2023-03-01 21:03:28.9201 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-01 21:03:35.6552 Info Torznab search in 1337x => Found 20 releases +2023-03-01 22:04:00.9841 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-01 22:04:08.1414 Info Torznab search in 1337x => Found 20 releases +2023-03-10 16:56:31.0117 Info Starting Jackett v0.20.3411 +2023-03-10 16:56:32.0707 Info Environment version: 6.0.14 (/app/Jackett/) +2023-03-10 16:56:32.0719 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) +2023-03-10 16:56:32.0733 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-10 16:56:32.0733 Info File /etc/issue: Welcome to Alpine Linux 3.17 +2023-03-10 16:56:32.0741 Info Running in Docker: Yes (image build: v0.20.3269-ls95) +2023-03-10 16:56:32.0760 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads +2023-03-10 16:56:32.0760 Info App config/log directory: /config/Jackett +2023-03-10 16:56:32.0774 Info Using proxy: Disabled +2023-03-10 16:56:32.0774 Info Using FlareSolverr: No +2023-03-10 16:56:32.0862 Info Using HTTP Client: HttpWebClient2 +2023-03-10 16:56:32.1088 Info Loading Native indexers ... +2023-03-10 16:56:32.3580 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api +2023-03-10 16:56:32.3665 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions +2023-03-10 16:56:34.6616 Info Loaded 493 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornleech, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker +2023-03-10 16:56:34.6623 Info Loaded 569 indexers in total +2023-03-10 16:56:34.6643 Info Adding aggregate indexer ('all' indexer) ... +2023-03-10 16:56:34.6759 Info Adding filter indexer ('type:public' indexer) ... +2023-03-10 16:56:34.6759 Info Adding filter indexer ('type:private' indexer) ... +2023-03-10 16:56:34.6768 Info Adding filter indexer ('type:semi-public' indexer) ... +2023-03-10 16:56:35.0062 Info Jackett startup finished in 5.421 s +2023-03-10 17:56:34.7210 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-03-10 17:56:35.9489 Info New release found. Current version: v0.20.3411 New version: v0.20.3579 +2023-03-10 17:56:35.9489 Info Downloading release v0.20.3579 It could take a while... +2023-03-10 17:56:40.5135 Info Starting updater: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "133" --NoRestart +2023-03-10 17:56:40.5144 Info Updater started process id: 193 +2023-03-10 17:56:48.5453 Info Starting Jackett v0.20.3579 +2023-03-10 17:56:50.1058 Info Environment version: 6.0.14 (/app/Jackett/) +2023-03-10 17:56:50.1071 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) +2023-03-10 17:56:50.1084 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-10 17:56:50.1087 Info File /etc/issue: Welcome to Alpine Linux 3.17 +2023-03-10 17:56:50.1087 Info Running in Docker: Yes (image build: v0.20.3269-ls95) +2023-03-10 17:56:50.1109 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads +2023-03-10 17:56:50.1109 Info App config/log directory: /config/Jackett +2023-03-10 17:56:50.1121 Info Using proxy: Disabled +2023-03-10 17:56:50.1121 Info Using FlareSolverr: No +2023-03-10 17:56:50.1203 Info Using HTTP Client: HttpWebClient2 +2023-03-10 17:56:50.1412 Info Loading Native indexers ... +2023-03-10 17:56:50.4073 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api +2023-03-10 17:56:50.4138 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions +2023-03-10 17:56:52.8112 Info Loaded 493 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents +2023-03-10 17:56:52.8118 Info Loaded 569 indexers in total +2023-03-10 17:56:52.8137 Info Adding aggregate indexer ('all' indexer) ... +2023-03-10 17:56:52.8251 Info Adding filter indexer ('type:public' indexer) ... +2023-03-10 17:56:52.8251 Info Adding filter indexer ('type:private' indexer) ... +2023-03-10 17:56:52.8259 Info Adding filter indexer ('type:semi-public' indexer) ... +2023-03-10 17:56:52.8341 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3579-638140677981119304 +2023-03-10 17:56:53.6536 Info Jackett startup finished in 7.021 s +2023-03-10 18:56:52.9778 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-03-10 18:56:54.3719 Info Jackett is already updated. Current version: v0.20.3579 +2023-03-13 15:21:07.6757 Info Starting Jackett v0.20.3579 +2023-03-13 15:21:09.9008 Info Environment version: 6.0.14 (/app/Jackett/) +2023-03-13 15:21:09.9021 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) +2023-03-13 15:21:09.9036 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-13 15:21:09.9150 Info File /etc/issue: Welcome to Alpine Linux 3.17 +2023-03-13 15:21:09.9150 Info Running in Docker: Yes (image build: v0.20.3269-ls95) +2023-03-13 15:21:09.9174 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads +2023-03-13 15:21:09.9178 Info App config/log directory: /config/Jackett +2023-03-13 15:21:09.9190 Info Using proxy: Disabled +2023-03-13 15:21:09.9190 Info Using FlareSolverr: No +2023-03-13 15:21:09.9334 Info Using HTTP Client: HttpWebClient2 +2023-03-13 15:21:09.9704 Info Loading Native indexers ... +2023-03-13 15:21:10.2992 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api +2023-03-13 15:21:10.3056 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions +2023-03-13 15:21:14.0060 Info Loaded 493 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents +2023-03-13 15:21:14.0067 Info Loaded 569 indexers in total +2023-03-13 15:21:14.0085 Info Adding aggregate indexer ('all' indexer) ... +2023-03-13 15:21:14.0302 Info Adding filter indexer ('type:public' indexer) ... +2023-03-13 15:21:14.0308 Info Adding filter indexer ('type:private' indexer) ... +2023-03-13 15:21:14.0308 Info Adding filter indexer ('type:semi-public' indexer) ... +2023-03-13 15:21:14.4324 Info Jackett startup finished in 8.915 s +2023-03-13 15:21:45.0292 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-13 15:21:53.0299 Info Torznab search in 1337x => Found 20 releases +2023-03-13 16:21:14.1342 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-03-13 16:21:14.6594 Info New release found. Current version: v0.20.3579 New version: v0.20.3593 +2023-03-13 16:21:14.6598 Info Downloading release v0.20.3593 It could take a while... +2023-03-13 16:21:19.8479 Info Starting updater: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "133" --NoRestart +2023-03-13 16:21:19.8491 Info Updater started process id: 208 +2023-03-13 16:21:28.6261 Info Starting Jackett v0.20.3593 +2023-03-13 16:21:29.6115 Info Environment version: 6.0.14 (/app/Jackett/) +2023-03-13 16:21:29.6125 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) +2023-03-13 16:21:29.6137 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-13 16:21:29.6137 Info File /etc/issue: Welcome to Alpine Linux 3.17 +2023-03-13 16:21:29.6137 Info Running in Docker: Yes (image build: v0.20.3269-ls95) +2023-03-13 16:21:29.6160 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads +2023-03-13 16:21:29.6160 Info App config/log directory: /config/Jackett +2023-03-13 16:21:29.6173 Info Using proxy: Disabled +2023-03-13 16:21:29.6173 Info Using FlareSolverr: No +2023-03-13 16:21:29.6250 Info Using HTTP Client: HttpWebClient2 +2023-03-13 16:21:29.6453 Info Loading Native indexers ... +2023-03-13 16:21:29.7702 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api +2023-03-13 16:21:29.7761 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions +2023-03-13 16:21:31.9285 Info Loaded 492 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents, kamept +2023-03-13 16:21:31.9291 Info Loaded 568 indexers in total +2023-03-13 16:21:31.9312 Info Adding aggregate indexer ('all' indexer) ... +2023-03-13 16:21:31.9425 Info Adding filter indexer ('type:public' indexer) ... +2023-03-13 16:21:31.9430 Info Adding filter indexer ('type:private' indexer) ... +2023-03-13 16:21:31.9430 Info Adding filter indexer ('type:semi-public' indexer) ... +2023-03-13 16:21:31.9506 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3593-638143212772413046 +2023-03-13 16:21:32.5884 Info Jackett startup finished in 6.095 s +2023-03-13 16:22:17.9003 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-13 16:22:26.2068 Info Torznab search in 1337x => Found 20 releases +2023-03-13 17:21:32.0887 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-03-13 17:21:33.0129 Info Jackett is already updated. Current version: v0.20.3593 +2023-03-13 17:22:48.9070 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-13 17:22:55.7082 Info Torznab search in 1337x => Found 20 releases +2023-03-13 18:23:20.4510 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-13 18:23:28.2713 Info Torznab search in 1337x => Found 20 releases +2023-03-13 19:23:51.9013 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-13 19:23:59.4998 Info Torznab search in 1337x => Found 20 releases +2023-03-13 20:24:23.6110 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-13 20:24:30.6690 Info Torznab search in 1337x => Found 20 releases +2023-03-13 21:24:55.6650 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-13 21:25:03.3568 Info Torznab search in 1337x => Found 20 releases +2023-03-13 22:25:28.2690 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-13 22:25:35.8099 Info Torznab search in 1337x => Found 20 releases +2023-03-13 23:26:00.4821 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-13 23:26:07.6751 Info Torznab search in 1337x => Found 20 releases +2023-03-14 00:26:32.1441 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 00:26:39.3276 Info Torznab search in 1337x => Found 20 releases +2023-03-14 01:27:03.8582 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 01:27:11.0068 Info Torznab search in 1337x => Found 20 releases +2023-03-14 02:27:35.1853 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 02:27:42.4377 Info Torznab search in 1337x => Found 20 releases +2023-03-14 03:28:06.8753 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 03:28:14.2882 Info Torznab search in 1337x => Found 20 releases +2023-03-14 04:28:41.5871 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 04:28:48.6478 Info Torznab search in 1337x => Found 20 releases +2023-03-14 05:29:13.6740 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 05:29:21.0419 Info Torznab search in 1337x => Found 20 releases +2023-03-14 06:29:47.1439 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 06:29:55.7451 Info Torznab search in 1337x => Found 20 releases +2023-03-14 07:30:19.4860 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 07:30:27.7927 Info Torznab search in 1337x => Found 20 releases +2023-03-14 08:30:51.6177 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 08:30:58.8615 Info Torznab search in 1337x => Found 20 releases +2023-03-14 09:31:24.0469 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 09:31:31.6161 Info Torznab search in 1337x => Found 20 releases +2023-03-14 10:31:56.1398 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 10:32:03.6980 Info Torznab search in 1337x => Found 20 releases +2023-03-14 11:32:28.5645 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 11:32:36.5719 Info Torznab search in 1337x => Found 20 releases +2023-03-14 12:33:00.7699 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 12:33:08.2354 Info Torznab search in 1337x => Found 20 releases +2023-03-14 13:33:32.8853 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 13:33:40.2419 Info Torznab search in 1337x => Found 20 releases +2023-03-14 14:34:05.1911 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 14:34:12.3362 Info Torznab search in 1337x => Found 20 releases +2023-03-14 15:34:38.2331 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 15:34:45.4477 Info Torznab search in 1337x => Found 20 releases +2023-03-14 16:35:09.8335 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 16:35:17.8281 Info Torznab search in 1337x => Found 20 releases +2023-03-14 17:21:33.0261 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-03-14 17:21:33.9474 Info New release found. Current version: v0.20.3593 New version: v0.20.3599 +2023-03-14 17:21:33.9481 Info Downloading release v0.20.3599 It could take a while... +2023-03-14 17:21:37.9082 Info Starting updater: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "236" --NoRestart +2023-03-14 17:21:37.9090 Info Updater started process id: 554 +2023-03-14 17:21:45.8903 Info Starting Jackett v0.20.3599 +2023-03-14 17:21:46.9202 Info Environment version: 6.0.14 (/app/Jackett/) +2023-03-14 17:21:46.9214 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) +2023-03-14 17:21:46.9228 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-14 17:21:46.9228 Info File /etc/issue: Welcome to Alpine Linux 3.17 +2023-03-14 17:21:46.9228 Info Running in Docker: Yes (image build: v0.20.3269-ls95) +2023-03-14 17:21:46.9254 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads +2023-03-14 17:21:46.9257 Info App config/log directory: /config/Jackett +2023-03-14 17:21:46.9269 Info Using proxy: Disabled +2023-03-14 17:21:46.9269 Info Using FlareSolverr: No +2023-03-14 17:21:46.9353 Info Using HTTP Client: HttpWebClient2 +2023-03-14 17:21:46.9557 Info Loading Native indexers ... +2023-03-14 17:21:47.0959 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api +2023-03-14 17:21:47.1022 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions +2023-03-14 17:21:50.5828 Info Loaded 492 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents, kamept +2023-03-14 17:21:50.5828 Info Loaded 568 indexers in total +2023-03-14 17:21:50.5856 Info Adding aggregate indexer ('all' indexer) ... +2023-03-14 17:21:50.5972 Info Adding filter indexer ('type:public' indexer) ... +2023-03-14 17:21:50.5977 Info Adding filter indexer ('type:private' indexer) ... +2023-03-14 17:21:50.5977 Info Adding filter indexer ('type:semi-public' indexer) ... +2023-03-14 17:21:50.6053 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3599-638144112956644912 +2023-03-14 17:21:51.0051 Info Jackett startup finished in 6.880 s +2023-03-14 17:35:20.1951 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 17:35:28.7649 Info Torznab search in 1337x => Found 20 releases [8583ms] +2023-03-14 18:21:50.8068 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-03-14 18:21:51.7832 Info Jackett is already updated. Current version: v0.20.3599 +2023-03-14 18:35:51.1018 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 18:35:58.4397 Info Torznab search in 1337x => Found 20 releases [7341ms] +2023-03-14 19:36:22.5538 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 19:36:30.2065 Info Torznab search in 1337x => Found 20 releases [7656ms] +2023-03-14 20:36:54.2936 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 20:37:01.8702 Info Torznab search in 1337x => Found 20 releases [7576ms] +2023-03-14 21:37:25.8646 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 21:37:33.0332 Info Torznab search in 1337x => Found 20 releases [7168ms] +2023-03-14 22:37:57.4465 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 22:38:04.5379 Info Torznab search in 1337x => Found 20 releases [7091ms] +2023-03-14 23:38:29.2215 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-14 23:38:37.0853 Info Torznab search in 1337x => Found 20 releases [7865ms] +2023-03-15 00:39:00.9771 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-15 00:39:08.6991 Info Torznab search in 1337x => Found 20 releases [7723ms] +2023-03-15 01:39:32.4835 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-15 01:39:39.3856 Info Torznab search in 1337x => Found 20 releases [6902ms] +2023-03-15 02:40:04.0106 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-15 02:41:11.8853 Info Torznab search in 1337x => Found 20 releases [67874ms] +2023-03-15 03:41:36.1787 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-15 03:41:43.3711 Info Torznab search in 1337x => Found 20 releases [7194ms] +2023-03-15 04:42:08.2163 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-15 04:42:15.3809 Info Torznab search in 1337x => Found 20 releases [7164ms] +2023-03-15 05:42:40.2461 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-15 05:42:47.5609 Info Torznab search in 1337x => Found 20 releases [7315ms] +2023-03-15 06:43:12.1112 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-15 06:43:19.3459 Info Torznab search in 1337x => Found 20 releases [7235ms] +2023-03-15 07:43:43.5138 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-15 07:43:50.7779 Info Torznab search in 1337x => Found 20 releases [7264ms] +2023-03-15 08:44:15.6648 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-15 08:44:23.2704 Info Torznab search in 1337x => Found 20 releases [7605ms] +2023-03-15 09:44:48.1405 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-15 09:44:54.9591 Info Torznab search in 1337x => Found 20 releases [6820ms] +2023-03-15 10:45:20.8130 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-15 10:45:28.5939 Info Torznab search in 1337x => Found 20 releases [7782ms] +2023-03-15 11:45:52.9700 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-15 11:46:00.7619 Info Torznab search in 1337x => Found 20 releases [7792ms] +2023-03-15 12:46:24.8101 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-15 12:46:32.2307 Info Torznab search in 1337x => Found 20 releases [7441ms] +2023-03-15 13:46:56.5873 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-15 13:47:03.6844 Info Torznab search in 1337x => Found 20 releases [7097ms] +2023-03-15 14:47:28.6653 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-15 14:47:36.5227 Info Torznab search in 1337x => Found 20 releases [7859ms] +2023-03-15 15:48:01.5221 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 +2023-03-15 15:48:09.8722 Info Torznab search in 1337x => Found 20 releases [8351ms] +2023-03-15 16:44:40.2684 Info Jackett stopped +2023-03-15 16:53:33.7195 Info Starting Jackett v0.20.3269 +2023-03-15 16:53:34.7305 Info Environment version: 6.0.14 (/app/Jackett/) +2023-03-15 16:53:34.7316 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) +2023-03-15 16:53:34.7328 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-15 16:53:34.7328 Info File /etc/issue: Welcome to Alpine Linux 3.17 +2023-03-15 16:53:34.7337 Info Running in Docker: Yes (image build: v0.20.3269-ls95) +2023-03-15 16:53:34.7354 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads +2023-03-15 16:53:34.7354 Info App config/log directory: /config/Jackett +2023-03-15 16:53:34.7367 Info Using proxy: Disabled +2023-03-15 16:53:34.7367 Info Using FlareSolverr: No +2023-03-15 16:53:34.7446 Info Using HTTP Client: HttpWebClient2 +2023-03-15 16:53:34.7663 Info Loading Native indexers ... +2023-03-15 16:53:35.0138 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api +2023-03-15 16:53:35.0197 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions +2023-03-15 16:53:37.1488 Info Loaded 494 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, cloudtorrents, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornleech, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker +2023-03-15 16:53:37.1488 Info Loaded 570 indexers in total +2023-03-15 16:53:37.1512 Info Adding aggregate indexer ('all' indexer) ... +2023-03-15 16:53:37.1628 Info Adding filter indexer ('type:public' indexer) ... +2023-03-15 16:53:37.1628 Info Adding filter indexer ('type:private' indexer) ... +2023-03-15 16:53:37.1628 Info Adding filter indexer ('type:semi-public' indexer) ... +2023-03-15 16:53:37.4597 Info Jackett startup finished in 5.435 s +2023-03-15 17:53:37.2037 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-03-15 17:53:38.6245 Info New release found. Current version: v0.20.3269 New version: v0.20.3604 +2023-03-15 17:53:38.6249 Info Downloading release v0.20.3604 It could take a while... +2023-03-15 17:53:43.3123 Info Starting updater: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "135" --NoRestart +2023-03-15 17:53:43.3131 Info Updater started process id: 195 +2023-03-15 17:53:51.2828 Info Starting Jackett v0.20.3604 +2023-03-15 17:53:52.2841 Info Environment version: 6.0.15 (/app/Jackett/) +2023-03-15 17:53:52.2852 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) +2023-03-15 17:53:52.2864 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-15 17:53:52.2867 Info File /etc/issue: Welcome to Alpine Linux 3.17 +2023-03-15 17:53:52.2867 Info Running in Docker: Yes (image build: v0.20.3269-ls95) +2023-03-15 17:53:52.2890 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads +2023-03-15 17:53:52.2890 Info App config/log directory: /config/Jackett +2023-03-15 17:53:52.2903 Info Using proxy: Disabled +2023-03-15 17:53:52.2903 Info Using FlareSolverr: No +2023-03-15 17:53:52.2985 Info Using HTTP Client: HttpWebClient2 +2023-03-15 17:53:52.3197 Info Loading Native indexers ... +2023-03-15 17:53:52.4496 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api +2023-03-15 17:53:52.4558 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions +2023-03-15 17:53:54.6533 Info Loaded 493 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents, elitetorrent-pl, kamept +2023-03-15 17:53:54.6538 Info Loaded 569 indexers in total +2023-03-15 17:53:54.6557 Info Adding aggregate indexer ('all' indexer) ... +2023-03-15 17:53:54.6668 Info Adding filter indexer ('type:public' indexer) ... +2023-03-15 17:53:54.6668 Info Adding filter indexer ('type:private' indexer) ... +2023-03-15 17:53:54.6668 Info Adding filter indexer ('type:semi-public' indexer) ... +2023-03-15 17:53:54.6746 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3604-638144996209291285 +2023-03-15 17:53:55.0559 Info Jackett startup finished in 5.510 s +2023-03-15 18:53:54.8369 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-03-15 18:53:56.0738 Info Jackett is already updated. Current version: v0.20.3604 +2023-03-16 18:53:56.0793 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-03-16 18:53:56.9495 Info New release found. Current version: v0.20.3604 New version: v0.20.3609 +2023-03-16 18:53:56.9495 Info Downloading release v0.20.3609 It could take a while... +2023-03-16 18:54:01.3692 Info Starting updater: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "222" --NoRestart +2023-03-16 18:54:01.3700 Info Updater started process id: 279 +2023-03-16 18:54:09.1185 Info Starting Jackett v0.20.3609 +2023-03-16 18:54:10.1378 Info Environment version: 6.0.15 (/app/Jackett/) +2023-03-16 18:54:10.1394 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) +2023-03-16 18:54:10.1408 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-16 18:54:10.1408 Info File /etc/issue: Welcome to Alpine Linux 3.17 +2023-03-16 18:54:10.1408 Info Running in Docker: Yes (image build: v0.20.3269-ls95) +2023-03-16 18:54:10.1442 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads +2023-03-16 18:54:10.1442 Info App config/log directory: /config/Jackett +2023-03-16 18:54:10.1456 Info Using proxy: Disabled +2023-03-16 18:54:10.1458 Info Using FlareSolverr: No +2023-03-16 18:54:10.1549 Info Using HTTP Client: HttpWebClient2 +2023-03-16 18:54:10.1764 Info Loading Native indexers ... +2023-03-16 18:54:10.3036 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api +2023-03-16 18:54:10.3097 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions +2023-03-16 18:54:13.0606 Info Loaded 493 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents, elitetorrent-pl, kamept +2023-03-16 18:54:13.0612 Info Loaded 569 indexers in total +2023-03-16 18:54:13.0634 Info Adding aggregate indexer ('all' indexer) ... +2023-03-16 18:54:13.0763 Info Adding filter indexer ('type:public' indexer) ... +2023-03-16 18:54:13.0769 Info Adding filter indexer ('type:private' indexer) ... +2023-03-16 18:54:13.0769 Info Adding filter indexer ('type:semi-public' indexer) ... +2023-03-16 18:54:13.0853 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3609-638145896390739097 +2023-03-16 18:54:13.5131 Info Jackett startup finished in 6.317 s +2023-03-16 19:54:13.2263 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-03-16 19:54:14.7060 Info Jackett is already updated. Current version: v0.20.3609 +2023-03-17 19:54:14.7130 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-03-17 19:54:15.5280 Info New release found. Current version: v0.20.3609 New version: v0.20.3617 +2023-03-17 19:54:15.5293 Info Downloading release v0.20.3617 It could take a while... +2023-03-17 19:54:20.2219 Info Starting updater: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "307" --NoRestart +2023-03-17 19:54:20.2234 Info Updater started process id: 356 +2023-03-17 19:54:28.1876 Info Starting Jackett v0.20.3617 +2023-03-17 19:54:29.5292 Info Environment version: 6.0.15 (/app/Jackett/) +2023-03-17 19:54:29.5305 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) +2023-03-17 19:54:29.5319 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-17 19:54:29.5319 Info File /etc/issue: Welcome to Alpine Linux 3.17 +2023-03-17 19:54:29.5329 Info Running in Docker: Yes (image build: v0.20.3269-ls95) +2023-03-17 19:54:29.5349 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads +2023-03-17 19:54:29.5349 Info App config/log directory: /config/Jackett +2023-03-17 19:54:29.5364 Info Using proxy: Disabled +2023-03-17 19:54:29.5364 Info Using FlareSolverr: No +2023-03-17 19:54:29.5449 Info Using HTTP Client: HttpWebClient2 +2023-03-17 19:54:29.5660 Info Loading Native indexers ... +2023-03-17 19:54:29.6985 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api +2023-03-17 19:54:29.7046 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions +2023-03-17 19:54:32.9857 Info Loaded 494 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents, elitetorrent-pl, kamept, lightning-tor +2023-03-17 19:54:32.9871 Info Loaded 570 indexers in total +2023-03-17 19:54:32.9892 Info Adding aggregate indexer ('all' indexer) ... +2023-03-17 19:54:33.0010 Info Adding filter indexer ('type:public' indexer) ... +2023-03-17 19:54:33.0010 Info Adding filter indexer ('type:private' indexer) ... +2023-03-17 19:54:33.0010 Info Adding filter indexer ('type:semi-public' indexer) ... +2023-03-17 19:54:33.0090 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3617-638146796575272988 +2023-03-17 19:54:33.3909 Info Jackett startup finished in 6.896 s +2023-03-17 20:54:33.1863 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-03-17 20:54:34.6512 Info Jackett is already updated. Current version: v0.20.3617 +2023-03-18 20:54:34.6555 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-03-18 20:54:35.5321 Info New release found. Current version: v0.20.3617 New version: v0.20.3627 +2023-03-18 20:54:35.5329 Info Downloading release v0.20.3627 It could take a while... +2023-03-18 20:54:39.3440 Info Starting updater: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "383" --NoRestart +2023-03-18 20:54:39.3451 Info Updater started process id: 448 +2023-03-18 20:54:47.9199 Info Starting Jackett v0.20.3627 +2023-03-18 20:54:48.9040 Info Environment version: 6.0.15 (/app/Jackett/) +2023-03-18 20:54:48.9051 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) +2023-03-18 20:54:48.9064 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-18 20:54:48.9068 Info File /etc/issue: Welcome to Alpine Linux 3.17 +2023-03-18 20:54:48.9068 Info Running in Docker: Yes (image build: v0.20.3269-ls95) +2023-03-18 20:54:48.9092 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads +2023-03-18 20:54:48.9092 Info App config/log directory: /config/Jackett +2023-03-18 20:54:48.9106 Info Using proxy: Disabled +2023-03-18 20:54:48.9108 Info Using FlareSolverr: No +2023-03-18 20:54:48.9189 Info Using HTTP Client: HttpWebClient2 +2023-03-18 20:54:48.9403 Info Loading Native indexers ... +2023-03-18 20:54:49.0656 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api +2023-03-18 20:54:49.0715 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions +2023-03-18 20:54:51.9013 Info Loaded 494 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents, elitetorrent-pl, kamept, lightning-tor +2023-03-18 20:54:51.9019 Info Loaded 570 indexers in total +2023-03-18 20:54:51.9039 Info Adding aggregate indexer ('all' indexer) ... +2023-03-18 20:54:51.9169 Info Adding filter indexer ('type:public' indexer) ... +2023-03-18 20:54:51.9169 Info Adding filter indexer ('type:private' indexer) ... +2023-03-18 20:54:51.9178 Info Adding filter indexer ('type:semi-public' indexer) ... +2023-03-18 20:54:51.9257 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3627-638147696771516210 +2023-03-18 20:54:52.3336 Info Jackett startup finished in 6.328 s +2023-03-18 21:54:52.1269 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 +2023-03-18 21:54:53.7304 Info Jackett is already updated. Current version: v0.20.3627 +2023-03-19 19:46:46.4220 Info Starting Jackett v0.20.3627 +2023-03-19 19:46:48.2336 Info Environment version: 6.0.15 (/app/Jackett/) +2023-03-19 19:46:48.2348 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) +2023-03-19 19:46:48.2361 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-19 19:46:48.2361 Info File /etc/issue: Welcome to Alpine Linux 3.17 +2023-03-19 19:46:48.2371 Info Running in Docker: Yes (image build: v0.20.3269-ls95) +2023-03-19 19:46:48.2389 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads +2023-03-19 19:46:48.2389 Info App config/log directory: /config/Jackett +2023-03-19 19:46:48.2403 Info Using proxy: Disabled +2023-03-19 19:46:48.2403 Info Using FlareSolverr: No +2023-03-19 19:46:48.2492 Info Using HTTP Client: HttpWebClient2 +2023-03-19 19:46:48.2727 Info Loading Native indexers ... +2023-03-19 19:46:48.4192 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api +2023-03-19 19:46:48.4344 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions +2023-03-19 19:46:51.3478 Info Loaded 494 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents, elitetorrent-pl, kamept, lightning-tor +2023-03-19 19:46:51.3491 Info Loaded 570 indexers in total +2023-03-19 19:46:51.3511 Info Adding aggregate indexer ('all' indexer) ... +2023-03-19 19:46:51.3625 Info Adding filter indexer ('type:public' indexer) ... +2023-03-19 19:46:51.3630 Info Adding filter indexer ('type:private' indexer) ... +2023-03-19 19:46:51.3630 Info Adding filter indexer ('type:semi-public' indexer) ... +2023-03-19 19:46:51.6970 Info Jackett startup finished in 6.902 s diff --git a/tests/docker_configs/jackett/config/jackett/Jackett/updater.txt b/tests/docker_configs/jackett/config/jackett/Jackett/updater.txt new file mode 100644 index 0000000..a49df99 --- /dev/null +++ b/tests/docker_configs/jackett/config/jackett/Jackett/updater.txt @@ -0,0 +1,1655 @@ +2023-03-18 20:54:40.4019 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml +2023-03-18 20:54:40.4271 Info Copied abtorrents.yml +2023-03-18 20:54:40.4271 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml +2023-03-18 20:54:40.4278 Info Copied acervos-api.yml +2023-03-18 20:54:40.4278 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml +2023-03-18 20:54:40.4278 Info Copied acgrip.yml +2023-03-18 20:54:40.4278 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml +2023-03-18 20:54:40.4290 Info Copied acgsou.yml +2023-03-18 20:54:40.4290 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml +2023-03-18 20:54:40.4297 Info Copied acidlounge.yml +2023-03-18 20:54:40.4297 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml +2023-03-18 20:54:40.4297 Info Copied acrossthetasman.yml +2023-03-18 20:54:40.4297 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml +2023-03-18 20:54:40.4310 Info Copied aftershock.yml +2023-03-18 20:54:40.4310 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml +2023-03-18 20:54:40.4310 Info Copied aidoruonline.yml +2023-03-18 20:54:40.4318 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml +2023-03-18 20:54:40.4318 Info Copied aither-api.yml +2023-03-18 20:54:40.4318 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml +2023-03-18 20:54:40.4329 Info Copied amigosshare.yml +2023-03-18 20:54:40.4329 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml +2023-03-18 20:54:40.4329 Info Copied anilibria.yml +2023-03-18 20:54:40.4337 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml +2023-03-18 20:54:40.4337 Info Copied anime-free.yml +2023-03-18 20:54:40.4337 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml +2023-03-18 20:54:40.4347 Info Copied animelayer.yml +2023-03-18 20:54:40.4347 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml +2023-03-18 20:54:40.4347 Info Copied animetracker.yml +2023-03-18 20:54:40.4347 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml +2023-03-18 20:54:40.4360 Info Copied animeworld-api.yml +2023-03-18 20:54:40.4360 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml +2023-03-18 20:54:40.4360 Info Copied anirena.yml +2023-03-18 20:54:40.4368 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml +2023-03-18 20:54:40.4368 Info Copied anisource.yml +2023-03-18 20:54:40.4368 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml +2023-03-18 20:54:40.4378 Info Copied anthelion-api.yml +2023-03-18 20:54:40.4378 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml +2023-03-18 20:54:40.4378 Info Copied arabafenice.yml +2023-03-18 20:54:40.4387 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml +2023-03-18 20:54:40.4387 Info Copied arabp2p.yml +2023-03-18 20:54:40.4387 Info Attempting to copy arabtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/arabtorrents.yml to destination: /app/Jackett/Definitions/arabtorrents.yml +2023-03-18 20:54:40.4397 Info Copied arabtorrents.yml +2023-03-18 20:54:40.4397 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml +2023-03-18 20:54:40.4397 Info Copied arenabg.yml +2023-03-18 20:54:40.4397 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml +2023-03-18 20:54:40.4410 Info Copied asiancinema.yml +2023-03-18 20:54:40.4410 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml +2023-03-18 20:54:40.4410 Info Copied asiandvdclub.yml +2023-03-18 20:54:40.4418 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml +2023-03-18 20:54:40.4418 Info Copied audiences.yml +2023-03-18 20:54:40.4418 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml +2023-03-18 20:54:40.4430 Info Copied audionews.yml +2023-03-18 20:54:40.4430 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml +2023-03-18 20:54:40.4430 Info Copied aussierules.yml +2023-03-18 20:54:40.4437 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml +2023-03-18 20:54:40.4437 Info Copied backups.yml +2023-03-18 20:54:40.4437 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml +2023-03-18 20:54:40.4449 Info Copied badasstorrents.yml +2023-03-18 20:54:40.4449 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml +2023-03-18 20:54:40.4449 Info Copied bangumi-moe.yml +2023-03-18 20:54:40.4457 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml +2023-03-18 20:54:40.4457 Info Copied beitai.yml +2023-03-18 20:54:40.4457 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml +2023-03-18 20:54:40.4468 Info Copied bestcore.yml +2023-03-18 20:54:40.4468 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml +2023-03-18 20:54:40.4468 Info Copied beyond-hd.yml +2023-03-18 20:54:40.4468 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml +2023-03-18 20:54:40.4480 Info Copied bibliotik.yml +2023-03-18 20:54:40.4480 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml +2023-03-18 20:54:40.4487 Info Copied bigfangroup.yml +2023-03-18 20:54:40.4487 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml +2023-03-18 20:54:40.4487 Info Copied bitbazis.yml +2023-03-18 20:54:40.4487 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml +2023-03-18 20:54:40.4499 Info Copied bitded.yml +2023-03-18 20:54:40.4499 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml +2023-03-18 20:54:40.4499 Info Copied bithorlo.yml +2023-03-18 20:54:40.4508 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml +2023-03-18 20:54:40.4508 Info Copied bithumen.yml +2023-03-18 20:54:40.4508 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml +2023-03-18 20:54:40.4519 Info Copied bitnova.yml +2023-03-18 20:54:40.4519 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml +2023-03-18 20:54:40.4519 Info Copied bitofvalor.yml +2023-03-18 20:54:40.4527 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml +2023-03-18 20:54:40.4527 Info Copied bitru.yml +2023-03-18 20:54:40.4527 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml +2023-03-18 20:54:40.4538 Info Copied bitsearch.yml +2023-03-18 20:54:40.4538 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml +2023-03-18 20:54:40.4538 Info Copied bitsexy.yml +2023-03-18 20:54:40.4538 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml +2023-03-18 20:54:40.4550 Info Copied bitspyder.yml +2023-03-18 20:54:40.4550 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml +2023-03-18 20:54:40.4550 Info Copied Bittorrentfiles.yml +2023-03-18 20:54:40.4558 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml +2023-03-18 20:54:40.4558 Info Copied bitturk.yml +2023-03-18 20:54:40.4558 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml +2023-03-18 20:54:40.4569 Info Copied bluebird.yml +2023-03-18 20:54:40.4569 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml +2023-03-18 20:54:40.4569 Info Copied blutopia-api.yml +2023-03-18 20:54:40.4577 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml +2023-03-18 20:54:40.4577 Info Copied booktracker.yml +2023-03-18 20:54:40.4577 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml +2023-03-18 20:54:40.4587 Info Copied bootytape.yml +2023-03-18 20:54:40.4587 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml +2023-03-18 20:54:40.4587 Info Copied borgzelle.yml +2023-03-18 20:54:40.4587 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml +2023-03-18 20:54:40.4600 Info Copied boxingtorrents.yml +2023-03-18 20:54:40.4600 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml +2023-03-18 20:54:40.4600 Info Copied broadcity.yml +2023-03-18 20:54:40.4608 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml +2023-03-18 20:54:40.4608 Info Copied brsociety-api.yml +2023-03-18 20:54:40.4608 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml +2023-03-18 20:54:40.4618 Info Copied bt4g.yml +2023-03-18 20:54:40.4618 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml +2023-03-18 20:54:40.4618 Info Copied btdigg.yml +2023-03-18 20:54:40.4618 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml +2023-03-18 20:54:40.4630 Info Copied btetree.yml +2023-03-18 20:54:40.4630 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml +2023-03-18 20:54:40.4630 Info Copied btmet.yml +2023-03-18 20:54:40.4638 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml +2023-03-18 20:54:40.4638 Info Copied btnext.yml +2023-03-18 20:54:40.4638 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml +2023-03-18 20:54:40.4649 Info Copied btschool.yml +2023-03-18 20:54:40.4649 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml +2023-03-18 20:54:40.4649 Info Copied btsow.yml +2023-03-18 20:54:40.4657 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml +2023-03-18 20:54:40.4657 Info Copied bulltorrent.yml +2023-03-18 20:54:40.4657 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml +2023-03-18 20:54:40.4668 Info Copied bwtorrents.yml +2023-03-18 20:54:40.4668 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml +2023-03-18 20:54:40.4668 Info Copied byrbt.yml +2023-03-18 20:54:40.4668 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml +2023-03-18 20:54:40.4681 Info Copied byrutor.yml +2023-03-18 20:54:40.4681 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml +2023-03-18 20:54:40.4687 Info Copied carpathians.yml +2023-03-18 20:54:40.4687 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml +2023-03-18 20:54:40.4687 Info Copied carphunter.yml +2023-03-18 20:54:40.4687 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml +2023-03-18 20:54:40.4699 Info Copied carpt.yml +2023-03-18 20:54:40.4699 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml +2023-03-18 20:54:40.4699 Info Copied cartoonchaos.yml +2023-03-18 20:54:40.4707 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml +2023-03-18 20:54:40.4707 Info Copied cathoderaytube.yml +2023-03-18 20:54:40.4707 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml +2023-03-18 20:54:40.4718 Info Copied catorrent.yml +2023-03-18 20:54:40.4718 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml +2023-03-18 20:54:40.4718 Info Copied ccfbits.yml +2023-03-18 20:54:40.4718 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml +2023-03-18 20:54:40.4730 Info Copied ceskeforum.yml +2023-03-18 20:54:40.4730 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml +2023-03-18 20:54:40.4730 Info Copied chdbits.yml +2023-03-18 20:54:40.4738 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml +2023-03-18 20:54:40.4738 Info Copied chilebt.yml +2023-03-18 20:54:40.4738 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml +2023-03-18 20:54:40.4748 Info Copied cinemageddon.yml +2023-03-18 20:54:40.4748 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml +2023-03-18 20:54:40.4748 Info Copied cinemamovies.yml +2023-03-18 20:54:40.4757 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml +2023-03-18 20:54:40.4757 Info Copied cinematik.yml +2023-03-18 20:54:40.4757 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml +2023-03-18 20:54:40.4767 Info Copied classix.yml +2023-03-18 20:54:40.4767 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml +2023-03-18 20:54:40.4767 Info Copied coastalcrew.yml +2023-03-18 20:54:40.4767 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml +2023-03-18 20:54:40.4780 Info Copied comicat.yml +2023-03-18 20:54:40.4780 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml +2023-03-18 20:54:40.4787 Info Copied concen.yml +2023-03-18 20:54:40.4787 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml +2023-03-18 20:54:40.4787 Info Copied concertos.yml +2023-03-18 20:54:40.4787 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml +2023-03-18 20:54:40.4798 Info Copied cpabien.yml +2023-03-18 20:54:40.4798 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml +2023-03-18 20:54:40.4798 Info Copied cpasbienclone.yml +2023-03-18 20:54:40.4806 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml +2023-03-18 20:54:40.4806 Info Copied cpasbiensi.yml +2023-03-18 20:54:40.4806 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml +2023-03-18 20:54:40.4817 Info Copied crackingpatching.yml +2023-03-18 20:54:40.4817 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml +2023-03-18 20:54:40.4817 Info Copied crazyhd.yml +2023-03-18 20:54:40.4817 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml +2023-03-18 20:54:40.4830 Info Copied crazyspirits.yml +2023-03-18 20:54:40.4830 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml +2023-03-18 20:54:40.4830 Info Copied crnaberza.yml +2023-03-18 20:54:40.4838 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml +2023-03-18 20:54:40.4838 Info Copied crt2fa.yml +2023-03-18 20:54:40.4838 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml +2023-03-18 20:54:40.4849 Info Copied danishbytes-api.yml +2023-03-18 20:54:40.4849 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml +2023-03-18 20:54:40.4849 Info Copied dariustracker.yml +2023-03-18 20:54:40.4857 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml +2023-03-18 20:54:40.4857 Info Copied dark-shadow.yml +2023-03-18 20:54:40.4857 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml +2023-03-18 20:54:40.4868 Info Copied datascene-api.yml +2023-03-18 20:54:40.4868 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml +2023-03-18 20:54:40.4868 Info Copied datatalli.yml +2023-03-18 20:54:40.4876 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml +2023-03-18 20:54:40.4876 Info Copied deildu.yml +2023-03-18 20:54:40.4876 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml +2023-03-18 20:54:40.4887 Info Copied demonoid.yml +2023-03-18 20:54:40.4887 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml +2023-03-18 20:54:40.4887 Info Copied desitorrents-api.yml +2023-03-18 20:54:40.4887 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml +2023-03-18 20:54:40.4899 Info Copied devil-torrents.yml +2023-03-18 20:54:40.4899 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml +2023-03-18 20:54:40.4899 Info Copied diablotorrent.yml +2023-03-18 20:54:40.4908 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml +2023-03-18 20:54:40.4908 Info Copied digitalcore.yml +2023-03-18 20:54:40.4908 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml +2023-03-18 20:54:40.4918 Info Copied dimeadozen.yml +2023-03-18 20:54:40.4918 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml +2023-03-18 20:54:40.4918 Info Copied discfan.yml +2023-03-18 20:54:40.4918 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml +2023-03-18 20:54:40.4931 Info Copied divteam.yml +2023-03-18 20:54:40.4931 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml +2023-03-18 20:54:40.4937 Info Copied dmhy.yml +2023-03-18 20:54:40.4937 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml +2023-03-18 20:54:40.4937 Info Copied docspedia.yml +2023-03-18 20:54:40.4937 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml +2023-03-18 20:54:40.4949 Info Copied dodder.yml +2023-03-18 20:54:40.4949 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml +2023-03-18 20:54:40.4949 Info Copied dreamtracker.yml +2023-03-18 20:54:40.4958 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml +2023-03-18 20:54:40.4958 Info Copied dxp.yml +2023-03-18 20:54:40.4958 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml +2023-03-18 20:54:40.4968 Info Copied ebookbay.yml +2023-03-18 20:54:40.4968 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml +2023-03-18 20:54:40.4968 Info Copied ebooks-shares.yml +2023-03-18 20:54:40.4968 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml +2023-03-18 20:54:40.4980 Info Copied ehentai.yml +2023-03-18 20:54:40.4980 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml +2023-03-18 20:54:40.4987 Info Copied electro-torrent.yml +2023-03-18 20:54:40.4987 Info Attempting to copy elitetorrent-pl.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/elitetorrent-pl.yml to destination: /app/Jackett/Definitions/elitetorrent-pl.yml +2023-03-18 20:54:40.4987 Info Copied elitetorrent-pl.yml +2023-03-18 20:54:40.4987 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml +2023-03-18 20:54:40.4999 Info Copied empornium.yml +2023-03-18 20:54:40.4999 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml +2023-03-18 20:54:40.4999 Info Copied empornium2fa.yml +2023-03-18 20:54:40.5007 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml +2023-03-18 20:54:40.5007 Info Copied eniahd.yml +2023-03-18 20:54:40.5007 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml +2023-03-18 20:54:40.5017 Info Copied esharenet.yml +2023-03-18 20:54:40.5017 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml +2023-03-18 20:54:40.5017 Info Copied estone.yml +2023-03-18 20:54:40.5017 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml +2023-03-18 20:54:40.5030 Info Copied exkinoray.yml +2023-03-18 20:54:40.5030 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml +2023-03-18 20:54:40.5037 Info Copied extratorrent-st.yml +2023-03-18 20:54:40.5037 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml +2023-03-18 20:54:40.5037 Info Copied extremebits.yml +2023-03-18 20:54:40.5037 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml +2023-03-18 20:54:40.5050 Info Copied extremetorrents.yml +2023-03-18 20:54:40.5050 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml +2023-03-18 20:54:40.5050 Info Copied extremlymtorrents.yml +2023-03-18 20:54:40.5058 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml +2023-03-18 20:54:40.5058 Info Copied exttorrents.yml +2023-03-18 20:54:40.5058 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml +2023-03-18 20:54:40.5069 Info Copied eztv.yml +2023-03-18 20:54:40.5069 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml +2023-03-18 20:54:40.5069 Info Copied falkonvisionteam.yml +2023-03-18 20:54:40.5077 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml +2023-03-18 20:54:40.5077 Info Copied fanoin.yml +2023-03-18 20:54:40.5077 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml +2023-03-18 20:54:40.5088 Info Copied fantasticheaven.yml +2023-03-18 20:54:40.5088 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml +2023-03-18 20:54:40.5088 Info Copied fantastiko.yml +2023-03-18 20:54:40.5088 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml +2023-03-18 20:54:40.5100 Info Copied femdomcult.yml +2023-03-18 20:54:40.5100 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml +2023-03-18 20:54:40.5107 Info Copied fenyarnyek-tracker.yml +2023-03-18 20:54:40.5107 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml +2023-03-18 20:54:40.5107 Info Copied file-tracker.yml +2023-03-18 20:54:40.5107 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml +2023-03-18 20:54:40.5120 Info Copied filelisting.yml +2023-03-18 20:54:40.5120 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml +2023-03-18 20:54:40.5120 Info Copied finelite.yml +2023-03-18 20:54:40.5128 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml +2023-03-18 20:54:40.5128 Info Copied finvip.yml +2023-03-18 20:54:40.5128 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml +2023-03-18 20:54:40.5139 Info Copied firebit.yml +2023-03-18 20:54:40.5139 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml +2023-03-18 20:54:40.5139 Info Copied fluxzone.yml +2023-03-18 20:54:40.5148 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml +2023-03-18 20:54:40.5148 Info Copied freshmeat.yml +2023-03-18 20:54:40.5148 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml +2023-03-18 20:54:40.5159 Info Copied frozenlayer.yml +2023-03-18 20:54:40.5159 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml +2023-03-18 20:54:40.5159 Info Copied ftuapps.yml +2023-03-18 20:54:40.5167 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml +2023-03-18 20:54:40.5167 Info Copied funkytorrents.yml +2023-03-18 20:54:40.5167 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml +2023-03-18 20:54:40.5178 Info Copied fuzer.yml +2023-03-18 20:54:40.5178 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml +2023-03-18 20:54:40.5178 Info Copied gainbound.yml +2023-03-18 20:54:40.5178 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml +2023-03-18 20:54:40.5191 Info Copied gamestorrents.yml +2023-03-18 20:54:40.5191 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml +2023-03-18 20:54:40.5197 Info Copied gay-torrents.yml +2023-03-18 20:54:40.5197 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml +2023-03-18 20:54:40.5197 Info Copied gay-torrentsorg.yml +2023-03-18 20:54:40.5197 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml +2023-03-18 20:54:40.5210 Info Copied gaytorrentru.yml +2023-03-18 20:54:40.5210 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml +2023-03-18 20:54:40.5210 Info Copied generationfree-api.yml +2023-03-18 20:54:40.5218 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml +2023-03-18 20:54:40.5218 Info Copied genesismovement.yml +2023-03-18 20:54:40.5218 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml +2023-03-18 20:54:40.5229 Info Copied gigatorrents.yml +2023-03-18 20:54:40.5229 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml +2023-03-18 20:54:40.5229 Info Copied gimmepeers.yml +2023-03-18 20:54:40.5237 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml +2023-03-18 20:54:40.5237 Info Copied girotorrent.yml +2023-03-18 20:54:40.5237 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml +2023-03-18 20:54:40.5247 Info Copied gktorrent.yml +2023-03-18 20:54:40.5247 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml +2023-03-18 20:54:40.5247 Info Copied glodls.yml +2023-03-18 20:54:40.5247 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml +2023-03-18 20:54:40.5260 Info Copied greekdiamond.yml +2023-03-18 20:54:40.5260 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml +2023-03-18 20:54:40.5260 Info Copied greekteam.yml +2023-03-18 20:54:40.5268 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml +2023-03-18 20:54:40.5268 Info Copied gtorrentpro.yml +2023-03-18 20:54:40.5268 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml +2023-03-18 20:54:40.5278 Info Copied haidan.yml +2023-03-18 20:54:40.5278 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml +2023-03-18 20:54:40.5278 Info Copied haitang.yml +2023-03-18 20:54:40.5278 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml +2023-03-18 20:54:40.5291 Info Copied happyfappy.yml +2023-03-18 20:54:40.5291 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml +2023-03-18 20:54:40.5297 Info Copied hawke-uno.yml +2023-03-18 20:54:40.5297 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml +2023-03-18 20:54:40.5297 Info Copied hd-unit3d-api.yml +2023-03-18 20:54:40.5297 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml +2023-03-18 20:54:40.5309 Info Copied hd4fans.yml +2023-03-18 20:54:40.5309 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml +2023-03-18 20:54:40.5309 Info Copied hdarea.yml +2023-03-18 20:54:40.5317 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml +2023-03-18 20:54:40.5317 Info Copied hdatmos.yml +2023-03-18 20:54:40.5317 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml +2023-03-18 20:54:40.5328 Info Copied hdc.yml +2023-03-18 20:54:40.5408 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml +2023-03-18 20:54:40.5408 Info Copied hdchina.yml +2023-03-18 20:54:40.5418 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml +2023-03-18 20:54:40.5418 Info Copied hdcztorrent.yml +2023-03-18 20:54:40.5418 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml +2023-03-18 20:54:40.5431 Info Copied hddolby.yml +2023-03-18 20:54:40.5437 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml +2023-03-18 20:54:40.5437 Info Copied hdfans.yml +2023-03-18 20:54:40.5437 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml +2023-03-18 20:54:40.5448 Info Copied hdforever.yml +2023-03-18 20:54:40.5448 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml +2023-03-18 20:54:40.5448 Info Copied hdgalaktik.yml +2023-03-18 20:54:40.5458 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml +2023-03-18 20:54:40.5458 Info Copied hdhome.yml +2023-03-18 20:54:40.5458 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml +2023-03-18 20:54:40.5470 Info Copied hdmayi.yml +2023-03-18 20:54:40.5470 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml +2023-03-18 20:54:40.5470 Info Copied hdmonkey.yml +2023-03-18 20:54:40.5481 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml +2023-03-18 20:54:40.5481 Info Copied hdolimpo-api.yml +2023-03-18 20:54:40.5488 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml +2023-03-18 20:54:40.5488 Info Copied hdonly.yml +2023-03-18 20:54:40.5488 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml +2023-03-18 20:54:40.5499 Info Copied hdroute.yml +2023-03-18 20:54:40.5499 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml +2023-03-18 20:54:40.5499 Info Copied hdsky.yml +2023-03-18 20:54:40.5508 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml +2023-03-18 20:54:40.5508 Info Copied hdtime.yml +2023-03-18 20:54:40.5508 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml +2023-03-18 20:54:40.5519 Info Copied hdtorrentsit.yml +2023-03-18 20:54:40.5519 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml +2023-03-18 20:54:40.5527 Info Copied hdturk.yml +2023-03-18 20:54:40.5527 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml +2023-03-18 20:54:40.5527 Info Copied hdu.yml +2023-03-18 20:54:40.5527 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml +2023-03-18 20:54:40.5540 Info Copied hdzone.yml +2023-03-18 20:54:40.5540 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml +2023-03-18 20:54:40.5540 Info Copied hebits.yml +2023-03-18 20:54:40.5548 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml +2023-03-18 20:54:40.5548 Info Copied hellashut.yml +2023-03-18 20:54:40.5548 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml +2023-03-18 20:54:40.5560 Info Copied hhanclub.yml +2023-03-18 20:54:40.5560 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml +2023-03-18 20:54:40.5567 Info Copied houseofdevil.yml +2023-03-18 20:54:40.5567 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml +2023-03-18 20:54:40.5567 Info Copied hqmusic.yml +2023-03-18 20:54:40.5567 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml +2023-03-18 20:54:40.5579 Info Copied huntorrent.yml +2023-03-18 20:54:40.5579 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml +2023-03-18 20:54:40.5579 Info Copied icc2022.yml +2023-03-18 20:54:40.5587 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml +2023-03-18 20:54:40.5587 Info Copied idope.yml +2023-03-18 20:54:40.5587 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml +2023-03-18 20:54:40.5597 Info Copied ihdbits.yml +2023-03-18 20:54:40.5597 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml +2023-03-18 20:54:40.5597 Info Copied ilcorsaroblu.yml +2023-03-18 20:54:40.5597 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml +2023-03-18 20:54:40.5610 Info Copied ilcorsaronero.yml +2023-03-18 20:54:40.5610 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml +2023-03-18 20:54:40.5617 Info Copied immortuos.yml +2023-03-18 20:54:40.5617 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml +2023-03-18 20:54:40.5617 Info Copied indietorrents.yml +2023-03-18 20:54:40.5617 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml +2023-03-18 20:54:40.5629 Info Copied insanetracker.yml +2023-03-18 20:54:40.5629 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml +2023-03-18 20:54:40.5629 Info Copied internetarchive.yml +2023-03-18 20:54:40.5638 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml +2023-03-18 20:54:40.5638 Info Copied isohunt2.yml +2023-03-18 20:54:40.5638 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml +2023-03-18 20:54:40.5648 Info Copied itorrent.yml +2023-03-18 20:54:40.5648 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml +2023-03-18 20:54:40.5648 Info Copied jav-torrent.yml +2023-03-18 20:54:40.5657 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml +2023-03-18 20:54:40.5657 Info Copied jme-reunit3d-api.yml +2023-03-18 20:54:40.5657 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml +2023-03-18 20:54:40.5668 Info Copied joyhd.yml +2023-03-18 20:54:40.5668 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml +2023-03-18 20:54:40.5668 Info Copied jpopsuki.yml +2023-03-18 20:54:40.5668 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml +2023-03-18 20:54:40.5680 Info Copied jptv.yml +2023-03-18 20:54:40.5680 Info Attempting to copy kamept.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/kamept.yml to destination: /app/Jackett/Definitions/kamept.yml +2023-03-18 20:54:40.5690 Info Copied kamept.yml +2023-03-18 20:54:40.5690 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml +2023-03-18 20:54:40.5697 Info Copied karagarga.yml +2023-03-18 20:54:40.5697 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml +2023-03-18 20:54:40.5697 Info Copied keepfriends.yml +2023-03-18 20:54:40.5697 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml +2023-03-18 20:54:40.5710 Info Copied kickasstorrents-to.yml +2023-03-18 20:54:40.5710 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml +2023-03-18 20:54:40.5710 Info Copied kickasstorrents-ws.yml +2023-03-18 20:54:40.5718 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml +2023-03-18 20:54:40.5718 Info Copied kinorun.yml +2023-03-18 20:54:40.5718 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml +2023-03-18 20:54:40.5729 Info Copied kinozal.yml +2023-03-18 20:54:40.5729 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml +2023-03-18 20:54:40.5736 Info Copied knaben.yml +2023-03-18 20:54:40.5736 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml +2023-03-18 20:54:40.5736 Info Copied korsar.yml +2023-03-18 20:54:40.5736 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml +2023-03-18 20:54:40.5750 Info Copied krazyzone.yml +2023-03-18 20:54:40.5750 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml +2023-03-18 20:54:40.5750 Info Copied kufirc.yml +2023-03-18 20:54:40.5758 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml +2023-03-18 20:54:40.5758 Info Copied lastfiles.yml +2023-03-18 20:54:40.5758 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml +2023-03-18 20:54:40.5770 Info Copied lat-team-api.yml +2023-03-18 20:54:40.5770 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml +2023-03-18 20:54:40.5777 Info Copied learnbits.yml +2023-03-18 20:54:40.5777 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml +2023-03-18 20:54:40.5777 Info Copied learnflakes.yml +2023-03-18 20:54:40.5777 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml +2023-03-18 20:54:40.5798 Info Copied leech24.yml +2023-03-18 20:54:40.5798 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml +2023-03-18 20:54:40.5798 Info Copied lemonhd.yml +2023-03-18 20:54:40.5798 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml +2023-03-18 20:54:40.5810 Info Copied lepornoinfo.yml +2023-03-18 20:54:40.5810 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml +2023-03-18 20:54:40.5810 Info Copied les-cinephiles.yml +2023-03-18 20:54:40.5818 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml +2023-03-18 20:54:40.5818 Info Copied lesaloon.yml +2023-03-18 20:54:40.5818 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml +2023-03-18 20:54:40.5828 Info Copied libranet.yml +2023-03-18 20:54:40.5828 Info Attempting to copy lightning-tor.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/lightning-tor.yml to destination: /app/Jackett/Definitions/lightning-tor.yml +2023-03-18 20:54:40.5828 Info Copied lightning-tor.yml +2023-03-18 20:54:40.5839 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml +2023-03-18 20:54:40.5853 Info Copied limetorrents.yml +2023-03-18 20:54:40.5858 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml +2023-03-18 20:54:40.5873 Info Copied limetorrentsclone.yml +2023-03-18 20:54:40.5878 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml +2023-03-18 20:54:40.5890 Info Copied linkomanija.yml +2023-03-18 20:54:40.5890 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml +2023-03-18 20:54:40.5909 Info Copied linuxtracker.yml +2023-03-18 20:54:40.5909 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml +2023-03-18 20:54:40.5928 Info Copied locadora.yml +2023-03-18 20:54:40.5928 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml +2023-03-18 20:54:40.5943 Info Copied losslessclub.yml +2023-03-18 20:54:40.5949 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml +2023-03-18 20:54:40.5961 Info Copied lst.yml +2023-03-18 20:54:40.5967 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml +2023-03-18 20:54:40.5978 Info Copied mactorrentsdownload.yml +2023-03-18 20:54:40.5978 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml +2023-03-18 20:54:40.5995 Info Copied madsrevolution.yml +2023-03-18 20:54:40.6000 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml +2023-03-18 20:54:40.6012 Info Copied magicheaven.yml +2023-03-18 20:54:40.6018 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml +2023-03-18 20:54:40.6029 Info Copied magico.yml +2023-03-18 20:54:40.6029 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml +2023-03-18 20:54:40.6045 Info Copied majomparade.yml +2023-03-18 20:54:40.6051 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml +2023-03-18 20:54:40.6063 Info Copied marinetracker.yml +2023-03-18 20:54:40.6068 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml +2023-03-18 20:54:40.6081 Info Copied mazepa.yml +2023-03-18 20:54:40.6087 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml +2023-03-18 20:54:40.6098 Info Copied megamixtracker.yml +2023-03-18 20:54:40.6098 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml +2023-03-18 20:54:40.6115 Info Copied megapeer.yml +2023-03-18 20:54:40.6120 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml +2023-03-18 20:54:40.6131 Info Copied mesevilag.yml +2023-03-18 20:54:40.6131 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml +2023-03-18 20:54:40.6148 Info Copied metaltracker.yml +2023-03-18 20:54:40.6148 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml +2023-03-18 20:54:40.6164 Info Copied mikan.yml +2023-03-18 20:54:40.6169 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml +2023-03-18 20:54:40.6180 Info Copied milkie.yml +2023-03-18 20:54:40.6180 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml +2023-03-18 20:54:40.6199 Info Copied miobt.yml +2023-03-18 20:54:40.6199 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml +2023-03-18 20:54:40.6214 Info Copied mircrew.yml +2023-03-18 20:54:40.6219 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml +2023-03-18 20:54:40.6229 Info Copied mixtapetorrent.yml +2023-03-18 20:54:40.6229 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml +2023-03-18 20:54:40.6246 Info Copied mma-torrents.yml +2023-03-18 20:54:40.6250 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml +2023-03-18 20:54:40.6261 Info Copied mnv.yml +2023-03-18 20:54:40.6267 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml +2023-03-18 20:54:40.6278 Info Copied mojblink.yml +2023-03-18 20:54:40.6278 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml +2023-03-18 20:54:40.6293 Info Copied mousebits.yml +2023-03-18 20:54:40.6299 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml +2023-03-18 20:54:40.6310 Info Copied moviesdvdr.yml +2023-03-18 20:54:40.6310 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml +2023-03-18 20:54:40.6327 Info Copied moviesite.yml +2023-03-18 20:54:40.6327 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml +2023-03-18 20:54:40.6344 Info Copied movietorrent.yml +2023-03-18 20:54:40.6349 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml +2023-03-18 20:54:40.6360 Info Copied movietorrentz.yml +2023-03-18 20:54:40.6360 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml +2023-03-18 20:54:40.6375 Info Copied mteamtp.yml +2023-03-18 20:54:40.6381 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml +2023-03-18 20:54:40.6392 Info Copied mteamtp2fa.yml +2023-03-18 20:54:40.6397 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml +2023-03-18 20:54:40.6408 Info Copied muziekfabriek.yml +2023-03-18 20:54:40.6408 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml +2023-03-18 20:54:40.6424 Info Copied mvgroupforum.yml +2023-03-18 20:54:40.6430 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml +2023-03-18 20:54:40.6441 Info Copied mvgroupmain.yml +2023-03-18 20:54:40.6441 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml +2023-03-18 20:54:40.6457 Info Copied mypornclub.yml +2023-03-18 20:54:40.6457 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml +2023-03-18 20:54:40.6473 Info Copied myspleen.yml +2023-03-18 20:54:40.6477 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml +2023-03-18 20:54:40.6487 Info Copied nethd.yml +2023-03-18 20:54:40.6487 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml +2023-03-18 20:54:40.6502 Info Copied newretro.yml +2023-03-18 20:54:40.6507 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml +2023-03-18 20:54:40.6507 Info Copied newstudio.yml +2023-03-18 20:54:40.6521 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml +2023-03-18 20:54:40.6531 Info Copied newstudiol.yml +2023-03-18 20:54:40.6531 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml +2023-03-18 20:54:40.6547 Info Copied nicept.yml +2023-03-18 20:54:40.6547 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml +2023-03-18 20:54:40.6561 Info Copied nipponsei.yml +2023-03-18 20:54:40.6561 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml +2023-03-18 20:54:40.6578 Info Copied nntt.yml +2023-03-18 20:54:40.6578 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml +2023-03-18 20:54:40.6597 Info Copied noname-club.yml +2023-03-18 20:54:40.6597 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml +2023-03-18 20:54:40.6614 Info Copied noname-clubl.yml +2023-03-18 20:54:40.6618 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml +2023-03-18 20:54:40.6629 Info Copied nyaasi.yml +2023-03-18 20:54:40.6629 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml +2023-03-18 20:54:40.6645 Info Copied oldtoonsworld.yml +2023-03-18 20:54:40.6649 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml +2023-03-18 20:54:40.6659 Info Copied onejav.yml +2023-03-18 20:54:40.6659 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml +2023-03-18 20:54:40.6675 Info Copied opencd.yml +2023-03-18 20:54:40.6680 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml +2023-03-18 20:54:40.6690 Info Copied oshenpt.yml +2023-03-18 20:54:40.6690 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml +2023-03-18 20:54:40.6704 Info Copied ourbits.yml +2023-03-18 20:54:40.6710 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml +2023-03-18 20:54:40.6721 Info Copied p2pbg.yml +2023-03-18 20:54:40.6721 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml +2023-03-18 20:54:40.6817 Info Copied parnuxi.yml +2023-03-18 20:54:40.6817 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml +2023-03-18 20:54:40.6832 Info Copied partis.yml +2023-03-18 20:54:40.6837 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml +2023-03-18 20:54:40.6848 Info Copied pctorrent.yml +2023-03-18 20:54:40.6848 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml +2023-03-18 20:54:40.6863 Info Copied peeratiko.yml +2023-03-18 20:54:40.6867 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml +2023-03-18 20:54:40.6878 Info Copied peersfm.yml +2023-03-18 20:54:40.6878 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml +2023-03-18 20:54:40.6892 Info Copied pier720.yml +2023-03-18 20:54:40.6892 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml +2023-03-18 20:54:40.6907 Info Copied pignetwork.yml +2023-03-18 20:54:40.6907 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml +2023-03-18 20:54:40.6922 Info Copied piratbit.yml +2023-03-18 20:54:40.6927 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml +2023-03-18 20:54:40.6938 Info Copied piratbitl.yml +2023-03-18 20:54:40.6938 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml +2023-03-18 20:54:40.6953 Info Copied pixelcove.yml +2023-03-18 20:54:40.6958 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml +2023-03-18 20:54:40.6968 Info Copied pixelcove2fa.yml +2023-03-18 20:54:40.6968 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml +2023-03-18 20:54:40.6981 Info Copied polishsource.yml +2023-03-18 20:54:40.6981 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml +2023-03-18 20:54:40.6994 Info Copied polishtracker-api.yml +2023-03-18 20:54:40.6998 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml +2023-03-18 20:54:40.7007 Info Copied pornbay.yml +2023-03-18 20:54:40.7007 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml +2023-03-18 20:54:40.7020 Info Copied pornoslab.yml +2023-03-18 20:54:40.7020 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml +2023-03-18 20:54:40.7034 Info Copied pornotorrent.yml +2023-03-18 20:54:40.7039 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml +2023-03-18 20:54:40.7049 Info Copied portugas-api.yml +2023-03-18 20:54:40.7049 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml +2023-03-18 20:54:40.7061 Info Copied potuk.yml +2023-03-18 20:54:40.7061 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml +2023-03-18 20:54:40.7074 Info Copied proaudiotorrents.yml +2023-03-18 20:54:40.7078 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml +2023-03-18 20:54:40.7088 Info Copied proporno.yml +2023-03-18 20:54:40.7088 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml +2023-03-18 20:54:40.7102 Info Copied ptchina.yml +2023-03-18 20:54:40.7102 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml +2023-03-18 20:54:40.7115 Info Copied pterclub.yml +2023-03-18 20:54:40.7120 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml +2023-03-18 20:54:40.7129 Info Copied ptfiles.yml +2023-03-18 20:54:40.7129 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml +2023-03-18 20:54:40.7141 Info Copied pthome.yml +2023-03-18 20:54:40.7141 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml +2023-03-18 20:54:40.7155 Info Copied ptmsg.yml +2023-03-18 20:54:40.7159 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml +2023-03-18 20:54:40.7168 Info Copied ptsbao.yml +2023-03-18 20:54:40.7168 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml +2023-03-18 20:54:40.7183 Info Copied pttime.yml +2023-03-18 20:54:40.7187 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml +2023-03-18 20:54:40.7198 Info Copied punkshorror.yml +2023-03-18 20:54:40.7198 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml +2023-03-18 20:54:40.7213 Info Copied puntotorrent.yml +2023-03-18 20:54:40.7218 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml +2023-03-18 20:54:40.7228 Info Copied pussytorrents.yml +2023-03-18 20:54:40.7228 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml +2023-03-18 20:54:40.7242 Info Copied putao.yml +2023-03-18 20:54:40.7242 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml +2023-03-18 20:54:40.7256 Info Copied puurhollands.yml +2023-03-18 20:54:40.7260 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml +2023-03-18 20:54:40.7271 Info Copied pwtorrents.yml +2023-03-18 20:54:40.7271 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml +2023-03-18 20:54:40.7284 Info Copied r3vwtf.yml +2023-03-18 20:54:40.7288 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml +2023-03-18 20:54:40.7297 Info Copied racing4everyone-api.yml +2023-03-18 20:54:40.7297 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml +2023-03-18 20:54:40.7311 Info Copied racingforme.yml +2023-03-18 20:54:40.7311 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml +2023-03-18 20:54:40.7324 Info Copied rainbowtracker.yml +2023-03-18 20:54:40.7328 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml +2023-03-18 20:54:40.7338 Info Copied rapidzona.yml +2023-03-18 20:54:40.7338 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml +2023-03-18 20:54:40.7353 Info Copied redbits-api.yml +2023-03-18 20:54:40.7358 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml +2023-03-18 20:54:40.7367 Info Copied redstartorrent.yml +2023-03-18 20:54:40.7367 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml +2023-03-18 20:54:40.7380 Info Copied reelflix-api.yml +2023-03-18 20:54:40.7380 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml +2023-03-18 20:54:40.7395 Info Copied resurrectthenet.yml +2023-03-18 20:54:40.7400 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml +2023-03-18 20:54:40.7410 Info Copied rgfootball.yml +2023-03-18 20:54:40.7410 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml +2023-03-18 20:54:40.7423 Info Copied rintor.yml +2023-03-18 20:54:40.7427 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml +2023-03-18 20:54:40.7427 Info Copied rintornet.yml +2023-03-18 20:54:40.7440 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml +2023-03-18 20:54:40.7450 Info Copied riperam.yml +2023-03-18 20:54:40.7450 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml +2023-03-18 20:54:40.7463 Info Copied rockbox.yml +2023-03-18 20:54:40.7468 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml +2023-03-18 20:54:40.7477 Info Copied romanianmetaltorrents.yml +2023-03-18 20:54:40.7477 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml +2023-03-18 20:54:40.7506 Info Copied rptorrents.yml +2023-03-18 20:54:40.7506 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml +2023-03-18 20:54:40.7522 Info Copied rudub.yml +2023-03-18 20:54:40.7522 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml +2023-03-18 20:54:40.7537 Info Copied rus-media.yml +2023-03-18 20:54:40.7537 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml +2023-03-18 20:54:40.7552 Info Copied rustorka.yml +2023-03-18 20:54:40.7552 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml +2023-03-18 20:54:40.7566 Info Copied rutor.yml +2023-03-18 20:54:40.7570 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml +2023-03-18 20:54:40.7580 Info Copied rutracker-ru.yml +2023-03-18 20:54:40.7580 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml +2023-03-18 20:54:40.7593 Info Copied satclubbing.yml +2023-03-18 20:54:40.7597 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml +2023-03-18 20:54:40.7597 Info Copied scenerush.yml +2023-03-18 20:54:40.7610 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml +2023-03-18 20:54:40.7619 Info Copied sdbits.yml +2023-03-18 20:54:40.7619 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml +2023-03-18 20:54:40.7632 Info Copied seedfile.yml +2023-03-18 20:54:40.7632 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml +2023-03-18 20:54:40.7645 Info Copied seedoff.yml +2023-03-18 20:54:40.7650 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml +2023-03-18 20:54:40.7660 Info Copied selezen.yml +2023-03-18 20:54:40.7660 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml +2023-03-18 20:54:40.7673 Info Copied sexypics.yml +2023-03-18 20:54:40.7677 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml +2023-03-18 20:54:40.7677 Info Copied shanaproject.yml +2023-03-18 20:54:40.7690 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml +2023-03-18 20:54:40.7699 Info Copied shareisland-api.yml +2023-03-18 20:54:40.7699 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml +2023-03-18 20:54:40.7713 Info Copied sharewood.yml +2023-03-18 20:54:40.7713 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml +2023-03-18 20:54:40.7726 Info Copied sharkpt.yml +2023-03-18 20:54:40.7730 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml +2023-03-18 20:54:40.7739 Info Copied showrss.yml +2023-03-18 20:54:40.7739 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml +2023-03-18 20:54:40.7753 Info Copied siambit.yml +2023-03-18 20:54:40.7757 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml +2023-03-18 20:54:40.7757 Info Copied skipthecommercials-api.yml +2023-03-18 20:54:40.7770 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml +2023-03-18 20:54:40.7780 Info Copied skipthetrailers.yml +2023-03-18 20:54:40.7780 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml +2023-03-18 20:54:40.7793 Info Copied sktorrent-org.yml +2023-03-18 20:54:40.7797 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml +2023-03-18 20:54:40.7807 Info Copied sktorrent.yml +2023-03-18 20:54:40.7807 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml +2023-03-18 20:54:40.7822 Info Copied slosoul.yml +2023-03-18 20:54:40.7822 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml +2023-03-18 20:54:40.7835 Info Copied snowpt.yml +2023-03-18 20:54:40.7839 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml +2023-03-18 20:54:40.7848 Info Copied solidtorrents.yml +2023-03-18 20:54:40.7848 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml +2023-03-18 20:54:40.7861 Info Copied sosulki.yml +2023-03-18 20:54:40.7861 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml +2023-03-18 20:54:40.7875 Info Copied soulvoice.yml +2023-03-18 20:54:40.7880 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml +2023-03-18 20:54:40.7889 Info Copied speedmasterhd.yml +2023-03-18 20:54:40.7889 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml +2023-03-18 20:54:40.7902 Info Copied speedtorrentreloaded.yml +2023-03-18 20:54:40.7902 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml +2023-03-18 20:54:40.7915 Info Copied spidertk.yml +2023-03-18 20:54:40.7920 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml +2023-03-18 20:54:40.7929 Info Copied spiritofrevolution.yml +2023-03-18 20:54:40.7929 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml +2023-03-18 20:54:40.7944 Info Copied sporthd.yml +2023-03-18 20:54:40.7948 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml +2023-03-18 20:54:40.7958 Info Copied sportscult.yml +2023-03-18 20:54:40.7958 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml +2023-03-18 20:54:40.7971 Info Copied springsunday.yml +2023-03-18 20:54:40.7971 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml +2023-03-18 20:54:40.7986 Info Copied sugoimusic.yml +2023-03-18 20:54:40.7990 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml +2023-03-18 20:54:40.8000 Info Copied sukebeinyaasi.yml +2023-03-18 20:54:40.8000 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml +2023-03-18 20:54:40.8013 Info Copied superbits.yml +2023-03-18 20:54:40.8017 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml +2023-03-18 20:54:40.8017 Info Copied swarmazon-api.yml +2023-03-18 20:54:40.8030 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml +2023-03-18 20:54:40.8041 Info Copied tapochek.yml +2023-03-18 20:54:40.8041 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml +2023-03-18 20:54:40.8055 Info Copied tasmanit.yml +2023-03-18 20:54:40.8059 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml +2023-03-18 20:54:40.8069 Info Copied teamctgame.yml +2023-03-18 20:54:40.8069 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml +2023-03-18 20:54:40.8082 Info Copied teamhd.yml +2023-03-18 20:54:40.8082 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml +2023-03-18 20:54:40.8096 Info Copied teamos.yml +2023-03-18 20:54:40.8101 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml +2023-03-18 20:54:40.8112 Info Copied tekno3d.yml +2023-03-18 20:54:40.8117 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml +2023-03-18 20:54:40.8127 Info Copied tellytorrent-api.yml +2023-03-18 20:54:40.8127 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml +2023-03-18 20:54:40.8143 Info Copied teracod.yml +2023-03-18 20:54:40.8148 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml +2023-03-18 20:54:40.8158 Info Copied the-crazy-ones.yml +2023-03-18 20:54:40.8158 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml +2023-03-18 20:54:40.8173 Info Copied thedarkcommunity-api.yml +2023-03-18 20:54:40.8177 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml +2023-03-18 20:54:40.8187 Info Copied theempire.yml +2023-03-18 20:54:40.8187 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml +2023-03-18 20:54:40.8201 Info Copied thefallingangels.yml +2023-03-18 20:54:40.8201 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml +2023-03-18 20:54:40.8216 Info Copied thegeeks.yml +2023-03-18 20:54:40.8221 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml +2023-03-18 20:54:40.8231 Info Copied theleachzone.yml +2023-03-18 20:54:40.8231 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml +2023-03-18 20:54:40.8245 Info Copied themixingbowl.yml +2023-03-18 20:54:40.8251 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml +2023-03-18 20:54:40.8260 Info Copied thenewfun.yml +2023-03-18 20:54:40.8260 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml +2023-03-18 20:54:40.8274 Info Copied theoccult.yml +2023-03-18 20:54:40.8278 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml +2023-03-18 20:54:40.8288 Info Copied theoldschool-api.yml +2023-03-18 20:54:40.8288 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml +2023-03-18 20:54:40.8302 Info Copied thepiratebay.yml +2023-03-18 20:54:40.8307 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml +2023-03-18 20:54:40.8307 Info Copied theplace.yml +2023-03-18 20:54:40.8320 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml +2023-03-18 20:54:40.8330 Info Copied thesceneplace.yml +2023-03-18 20:54:40.8330 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml +2023-03-18 20:54:40.8343 Info Copied theshinning-api.yml +2023-03-18 20:54:40.8347 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml +2023-03-18 20:54:40.8347 Info Copied theshow.yml +2023-03-18 20:54:40.8360 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml +2023-03-18 20:54:40.8369 Info Copied thevault.yml +2023-03-18 20:54:40.8369 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml +2023-03-18 20:54:40.8383 Info Copied tjupt.yml +2023-03-18 20:54:40.8387 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml +2023-03-18 20:54:40.8387 Info Copied tlfbits.yml +2023-03-18 20:54:40.8401 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml +2023-03-18 20:54:40.8410 Info Copied tmghub.yml +2023-03-18 20:54:40.8410 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml +2023-03-18 20:54:40.8423 Info Copied tokyotosho.yml +2023-03-18 20:54:40.8427 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml +2023-03-18 20:54:40.8437 Info Copied torlock.yml +2023-03-18 20:54:40.8437 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml +2023-03-18 20:54:40.8450 Info Copied tornado.yml +2023-03-18 20:54:40.8450 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml +2023-03-18 20:54:40.8463 Info Copied torrent-explosiv.yml +2023-03-18 20:54:40.8468 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml +2023-03-18 20:54:40.8478 Info Copied torrent-pirat.yml +2023-03-18 20:54:40.8478 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml +2023-03-18 20:54:40.8490 Info Copied torrent-turk.yml +2023-03-18 20:54:40.8490 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml +2023-03-18 20:54:40.8505 Info Copied torrent9.yml +2023-03-18 20:54:40.8510 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml +2023-03-18 20:54:40.8519 Info Copied torrent911.yml +2023-03-18 20:54:40.8519 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml +2023-03-18 20:54:40.8549 Info Copied torrent9clone.yml +2023-03-18 20:54:40.8549 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml +2023-03-18 20:54:40.8564 Info Copied torrentbd.yml +2023-03-18 20:54:40.8568 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml +2023-03-18 20:54:40.8577 Info Copied torrentby.yml +2023-03-18 20:54:40.8577 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml +2023-03-18 20:54:40.8591 Info Copied torrentccf.yml +2023-03-18 20:54:40.8591 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml +2023-03-18 20:54:40.8604 Info Copied torrentcore.yml +2023-03-18 20:54:40.8608 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml +2023-03-18 20:54:40.8618 Info Copied torrentdownload.yml +2023-03-18 20:54:40.8618 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml +2023-03-18 20:54:40.8630 Info Copied torrentdownloads.yml +2023-03-18 20:54:40.8630 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml +2023-03-18 20:54:40.8644 Info Copied torrentfunk.yml +2023-03-18 20:54:40.8649 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml +2023-03-18 20:54:40.8660 Info Copied torrentgalaxy.yml +2023-03-18 20:54:40.8660 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml +2023-03-18 20:54:40.8672 Info Copied torrenthr.yml +2023-03-18 20:54:40.8672 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml +2023-03-18 20:54:40.8686 Info Copied torrenting.yml +2023-03-18 20:54:40.8691 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml +2023-03-18 20:54:40.8699 Info Copied torrentkitty.yml +2023-03-18 20:54:40.8699 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml +2023-03-18 20:54:40.8714 Info Copied torrentland.yml +2023-03-18 20:54:40.8718 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml +2023-03-18 20:54:40.8727 Info Copied torrentleech-pl.yml +2023-03-18 20:54:40.8727 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml +2023-03-18 20:54:40.8741 Info Copied torrentleech.yml +2023-03-18 20:54:40.8741 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml +2023-03-18 20:54:40.8754 Info Copied torrentlt.yml +2023-03-18 20:54:40.8759 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml +2023-03-18 20:54:40.8769 Info Copied torrentmasters.yml +2023-03-18 20:54:40.8769 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml +2023-03-18 20:54:40.8781 Info Copied torrentoyunindir.yml +2023-03-18 20:54:40.8781 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml +2023-03-18 20:54:40.8795 Info Copied torrentproject2.yml +2023-03-18 20:54:40.8800 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml +2023-03-18 20:54:40.8811 Info Copied torrentqq.yml +2023-03-18 20:54:40.8811 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml +2023-03-18 20:54:40.8826 Info Copied torrentsectorcrew.yml +2023-03-18 20:54:40.8830 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml +2023-03-18 20:54:40.8841 Info Copied torrentseeds-api.yml +2023-03-18 20:54:40.8841 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml +2023-03-18 20:54:40.8855 Info Copied torrentsir.yml +2023-03-18 20:54:40.8859 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml +2023-03-18 20:54:40.8870 Info Copied torrentslocal.yml +2023-03-18 20:54:40.8870 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml +2023-03-18 20:54:40.8882 Info Copied torrentv.yml +2023-03-18 20:54:40.8882 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml +2023-03-18 20:54:40.8895 Info Copied torrentview.yml +2023-03-18 20:54:40.8899 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml +2023-03-18 20:54:40.8908 Info Copied torrentwhiz.yml +2023-03-18 20:54:40.8908 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml +2023-03-18 20:54:40.8921 Info Copied torrentz2eu.yml +2023-03-18 20:54:40.8921 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml +2023-03-18 20:54:40.8935 Info Copied torrentz2nz.yml +2023-03-18 20:54:40.8939 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml +2023-03-18 20:54:40.8948 Info Copied totallykids.yml +2023-03-18 20:54:40.8948 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml +2023-03-18 20:54:40.8995 Info Copied totheglory.yml +2023-03-18 20:54:40.9000 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml +2023-03-18 20:54:40.9012 Info Copied totheglorycookie.yml +2023-03-18 20:54:40.9017 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml +2023-03-18 20:54:40.9027 Info Copied traht.yml +2023-03-18 20:54:40.9027 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml +2023-03-18 20:54:40.9040 Info Copied trancetraffic.yml +2023-03-18 20:54:40.9040 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml +2023-03-18 20:54:40.9056 Info Copied trezzor.yml +2023-03-18 20:54:40.9060 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml +2023-03-18 20:54:40.9071 Info Copied tribalmixes.yml +2023-03-18 20:54:40.9071 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml +2023-03-18 20:54:40.9087 Info Copied trupornolabs.yml +2023-03-18 20:54:40.9087 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml +2023-03-18 20:54:40.9100 Info Copied turkseed.yml +2023-03-18 20:54:40.9100 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml +2023-03-18 20:54:40.9113 Info Copied turktorrent.yml +2023-03-18 20:54:40.9117 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml +2023-03-18 20:54:40.9117 Info Copied tvchaosuk.yml +2023-03-18 20:54:40.9130 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml +2023-03-18 20:54:40.9140 Info Copied tvroad.yml +2023-03-18 20:54:40.9140 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml +2023-03-18 20:54:40.9153 Info Copied twilight.yml +2023-03-18 20:54:40.9158 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml +2023-03-18 20:54:40.9169 Info Copied u2.yml +2023-03-18 20:54:40.9169 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml +2023-03-18 20:54:40.9182 Info Copied uhdbits.yml +2023-03-18 20:54:40.9182 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml +2023-03-18 20:54:40.9349 Info Copied uniondht.yml +2023-03-18 20:54:40.9349 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml +2023-03-18 20:54:40.9364 Info Copied unionfansub.yml +2023-03-18 20:54:40.9368 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml +2023-03-18 20:54:40.9379 Info Copied uniongang.yml +2023-03-18 20:54:40.9379 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml +2023-03-18 20:54:40.9392 Info Copied unleashthecartoons.yml +2023-03-18 20:54:40.9397 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml +2023-03-18 20:54:40.9397 Info Copied unlimitz.yml +2023-03-18 20:54:40.9410 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml +2023-03-18 20:54:40.9419 Info Copied vsthouse.yml +2023-03-18 20:54:40.9419 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml +2023-03-18 20:54:40.9433 Info Copied vsttorrents.yml +2023-03-18 20:54:40.9437 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml +2023-03-18 20:54:40.9437 Info Copied vtorrent.yml +2023-03-18 20:54:40.9450 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml +2023-03-18 20:54:40.9462 Info Copied whiteangel.yml +2023-03-18 20:54:40.9467 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml +2023-03-18 20:54:40.9478 Info Copied wihd.yml +2023-03-18 20:54:40.9478 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml +2023-03-18 20:54:40.9492 Info Copied world-of-tomorrow.yml +2023-03-18 20:54:40.9497 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml +2023-03-18 20:54:40.9507 Info Copied x-ite.me.yml +2023-03-18 20:54:40.9507 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml +2023-03-18 20:54:40.9521 Info Copied xbytes2.yml +2023-03-18 20:54:40.9521 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml +2023-03-18 20:54:40.9535 Info Copied xthor-api.yml +2023-03-18 20:54:40.9540 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml +2023-03-18 20:54:40.9550 Info Copied xtorrenty.yml +2023-03-18 20:54:40.9550 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml +2023-03-18 20:54:40.9563 Info Copied xtremebytes.yml +2023-03-18 20:54:40.9567 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml +2023-03-18 20:54:40.9578 Info Copied xwtclassics.yml +2023-03-18 20:54:40.9578 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml +2023-03-18 20:54:40.9590 Info Copied xwtorrents.yml +2023-03-18 20:54:40.9590 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml +2023-03-18 20:54:40.9603 Info Copied xxxadulttorrent.yml +2023-03-18 20:54:40.9607 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml +2023-03-18 20:54:40.9607 Info Copied xxxtor.yml +2023-03-18 20:54:40.9620 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml +2023-03-18 20:54:40.9629 Info Copied xxxtorrents.yml +2023-03-18 20:54:40.9629 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml +2023-03-18 20:54:40.9644 Info Copied ydypt.yml +2023-03-18 20:54:40.9648 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml +2023-03-18 20:54:40.9660 Info Copied yggcookie.yml +2023-03-18 20:54:40.9660 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml +2023-03-18 20:54:40.9674 Info Copied yggtorrent.yml +2023-03-18 20:54:40.9679 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml +2023-03-18 20:54:40.9688 Info Copied yourbittorrent.yml +2023-03-18 20:54:40.9688 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml +2023-03-18 20:54:40.9702 Info Copied yts.yml +2023-03-18 20:54:40.9702 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml +2023-03-18 20:54:40.9717 Info Copied zamundanet.yml +2023-03-18 20:54:40.9717 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml +2023-03-18 20:54:40.9731 Info Copied zelkaorg.yml +2023-03-18 20:54:40.9731 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml +2023-03-18 20:54:40.9744 Info Copied zetorrents.yml +2023-03-18 20:54:40.9749 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml +2023-03-18 20:54:40.9759 Info Copied zmpt.yml +2023-03-18 20:54:40.9759 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml +2023-03-18 20:54:40.9771 Info Copied zomb.yml +2023-03-18 20:54:40.9771 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml +2023-03-18 20:54:40.9784 Info Copied ztracker.yml +2023-03-18 20:54:40.9788 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll +2023-03-18 20:54:40.9798 Info Copied FlareSolverrSharp.dll +2023-03-18 20:54:40.9798 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll +2023-03-18 20:54:40.9835 Info Copied ICSharpCode.SharpZipLib.dll +2023-03-18 20:54:40.9840 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh +2023-03-18 20:54:40.9863 Info Copied install_service_systemd.sh +2023-03-18 20:54:40.9868 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/jackett to destination: /app/Jackett/jackett +2023-03-18 20:54:40.9883 Info Copied jackett +2023-03-18 20:54:40.9887 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh +2023-03-18 20:54:40.9898 Info Copied jackett_launcher.sh +2023-03-18 20:54:40.9898 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll +2023-03-18 20:54:40.9958 Info Copied Jackett.Common.dll +2023-03-18 20:54:40.9958 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb +2023-03-18 20:54:40.9983 Info Copied Jackett.Common.pdb +2023-03-18 20:54:40.9987 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json +2023-03-18 20:54:41.0003 Info Copied jackett.deps.json +2023-03-18 20:54:41.0007 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll +2023-03-18 20:54:41.0034 Info Copied jackett.dll +2023-03-18 20:54:41.0039 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb +2023-03-18 20:54:41.0053 Info Copied jackett.pdb +2023-03-18 20:54:41.0057 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json +2023-03-18 20:54:41.0067 Info Copied jackett.runtimeconfig.json +2023-03-18 20:54:41.0067 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater +2023-03-18 20:54:41.0084 Info Copied JackettUpdater +2023-03-18 20:54:41.0088 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json +2023-03-18 20:54:41.0100 Info Copied JackettUpdater.deps.json +2023-03-18 20:54:41.0100 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll +2023-03-18 20:54:41.0128 Info Copied JackettUpdater.dll +2023-03-18 20:54:41.0128 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb +2023-03-18 20:54:41.0143 Info Copied JackettUpdater.pdb +2023-03-18 20:54:41.0148 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json +2023-03-18 20:54:41.0157 Info Copied JackettUpdater.runtimeconfig.json +2023-03-18 20:54:41.0157 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so +2023-03-18 20:54:41.0252 Info Copied libclrjit.so +2023-03-18 20:54:41.0257 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so +2023-03-18 20:54:41.0540 Info Copied libcoreclr.so +2023-03-18 20:54:41.0548 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so +2023-03-18 20:54:41.0592 Info Copied libcoreclrtraceptprovider.so +2023-03-18 20:54:41.0592 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so +2023-03-18 20:54:41.0632 Info Copied libdbgshim.so +2023-03-18 20:54:41.0637 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so +2023-03-18 20:54:41.0661 Info Copied libhostfxr.so +2023-03-18 20:54:41.0661 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so +2023-03-18 20:54:41.0688 Info Copied libhostpolicy.so +2023-03-18 20:54:41.0688 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so +2023-03-18 20:54:41.0709 Info Copied libMono.Unix.so +2023-03-18 20:54:41.0709 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so +2023-03-18 20:54:41.0823 Info Copied libmscordaccore.so +2023-03-18 20:54:41.0828 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so +2023-03-18 20:54:41.0909 Info Copied libmscordbi.so +2023-03-18 20:54:41.0909 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so +2023-03-18 20:54:41.0929 Info Copied libSystem.Globalization.Native.so +2023-03-18 20:54:41.0929 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so +2023-03-18 20:54:41.0984 Info Copied libSystem.IO.Compression.Native.so +2023-03-18 20:54:41.0989 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so +2023-03-18 20:54:41.1004 Info Copied libSystem.Native.so +2023-03-18 20:54:41.1009 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so +2023-03-18 20:54:41.1021 Info Copied libSystem.Net.Security.Native.so +2023-03-18 20:54:41.1029 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so +2023-03-18 20:54:41.1046 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so +2023-03-18 20:54:41.1050 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/LICENSE to destination: /app/Jackett/LICENSE +2023-03-18 20:54:41.1063 Info Copied LICENSE +2023-03-18 20:54:41.1068 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll +2023-03-18 20:54:41.1086 Info Copied Microsoft.AspNetCore.Antiforgery.dll +2023-03-18 20:54:41.1090 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-03-18 20:54:41.1104 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-03-18 20:54:41.1108 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll +2023-03-18 20:54:41.1125 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll +2023-03-18 20:54:41.1130 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll +2023-03-18 20:54:41.1146 Info Copied Microsoft.AspNetCore.Authentication.Core.dll +2023-03-18 20:54:41.1150 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll +2023-03-18 20:54:41.1170 Info Copied Microsoft.AspNetCore.Authentication.dll +2023-03-18 20:54:41.1170 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll +2023-03-18 20:54:41.1191 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll +2023-03-18 20:54:41.1191 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll +2023-03-18 20:54:41.1210 Info Copied Microsoft.AspNetCore.Authorization.dll +2023-03-18 20:54:41.1210 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll +2023-03-18 20:54:41.1230 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll +2023-03-18 20:54:41.1230 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll +2023-03-18 20:54:41.1247 Info Copied Microsoft.AspNetCore.Components.Authorization.dll +2023-03-18 20:54:41.1247 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll +2023-03-18 20:54:41.1288 Info Copied Microsoft.AspNetCore.Components.dll +2023-03-18 20:54:41.1288 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll +2023-03-18 20:54:41.1308 Info Copied Microsoft.AspNetCore.Components.Forms.dll +2023-03-18 20:54:41.1308 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll +2023-03-18 20:54:41.1364 Info Copied Microsoft.AspNetCore.Components.Server.dll +2023-03-18 20:54:41.1368 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll +2023-03-18 20:54:41.1392 Info Copied Microsoft.AspNetCore.Components.Web.dll +2023-03-18 20:54:41.1392 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll +2023-03-18 20:54:41.1413 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll +2023-03-18 20:54:41.1418 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll +2023-03-18 20:54:41.1435 Info Copied Microsoft.AspNetCore.CookiePolicy.dll +2023-03-18 20:54:41.1439 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll +2023-03-18 20:54:41.1453 Info Copied Microsoft.AspNetCore.Cors.dll +2023-03-18 20:54:41.1453 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll +2023-03-18 20:54:41.1470 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll +2023-03-18 20:54:41.1470 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-03-18 20:54:41.1487 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-03-18 20:54:41.1487 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-03-18 20:54:41.1502 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-03-18 20:54:41.1502 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll +2023-03-18 20:54:41.1534 Info Copied Microsoft.AspNetCore.DataProtection.dll +2023-03-18 20:54:41.1538 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-03-18 20:54:41.1549 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-03-18 20:54:41.1549 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-03-18 20:54:41.1563 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-03-18 20:54:41.1567 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll +2023-03-18 20:54:41.1595 Info Copied Microsoft.AspNetCore.Diagnostics.dll +2023-03-18 20:54:41.1599 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-03-18 20:54:41.1610 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-03-18 20:54:41.1610 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll +2023-03-18 20:54:41.1628 Info Copied Microsoft.AspNetCore.dll +2023-03-18 20:54:41.1628 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll +2023-03-18 20:54:41.1644 Info Copied Microsoft.AspNetCore.HostFiltering.dll +2023-03-18 20:54:41.1648 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-03-18 20:54:41.1659 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-03-18 20:54:41.1659 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll +2023-03-18 20:54:41.1689 Info Copied Microsoft.AspNetCore.Hosting.dll +2023-03-18 20:54:41.1689 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-03-18 20:54:41.1703 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-03-18 20:54:41.1707 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll +2023-03-18 20:54:41.1718 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll +2023-03-18 20:54:41.1718 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll +2023-03-18 20:54:41.1747 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll +2023-03-18 20:54:41.1747 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll +2023-03-18 20:54:41.1762 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll +2023-03-18 20:54:41.1762 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll +2023-03-18 20:54:41.1789 Info Copied Microsoft.AspNetCore.Http.Connections.dll +2023-03-18 20:54:41.1789 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll +2023-03-18 20:54:41.1815 Info Copied Microsoft.AspNetCore.Http.dll +2023-03-18 20:54:41.1819 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll +2023-03-18 20:54:41.1842 Info Copied Microsoft.AspNetCore.Http.Extensions.dll +2023-03-18 20:54:41.1842 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll +2023-03-18 20:54:41.1858 Info Copied Microsoft.AspNetCore.Http.Features.dll +2023-03-18 20:54:41.1858 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll +2023-03-18 20:54:41.1877 Info Copied Microsoft.AspNetCore.Http.Results.dll +2023-03-18 20:54:41.1877 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll +2023-03-18 20:54:41.1898 Info Copied Microsoft.AspNetCore.HttpLogging.dll +2023-03-18 20:54:41.1898 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll +2023-03-18 20:54:41.1914 Info Copied Microsoft.AspNetCore.HttpOverrides.dll +2023-03-18 20:54:41.1918 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll +2023-03-18 20:54:41.1929 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll +2023-03-18 20:54:41.1929 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll +2023-03-18 20:54:41.1950 Info Copied Microsoft.AspNetCore.Identity.dll +2023-03-18 20:54:41.1950 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll +2023-03-18 20:54:41.1966 Info Copied Microsoft.AspNetCore.JsonPatch.dll +2023-03-18 20:54:41.1970 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll +2023-03-18 20:54:41.1981 Info Copied Microsoft.AspNetCore.Localization.dll +2023-03-18 20:54:41.1981 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll +2023-03-18 20:54:41.1996 Info Copied Microsoft.AspNetCore.Localization.Routing.dll +2023-03-18 20:54:41.2000 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll +2023-03-18 20:54:41.2009 Info Copied Microsoft.AspNetCore.Metadata.dll +2023-03-18 20:54:41.2009 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-03-18 20:54:41.2032 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-03-18 20:54:41.2032 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-03-18 20:54:41.2054 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-03-18 20:54:41.2058 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll +2023-03-18 20:54:41.2144 Info Copied Microsoft.AspNetCore.Mvc.Core.dll +2023-03-18 20:54:41.2149 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll +2023-03-18 20:54:41.2161 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll +2023-03-18 20:54:41.2161 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-03-18 20:54:41.2181 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-03-18 20:54:41.2181 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll +2023-03-18 20:54:41.2196 Info Copied Microsoft.AspNetCore.Mvc.dll +2023-03-18 20:54:41.2200 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-03-18 20:54:41.2210 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-03-18 20:54:41.2210 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-03-18 20:54:41.2232 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-03-18 20:54:41.2238 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll +2023-03-18 20:54:41.2250 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll +2023-03-18 20:54:41.2250 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-03-18 20:54:41.2268 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-03-18 20:54:41.2268 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll +2023-03-18 20:54:41.2290 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll +2023-03-18 20:54:41.2290 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-03-18 20:54:41.2318 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-03-18 20:54:41.2318 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-03-18 20:54:41.2343 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-03-18 20:54:41.2347 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-03-18 20:54:41.2385 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-03-18 20:54:41.2390 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll +2023-03-18 20:54:41.2402 Info Copied Microsoft.AspNetCore.Razor.dll +2023-03-18 20:54:41.2402 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll +2023-03-18 20:54:41.2418 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll +2023-03-18 20:54:41.2418 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-03-18 20:54:41.2433 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-03-18 20:54:41.2437 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll +2023-03-18 20:54:41.2451 Info Copied Microsoft.AspNetCore.ResponseCaching.dll +2023-03-18 20:54:41.2451 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll +2023-03-18 20:54:41.2469 Info Copied Microsoft.AspNetCore.ResponseCompression.dll +2023-03-18 20:54:41.2469 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll +2023-03-18 20:54:41.2491 Info Copied Microsoft.AspNetCore.Rewrite.dll +2023-03-18 20:54:41.2491 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll +2023-03-18 20:54:41.2507 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll +2023-03-18 20:54:41.2507 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll +2023-03-18 20:54:41.2550 Info Copied Microsoft.AspNetCore.Routing.dll +2023-03-18 20:54:41.2550 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll +2023-03-18 20:54:41.2586 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll +2023-03-18 20:54:41.2590 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll +2023-03-18 20:54:41.2625 Info Copied Microsoft.AspNetCore.Server.IIS.dll +2023-03-18 20:54:41.2629 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll +2023-03-18 20:54:41.2641 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll +2023-03-18 20:54:41.2641 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-03-18 20:54:41.2760 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-03-18 20:54:41.2760 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll +2023-03-18 20:54:41.2777 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll +2023-03-18 20:54:41.2777 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-03-18 20:54:41.2801 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-03-18 20:54:41.2801 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-03-18 20:54:41.2821 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-03-18 20:54:41.2821 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll +2023-03-18 20:54:41.2840 Info Copied Microsoft.AspNetCore.Session.dll +2023-03-18 20:54:41.2840 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll +2023-03-18 20:54:41.2859 Info Copied Microsoft.AspNetCore.SignalR.Common.dll +2023-03-18 20:54:41.2859 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll +2023-03-18 20:54:41.2888 Info Copied Microsoft.AspNetCore.SignalR.Core.dll +2023-03-18 20:54:41.2888 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll +2023-03-18 20:54:41.2901 Info Copied Microsoft.AspNetCore.SignalR.dll +2023-03-18 20:54:41.2901 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-03-18 20:54:41.2919 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-03-18 20:54:41.2919 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll +2023-03-18 20:54:41.2940 Info Copied Microsoft.AspNetCore.StaticFiles.dll +2023-03-18 20:54:41.2940 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll +2023-03-18 20:54:41.2992 Info Copied Microsoft.AspNetCore.WebSockets.dll +2023-03-18 20:54:41.2992 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll +2023-03-18 20:54:41.3017 Info Copied Microsoft.AspNetCore.WebUtilities.dll +2023-03-18 20:54:41.3017 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll +2023-03-18 20:54:41.3067 Info Copied Microsoft.CSharp.dll +2023-03-18 20:54:41.3067 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll +2023-03-18 20:54:41.3082 Info Copied Microsoft.Extensions.Caching.Abstractions.dll +2023-03-18 20:54:41.3087 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll +2023-03-18 20:54:41.3100 Info Copied Microsoft.Extensions.Caching.Memory.dll +2023-03-18 20:54:41.3100 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll +2023-03-18 20:54:41.3115 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll +2023-03-18 20:54:41.3119 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll +2023-03-18 20:54:41.3132 Info Copied Microsoft.Extensions.Configuration.Binder.dll +2023-03-18 20:54:41.3132 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll +2023-03-18 20:54:41.3148 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll +2023-03-18 20:54:41.3148 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll +2023-03-18 20:54:41.3165 Info Copied Microsoft.Extensions.Configuration.dll +2023-03-18 20:54:41.3170 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-03-18 20:54:41.3181 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-03-18 20:54:41.3181 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll +2023-03-18 20:54:41.3201 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll +2023-03-18 20:54:41.3201 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll +2023-03-18 20:54:41.3217 Info Copied Microsoft.Extensions.Configuration.Ini.dll +2023-03-18 20:54:41.3217 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll +2023-03-18 20:54:41.3233 Info Copied Microsoft.Extensions.Configuration.Json.dll +2023-03-18 20:54:41.3237 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-03-18 20:54:41.3250 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-03-18 20:54:41.3250 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll +2023-03-18 20:54:41.3266 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll +2023-03-18 20:54:41.3270 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll +2023-03-18 20:54:41.3282 Info Copied Microsoft.Extensions.Configuration.Xml.dll +2023-03-18 20:54:41.3282 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-03-18 20:54:41.3300 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-03-18 20:54:41.3300 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll +2023-03-18 20:54:41.3321 Info Copied Microsoft.Extensions.DependencyInjection.dll +2023-03-18 20:54:41.3321 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-03-18 20:54:41.3338 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-03-18 20:54:41.3338 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-03-18 20:54:41.3355 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-03-18 20:54:41.3359 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll +2023-03-18 20:54:41.3369 Info Copied Microsoft.Extensions.Features.dll +2023-03-18 20:54:41.3369 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll +2023-03-18 20:54:41.3384 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll +2023-03-18 20:54:41.3388 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll +2023-03-18 20:54:41.3398 Info Copied Microsoft.Extensions.FileProviders.Composite.dll +2023-03-18 20:54:41.3398 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll +2023-03-18 20:54:41.3414 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll +2023-03-18 20:54:41.3418 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll +2023-03-18 20:54:41.4332 Info Copied Microsoft.Extensions.FileProviders.Physical.dll +2023-03-18 20:54:41.4339 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll +2023-03-18 20:54:41.4356 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll +2023-03-18 20:54:41.4360 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll +2023-03-18 20:54:41.4372 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll +2023-03-18 20:54:41.4372 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll +2023-03-18 20:54:41.4392 Info Copied Microsoft.Extensions.Hosting.dll +2023-03-18 20:54:41.4392 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll +2023-03-18 20:54:41.4410 Info Copied Microsoft.Extensions.Http.dll +2023-03-18 20:54:41.4410 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll +2023-03-18 20:54:41.4441 Info Copied Microsoft.Extensions.Identity.Core.dll +2023-03-18 20:54:41.4441 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll +2023-03-18 20:54:41.4458 Info Copied Microsoft.Extensions.Identity.Stores.dll +2023-03-18 20:54:41.4458 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll +2023-03-18 20:54:41.4472 Info Copied Microsoft.Extensions.Localization.Abstractions.dll +2023-03-18 20:54:41.4472 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll +2023-03-18 20:54:41.4487 Info Copied Microsoft.Extensions.Localization.dll +2023-03-18 20:54:41.4487 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll +2023-03-18 20:54:41.4508 Info Copied Microsoft.Extensions.Logging.Abstractions.dll +2023-03-18 20:54:41.4508 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll +2023-03-18 20:54:41.4522 Info Copied Microsoft.Extensions.Logging.Configuration.dll +2023-03-18 20:54:41.4522 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll +2023-03-18 20:54:41.5056 Info Copied Microsoft.Extensions.Logging.Console.dll +2023-03-18 20:54:41.5056 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll +2023-03-18 20:54:41.5072 Info Copied Microsoft.Extensions.Logging.Debug.dll +2023-03-18 20:54:41.5072 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll +2023-03-18 20:54:41.5091 Info Copied Microsoft.Extensions.Logging.dll +2023-03-18 20:54:41.5091 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll +2023-03-18 20:54:41.5107 Info Copied Microsoft.Extensions.Logging.EventLog.dll +2023-03-18 20:54:41.5107 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll +2023-03-18 20:54:41.5123 Info Copied Microsoft.Extensions.Logging.EventSource.dll +2023-03-18 20:54:41.5129 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll +2023-03-18 20:54:41.5140 Info Copied Microsoft.Extensions.Logging.TraceSource.dll +2023-03-18 20:54:41.5140 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll +2023-03-18 20:54:41.5155 Info Copied Microsoft.Extensions.ObjectPool.dll +2023-03-18 20:54:41.5159 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-03-18 20:54:41.5171 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-03-18 20:54:41.5171 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll +2023-03-18 20:54:41.5186 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll +2023-03-18 20:54:41.5191 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll +2023-03-18 20:54:41.5207 Info Copied Microsoft.Extensions.Options.dll +2023-03-18 20:54:41.5207 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll +2023-03-18 20:54:41.5226 Info Copied Microsoft.Extensions.Primitives.dll +2023-03-18 20:54:41.5230 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll +2023-03-18 20:54:41.5241 Info Copied Microsoft.Extensions.WebEncoders.dll +2023-03-18 20:54:41.5241 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll +2023-03-18 20:54:41.5425 Info Copied Microsoft.JSInterop.dll +2023-03-18 20:54:41.5433 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll +2023-03-18 20:54:41.5459 Info Copied Microsoft.Net.Http.Headers.dll +2023-03-18 20:54:41.5459 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll +2023-03-18 20:54:41.5539 Info Copied Microsoft.VisualBasic.Core.dll +2023-03-18 20:54:41.5539 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll +2023-03-18 20:54:41.5557 Info Copied Microsoft.VisualBasic.dll +2023-03-18 20:54:41.5557 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll +2023-03-18 20:54:41.5574 Info Copied Microsoft.Win32.Primitives.dll +2023-03-18 20:54:41.5579 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll +2023-03-18 20:54:41.5592 Info Copied Microsoft.Win32.Registry.dll +2023-03-18 20:54:41.5597 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll +2023-03-18 20:54:41.5993 Info Copied MimeMapping.dll +2023-03-18 20:54:41.6000 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll +2023-03-18 20:54:41.6026 Info Copied Mono.Posix.dll +2023-03-18 20:54:41.6031 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll +2023-03-18 20:54:41.6052 Info Copied Mono.Unix.dll +2023-03-18 20:54:41.6052 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll +2023-03-18 20:54:41.6071 Info Copied mscorlib.dll +2023-03-18 20:54:41.6071 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll +2023-03-18 20:54:41.6093 Info Copied netstandard.dll +2023-03-18 20:54:41.6098 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll +2023-03-18 20:54:41.6115 Info Copied Newtonsoft.Json.Bson.dll +2023-03-18 20:54:41.6120 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll +2023-03-18 20:54:41.6158 Info Copied Newtonsoft.Json.dll +2023-03-18 20:54:41.6158 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll +2023-03-18 20:54:41.6271 Info Copied NLog.dll +2023-03-18 20:54:41.6277 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll +2023-03-18 20:54:41.6291 Info Copied NLog.Extensions.Logging.dll +2023-03-18 20:54:41.6297 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll +2023-03-18 20:54:41.6313 Info Copied NLog.Web.AspNetCore.dll +2023-03-18 20:54:41.6318 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll +2023-03-18 20:54:41.6329 Info Copied Org.Mentalis.dll +2023-03-18 20:54:41.6329 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll +2023-03-18 20:54:41.6353 Info Copied Polly.dll +2023-03-18 20:54:41.6358 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/README.md to destination: /app/Jackett/README.md +2023-03-18 20:54:41.6369 Info Copied README.md +2023-03-18 20:54:41.6369 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll +2023-03-18 20:54:41.6383 Info Copied SocksWebProxy.dll +2023-03-18 20:54:41.6388 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll +2023-03-18 20:54:41.6398 Info Copied System.AppContext.dll +2023-03-18 20:54:41.6398 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll +2023-03-18 20:54:41.6413 Info Copied System.Buffers.dll +2023-03-18 20:54:41.6418 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll +2023-03-18 20:54:41.6438 Info Copied System.Collections.Concurrent.dll +2023-03-18 20:54:41.6438 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll +2023-03-18 20:54:41.6934 Info Copied System.Collections.dll +2023-03-18 20:54:41.6943 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll +2023-03-18 20:54:41.6980 Info Copied System.Collections.Immutable.dll +2023-03-18 20:54:41.6980 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll +2023-03-18 20:54:41.7070 Info Copied System.Collections.NonGeneric.dll +2023-03-18 20:54:41.7070 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll +2023-03-18 20:54:41.7094 Info Copied System.Collections.Specialized.dll +2023-03-18 20:54:41.7099 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll +2023-03-18 20:54:41.7120 Info Copied System.ComponentModel.Annotations.dll +2023-03-18 20:54:41.7120 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll +2023-03-18 20:54:41.7514 Info Copied System.ComponentModel.DataAnnotations.dll +2023-03-18 20:54:41.7520 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll +2023-03-18 20:54:41.7535 Info Copied System.ComponentModel.dll +2023-03-18 20:54:41.7541 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll +2023-03-18 20:54:41.7556 Info Copied System.ComponentModel.EventBasedAsync.dll +2023-03-18 20:54:41.7560 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll +2023-03-18 20:54:41.7577 Info Copied System.ComponentModel.Primitives.dll +2023-03-18 20:54:41.7577 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll +2023-03-18 20:54:41.7642 Info Copied System.ComponentModel.TypeConverter.dll +2023-03-18 20:54:41.7647 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll +2023-03-18 20:54:41.7662 Info Copied System.Configuration.dll +2023-03-18 20:54:41.7667 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll +2023-03-18 20:54:41.7693 Info Copied System.Console.dll +2023-03-18 20:54:41.7698 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll +2023-03-18 20:54:41.8346 Info Copied System.Core.dll +2023-03-18 20:54:41.8354 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll +2023-03-18 20:54:41.8566 Info Copied System.Data.Common.dll +2023-03-18 20:54:41.8573 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll +2023-03-18 20:54:41.8587 Info Copied System.Data.DataSetExtensions.dll +2023-03-18 20:54:41.8587 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll +2023-03-18 20:54:41.8604 Info Copied System.Data.dll +2023-03-18 20:54:41.8609 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll +2023-03-18 20:54:41.8620 Info Copied System.Diagnostics.Contracts.dll +2023-03-18 20:54:41.8620 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll +2023-03-18 20:54:41.8638 Info Copied System.Diagnostics.Debug.dll +2023-03-18 20:54:41.8638 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll +2023-03-18 20:54:41.8679 Info Copied System.Diagnostics.DiagnosticSource.dll +2023-03-18 20:54:41.8679 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll +2023-03-18 20:54:41.8698 Info Copied System.Diagnostics.EventLog.dll +2023-03-18 20:54:41.8698 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll +2023-03-18 20:54:41.8717 Info Copied System.Diagnostics.FileVersionInfo.dll +2023-03-18 20:54:41.8717 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll +2023-03-18 20:54:41.8747 Info Copied System.Diagnostics.Process.dll +2023-03-18 20:54:41.8747 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll +2023-03-18 20:54:41.9414 Info Copied System.Diagnostics.StackTrace.dll +2023-03-18 20:54:41.9421 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll +2023-03-18 20:54:41.9440 Info Copied System.Diagnostics.TextWriterTraceListener.dll +2023-03-18 20:54:41.9440 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll +2023-03-18 20:54:41.9458 Info Copied System.Diagnostics.Tools.dll +2023-03-18 20:54:41.9458 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll +2023-03-18 20:54:41.9484 Info Copied System.Diagnostics.TraceSource.dll +2023-03-18 20:54:41.9488 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll +2023-03-18 20:54:41.9502 Info Copied System.Diagnostics.Tracing.dll +2023-03-18 20:54:41.9502 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.dll to destination: /app/Jackett/System.dll +2023-03-18 20:54:41.9531 Info Copied System.dll +2023-03-18 20:54:41.9531 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll +2023-03-18 20:54:41.9550 Info Copied System.Drawing.dll +2023-03-18 20:54:41.9550 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll +2023-03-18 20:54:41.9579 Info Copied System.Drawing.Primitives.dll +2023-03-18 20:54:41.9579 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll +2023-03-18 20:54:41.9600 Info Copied System.Dynamic.Runtime.dll +2023-03-18 20:54:41.9600 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll +2023-03-18 20:54:42.0416 Info Copied System.Formats.Asn1.dll +2023-03-18 20:54:42.0423 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll +2023-03-18 20:54:42.0434 Info Copied System.Globalization.Calendars.dll +2023-03-18 20:54:42.0438 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll +2023-03-18 20:54:42.0447 Info Copied System.Globalization.dll +2023-03-18 20:54:42.0447 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll +2023-03-18 20:54:42.0459 Info Copied System.Globalization.Extensions.dll +2023-03-18 20:54:42.0459 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll +2023-03-18 20:54:42.0475 Info Copied System.IO.Compression.Brotli.dll +2023-03-18 20:54:42.0486 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll +2023-03-18 20:54:42.0510 Info Copied System.IO.Compression.dll +2023-03-18 20:54:42.0510 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll +2023-03-18 20:54:42.0522 Info Copied System.IO.Compression.FileSystem.dll +2023-03-18 20:54:42.0522 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll +2023-03-18 20:54:42.0542 Info Copied System.IO.Compression.ZipFile.dll +2023-03-18 20:54:42.0542 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll +2023-03-18 20:54:42.0554 Info Copied System.IO.dll +2023-03-18 20:54:42.0558 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll +2023-03-18 20:54:42.0567 Info Copied System.IO.FileSystem.AccessControl.dll +2023-03-18 20:54:42.0567 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll +2023-03-18 20:54:42.0579 Info Copied System.IO.FileSystem.dll +2023-03-18 20:54:42.0579 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll +2023-03-18 20:54:42.0602 Info Copied System.IO.FileSystem.DriveInfo.dll +2023-03-18 20:54:42.0602 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll +2023-03-18 20:54:42.0881 Info Copied System.IO.FileSystem.Primitives.dll +2023-03-18 20:54:42.0887 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll +2023-03-18 20:54:42.0903 Info Copied System.IO.FileSystem.Watcher.dll +2023-03-18 20:54:42.0907 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll +2023-03-18 20:54:42.0920 Info Copied System.IO.IsolatedStorage.dll +2023-03-18 20:54:42.0920 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll +2023-03-18 20:54:42.0938 Info Copied System.IO.MemoryMappedFiles.dll +2023-03-18 20:54:42.0938 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll +2023-03-18 20:54:42.0961 Info Copied System.IO.Pipelines.dll +2023-03-18 20:54:42.0961 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll +2023-03-18 20:54:42.0974 Info Copied System.IO.Pipes.AccessControl.dll +2023-03-18 20:54:42.0978 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll +2023-03-18 20:54:42.0993 Info Copied System.IO.Pipes.dll +2023-03-18 20:54:42.0993 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll +2023-03-18 20:54:42.1010 Info Copied System.IO.UnmanagedMemoryStream.dll +2023-03-18 20:54:42.1010 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll +2023-03-18 20:54:42.1045 Info Copied System.Linq.dll +2023-03-18 20:54:42.1051 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll +2023-03-18 20:54:42.1216 Info Copied System.Linq.Expressions.dll +2023-03-18 20:54:42.1221 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll +2023-03-18 20:54:42.1266 Info Copied System.Linq.Parallel.dll +2023-03-18 20:54:42.1269 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll +2023-03-18 20:54:42.1287 Info Copied System.Linq.Queryable.dll +2023-03-18 20:54:42.1287 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll +2023-03-18 20:54:42.1312 Info Copied System.Memory.dll +2023-03-18 20:54:42.1312 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll +2023-03-18 20:54:42.1325 Info Copied System.Net.dll +2023-03-18 20:54:42.1329 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll +2023-03-18 20:54:42.1410 Info Copied System.Net.Http.dll +2023-03-18 20:54:42.1410 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll +2023-03-18 20:54:42.1428 Info Copied System.Net.Http.Json.dll +2023-03-18 20:54:42.1428 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll +2023-03-18 20:54:42.1453 Info Copied System.Net.HttpListener.dll +2023-03-18 20:54:42.1457 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll +2023-03-18 20:54:42.1489 Info Copied System.Net.Mail.dll +2023-03-18 20:54:42.1489 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll +2023-03-18 20:54:42.1507 Info Copied System.Net.NameResolution.dll +2023-03-18 20:54:42.1507 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll +2023-03-18 20:54:42.1525 Info Copied System.Net.NetworkInformation.dll +2023-03-18 20:54:42.1529 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll +2023-03-18 20:54:42.1542 Info Copied System.Net.Ping.dll +2023-03-18 20:54:42.1542 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll +2023-03-18 20:54:42.1565 Info Copied System.Net.Primitives.dll +2023-03-18 20:54:42.1569 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll +2023-03-18 20:54:42.1592 Info Copied System.Net.Quic.dll +2023-03-18 20:54:42.1592 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll +2023-03-18 20:54:42.1617 Info Copied System.Net.Requests.dll +2023-03-18 20:54:42.1617 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll +2023-03-18 20:54:42.1654 Info Copied System.Net.Security.dll +2023-03-18 20:54:42.1658 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll +2023-03-18 20:54:42.1670 Info Copied System.Net.ServicePoint.dll +2023-03-18 20:54:42.1670 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll +2023-03-18 20:54:42.1701 Info Copied System.Net.Sockets.dll +2023-03-18 20:54:42.1701 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll +2023-03-18 20:54:42.1721 Info Copied System.Net.WebClient.dll +2023-03-18 20:54:42.1721 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll +2023-03-18 20:54:42.1736 Info Copied System.Net.WebHeaderCollection.dll +2023-03-18 20:54:42.1740 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll +2023-03-18 20:54:42.1750 Info Copied System.Net.WebProxy.dll +2023-03-18 20:54:42.1750 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll +2023-03-18 20:54:42.1769 Info Copied System.Net.WebSockets.Client.dll +2023-03-18 20:54:42.1769 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll +2023-03-18 20:54:42.1788 Info Copied System.Net.WebSockets.dll +2023-03-18 20:54:42.1788 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll +2023-03-18 20:54:42.1801 Info Copied System.Numerics.dll +2023-03-18 20:54:42.1801 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll +2023-03-18 20:54:42.1814 Info Copied System.Numerics.Vectors.dll +2023-03-18 20:54:42.1818 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll +2023-03-18 20:54:42.1832 Info Copied System.ObjectModel.dll +2023-03-18 20:54:42.1832 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll +2023-03-18 20:54:42.2208 Info Copied System.Private.CoreLib.dll +2023-03-18 20:54:42.2208 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll +2023-03-18 20:54:42.2298 Info Copied System.Private.DataContractSerialization.dll +2023-03-18 20:54:42.2298 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll +2023-03-18 20:54:42.2321 Info Copied System.Private.Uri.dll +2023-03-18 20:54:42.2321 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll +2023-03-18 20:54:42.2655 Info Copied System.Private.Xml.dll +2023-03-18 20:54:42.2660 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll +2023-03-18 20:54:42.2686 Info Copied System.Private.Xml.Linq.dll +2023-03-18 20:54:42.2690 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll +2023-03-18 20:54:42.2702 Info Copied System.Reflection.DispatchProxy.dll +2023-03-18 20:54:42.2702 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll +2023-03-18 20:54:42.2715 Info Copied System.Reflection.dll +2023-03-18 20:54:42.2719 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll +2023-03-18 20:54:42.2728 Info Copied System.Reflection.Emit.dll +2023-03-18 20:54:42.2728 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll +2023-03-18 20:54:42.2741 Info Copied System.Reflection.Emit.ILGeneration.dll +2023-03-18 20:54:42.2741 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll +2023-03-18 20:54:42.2754 Info Copied System.Reflection.Emit.Lightweight.dll +2023-03-18 20:54:42.2758 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll +2023-03-18 20:54:42.2767 Info Copied System.Reflection.Extensions.dll +2023-03-18 20:54:42.2767 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll +2023-03-18 20:54:42.2820 Info Copied System.Reflection.Metadata.dll +2023-03-18 20:54:42.2820 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll +2023-03-18 20:54:42.2832 Info Copied System.Reflection.Primitives.dll +2023-03-18 20:54:42.2832 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll +2023-03-18 20:54:42.2846 Info Copied System.Reflection.TypeExtensions.dll +2023-03-18 20:54:42.2849 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll +2023-03-18 20:54:42.3444 Info Copied System.Resources.Reader.dll +2023-03-18 20:54:42.3451 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll +2023-03-18 20:54:42.3463 Info Copied System.Resources.ResourceManager.dll +2023-03-18 20:54:42.3467 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll +2023-03-18 20:54:42.3478 Info Copied System.Resources.Writer.dll +2023-03-18 20:54:42.3478 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll +2023-03-18 20:54:42.3492 Info Copied System.Runtime.CompilerServices.Unsafe.dll +2023-03-18 20:54:42.3492 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll +2023-03-18 20:54:42.3505 Info Copied System.Runtime.CompilerServices.VisualC.dll +2023-03-18 20:54:42.3509 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll +2023-03-18 20:54:42.3519 Info Copied System.Runtime.dll +2023-03-18 20:54:42.3519 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll +2023-03-18 20:54:42.3533 Info Copied System.Runtime.Extensions.dll +2023-03-18 20:54:42.3533 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll +2023-03-18 20:54:42.3545 Info Copied System.Runtime.Handles.dll +2023-03-18 20:54:42.3549 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll +2023-03-18 20:54:42.3560 Info Copied System.Runtime.InteropServices.dll +2023-03-18 20:54:42.3560 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll +2023-03-18 20:54:42.3574 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll +2023-03-18 20:54:42.3578 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll +2023-03-18 20:54:42.3587 Info Copied System.Runtime.Intrinsics.dll +2023-03-18 20:54:42.3587 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll +2023-03-18 20:54:42.3600 Info Copied System.Runtime.Loader.dll +2023-03-18 20:54:42.3600 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll +2023-03-18 20:54:42.3623 Info Copied System.Runtime.Numerics.dll +2023-03-18 20:54:42.3627 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll +2023-03-18 20:54:42.3637 Info Copied System.Runtime.Serialization.dll +2023-03-18 20:54:42.3637 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll +2023-03-18 20:54:42.3799 Info Copied System.Runtime.Serialization.Formatters.dll +2023-03-18 20:54:42.3799 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll +2023-03-18 20:54:42.3815 Info Copied System.Runtime.Serialization.Json.dll +2023-03-18 20:54:42.3819 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll +2023-03-18 20:54:42.3830 Info Copied System.Runtime.Serialization.Primitives.dll +2023-03-18 20:54:42.3830 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll +2023-03-18 20:54:42.3843 Info Copied System.Runtime.Serialization.Xml.dll +2023-03-18 20:54:42.3847 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll +2023-03-18 20:54:42.3860 Info Copied System.Security.AccessControl.dll +2023-03-18 20:54:42.3860 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll +2023-03-18 20:54:42.3879 Info Copied System.Security.Claims.dll +2023-03-18 20:54:42.3879 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll +2023-03-18 20:54:42.3948 Info Copied System.Security.Cryptography.Algorithms.dll +2023-03-18 20:54:42.3948 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll +2023-03-18 20:54:42.3966 Info Copied System.Security.Cryptography.Cng.dll +2023-03-18 20:54:42.3970 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll +2023-03-18 20:54:42.3985 Info Copied System.Security.Cryptography.Csp.dll +2023-03-18 20:54:42.3989 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll +2023-03-18 20:54:42.4131 Info Copied System.Security.Cryptography.Encoding.dll +2023-03-18 20:54:42.4131 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll +2023-03-18 20:54:42.4157 Info Copied System.Security.Cryptography.OpenSsl.dll +2023-03-18 20:54:42.4157 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll +2023-03-18 20:54:42.4223 Info Copied System.Security.Cryptography.Pkcs.dll +2023-03-18 20:54:42.4229 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll +2023-03-18 20:54:42.4245 Info Copied System.Security.Cryptography.Primitives.dll +2023-03-18 20:54:42.4249 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll +2023-03-18 20:54:42.4259 Info Copied System.Security.Cryptography.ProtectedData.dll +2023-03-18 20:54:42.4259 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll +2023-03-18 20:54:42.4301 Info Copied System.Security.Cryptography.X509Certificates.dll +2023-03-18 20:54:42.4301 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll +2023-03-18 20:54:42.4678 Info Copied System.Security.Cryptography.Xml.dll +2023-03-18 20:54:42.4678 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll +2023-03-18 20:54:42.4696 Info Copied System.Security.dll +2023-03-18 20:54:42.4700 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll +2023-03-18 20:54:42.4710 Info Copied System.Security.Principal.dll +2023-03-18 20:54:42.4710 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll +2023-03-18 20:54:42.4724 Info Copied System.Security.Principal.Windows.dll +2023-03-18 20:54:42.4728 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll +2023-03-18 20:54:42.4740 Info Copied System.Security.SecureString.dll +2023-03-18 20:54:42.4740 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll +2023-03-18 20:54:42.4753 Info Copied System.ServiceModel.Web.dll +2023-03-18 20:54:42.4753 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll +2023-03-18 20:54:42.4765 Info Copied System.ServiceProcess.dll +2023-03-18 20:54:42.4769 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll +2023-03-18 20:54:42.4779 Info Copied System.ServiceProcess.ServiceController.dll +2023-03-18 20:54:42.4779 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll +2023-03-18 20:54:42.4832 Info Copied System.Text.Encoding.CodePages.dll +2023-03-18 20:54:42.4832 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll +2023-03-18 20:54:42.4846 Info Copied System.Text.Encoding.dll +2023-03-18 20:54:42.4849 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll +2023-03-18 20:54:42.4859 Info Copied System.Text.Encoding.Extensions.dll +2023-03-18 20:54:42.4859 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll +2023-03-18 20:54:42.5627 Info Copied System.Text.Encodings.Web.dll +2023-03-18 20:54:42.5627 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll +2023-03-18 20:54:42.5725 Info Copied System.Text.Json.dll +2023-03-18 20:54:42.5731 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll +2023-03-18 20:54:42.5768 Info Copied System.Text.RegularExpressions.dll +2023-03-18 20:54:42.5768 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll +2023-03-18 20:54:42.5793 Info Copied System.Threading.Channels.dll +2023-03-18 20:54:42.5797 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll +2023-03-18 20:54:42.5812 Info Copied System.Threading.dll +2023-03-18 20:54:42.5812 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll +2023-03-18 20:54:42.6138 Info Copied System.Threading.Overlapped.dll +2023-03-18 20:54:42.6138 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll +2023-03-18 20:54:42.6175 Info Copied System.Threading.Tasks.Dataflow.dll +2023-03-18 20:54:42.6179 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll +2023-03-18 20:54:42.6189 Info Copied System.Threading.Tasks.dll +2023-03-18 20:54:42.6189 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll +2023-03-18 20:54:42.6202 Info Copied System.Threading.Tasks.Extensions.dll +2023-03-18 20:54:42.6202 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll +2023-03-18 20:54:42.6221 Info Copied System.Threading.Tasks.Parallel.dll +2023-03-18 20:54:42.6221 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll +2023-03-18 20:54:42.6235 Info Copied System.Threading.Thread.dll +2023-03-18 20:54:42.6239 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll +2023-03-18 20:54:42.6248 Info Copied System.Threading.ThreadPool.dll +2023-03-18 20:54:42.6248 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll +2023-03-18 20:54:42.6261 Info Copied System.Threading.Timer.dll +2023-03-18 20:54:42.6261 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll +2023-03-18 20:54:42.6273 Info Copied System.Transactions.dll +2023-03-18 20:54:42.6273 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll +2023-03-18 20:54:42.6298 Info Copied System.Transactions.Local.dll +2023-03-18 20:54:42.6298 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll +2023-03-18 20:54:42.6322 Info Copied System.ValueTuple.dll +2023-03-18 20:54:42.6322 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll +2023-03-18 20:54:42.6334 Info Copied System.Web.dll +2023-03-18 20:54:42.6338 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll +2023-03-18 20:54:42.6797 Info Copied System.Web.HttpUtility.dll +2023-03-18 20:54:42.6797 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll +2023-03-18 20:54:42.6814 Info Copied System.Windows.dll +2023-03-18 20:54:42.6818 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll +2023-03-18 20:54:42.6828 Info Copied System.Xml.dll +2023-03-18 20:54:42.6828 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll +2023-03-18 20:54:42.6842 Info Copied System.Xml.Linq.dll +2023-03-18 20:54:42.6842 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll +2023-03-18 20:54:42.6856 Info Copied System.Xml.ReaderWriter.dll +2023-03-18 20:54:42.6860 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll +2023-03-18 20:54:42.6860 Info Copied System.Xml.Serialization.dll +2023-03-18 20:54:42.6873 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll +2023-03-18 20:54:42.6873 Info Copied System.Xml.XDocument.dll +2023-03-18 20:54:42.6873 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll +2023-03-18 20:54:42.6894 Info Copied System.Xml.XmlDocument.dll +2023-03-18 20:54:42.6898 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll +2023-03-18 20:54:42.6907 Info Copied System.Xml.XmlSerializer.dll +2023-03-18 20:54:42.6907 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll +2023-03-18 20:54:42.6919 Info Copied System.Xml.XPath.dll +2023-03-18 20:54:42.6919 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll +2023-03-18 20:54:42.6932 Info Copied System.Xml.XPath.XDocument.dll +2023-03-18 20:54:42.6932 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll +2023-03-18 20:54:42.6945 Info Copied WindowsBase.dll +2023-03-18 20:54:42.6949 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll +2023-03-18 20:54:42.6970 Info Copied YamlDotNet.dll +2023-03-18 20:54:42.6970 Info File copying complete +2023-03-18 20:54:42.7287 Info Killing process 383 +2023-03-18 20:54:45.8100 Info Process 383 didn't exit within 2 seconds after a SIGTERM diff --git a/tests/docker_configs/jackett/config/jackett/Jackett/updater.txt.20230318.00000.txt b/tests/docker_configs/jackett/config/jackett/Jackett/updater.txt.20230318.00000.txt new file mode 100644 index 0000000..79745d0 --- /dev/null +++ b/tests/docker_configs/jackett/config/jackett/Jackett/updater.txt.20230318.00000.txt @@ -0,0 +1,14553 @@ +2023-02-28 10:28:32.4208 Info Jackett Updater v0.20.3403 +2023-02-28 10:28:32.5167 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "135" "--NoRestart" +2023-02-28 10:28:32.5220 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-02-28 10:28:32.7150 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb +2023-02-28 10:28:32.7150 Info Deleted /app/Jackett/DateTimeRoutines.pdb +2023-02-28 10:28:32.7157 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb +2023-02-28 10:28:32.7157 Info Deleted /app/Jackett/Jackett.Common.pdb +2023-02-28 10:28:32.7157 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb +2023-02-28 10:28:32.7172 Info Deleted /app/Jackett/JackettUpdater.pdb +2023-02-28 10:28:32.7172 Info Attempting to remove: /app/Jackett/jackett.pdb +2023-02-28 10:28:32.7177 Info Deleted /app/Jackett/jackett.pdb +2023-02-28 10:28:32.7177 Info Attempting to remove: /app/Jackett/jackett +2023-02-28 10:28:32.7177 Info Deleted /app/Jackett/jackett +2023-02-28 10:28:32.7177 Info Finding files in: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/ +2023-02-28 10:28:32.7241 Info 891 update files found +2023-02-28 10:28:32.7253 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll +2023-02-28 10:28:32.7293 Info Copied AngleSharp.dll +2023-02-28 10:28:32.7293 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll +2023-02-28 10:28:32.7302 Info Copied AngleSharp.Xml.dll +2023-02-28 10:28:32.7302 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll +2023-02-28 10:28:32.7324 Info Copied Autofac.dll +2023-02-28 10:28:32.7327 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll +2023-02-28 10:28:32.7327 Info Copied Autofac.Extensions.DependencyInjection.dll +2023-02-28 10:28:32.7327 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll +2023-02-28 10:28:32.7346 Info Copied AutoMapper.dll +2023-02-28 10:28:32.7348 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll +2023-02-28 10:28:32.7348 Info Copied BencodeNET.dll +2023-02-28 10:28:32.7348 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll +2023-02-28 10:28:32.7365 Info Copied CommandLine.dll +2023-02-28 10:28:32.7367 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css +2023-02-28 10:28:32.7367 Info Copied animate.css +2023-02-28 10:28:32.7367 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png +2023-02-28 10:28:32.7379 Info Copied apple-touch-icon.png +2023-02-28 10:28:32.7379 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png +2023-02-28 10:28:32.7379 Info Copied binding_dark.png +2023-02-28 10:28:32.7388 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css +2023-02-28 10:28:32.7388 Info Copied bootstrap.min.css +2023-02-28 10:28:32.7397 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js +2023-02-28 10:28:32.7397 Info Copied bootstrap.min.js +2023-02-28 10:28:32.7397 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js +2023-02-28 10:28:32.7408 Info Copied common.js +2023-02-28 10:28:32.7408 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css +2023-02-28 10:28:32.7408 Info Copied bootstrap-multiselect.css +2023-02-28 10:28:32.7408 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css +2023-02-28 10:28:32.7420 Info Copied font-awesome.min.css +2023-02-28 10:28:32.7420 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css +2023-02-28 10:28:32.7427 Info Copied jquery.dataTables.min.css +2023-02-28 10:28:32.7427 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css +2023-02-28 10:28:32.7427 Info Copied tagify.css +2023-02-28 10:28:32.7427 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css +2023-02-28 10:28:32.7439 Info Copied custom_mobile.css +2023-02-28 10:28:32.7439 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css +2023-02-28 10:28:32.7439 Info Copied custom.css +2023-02-28 10:28:32.7447 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js +2023-02-28 10:28:32.7460 Info Copied custom.js +2023-02-28 10:28:32.7460 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico +2023-02-28 10:28:32.7469 Info Copied favicon.ico +2023-02-28 10:28:32.7469 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot +2023-02-28 10:28:32.7476 Info Copied fontawesome-webfont.eot +2023-02-28 10:28:32.7476 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg +2023-02-28 10:28:32.7487 Info Copied fontawesome-webfont.svg +2023-02-28 10:28:32.7487 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf +2023-02-28 10:28:32.7487 Info Copied fontawesome-webfont.ttf +2023-02-28 10:28:32.7497 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff +2023-02-28 10:28:32.7497 Info Copied fontawesome-webfont.woff +2023-02-28 10:28:32.7497 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 +2023-02-28 10:28:32.7510 Info Copied fontawesome-webfont.woff2 +2023-02-28 10:28:32.7510 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf +2023-02-28 10:28:32.7519 Info Copied FontAwesome.otf +2023-02-28 10:28:32.7519 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot +2023-02-28 10:28:32.7519 Info Copied glyphicons-halflings-regular.eot +2023-02-28 10:28:32.7527 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg +2023-02-28 10:28:32.7527 Info Copied glyphicons-halflings-regular.svg +2023-02-28 10:28:32.7536 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf +2023-02-28 10:28:32.7536 Info Copied glyphicons-halflings-regular.ttf +2023-02-28 10:28:32.7536 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff +2023-02-28 10:28:32.7549 Info Copied glyphicons-halflings-regular.woff +2023-02-28 10:28:32.7549 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 +2023-02-28 10:28:32.7549 Info Copied glyphicons-halflings-regular.woff2 +2023-02-28 10:28:32.7557 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png +2023-02-28 10:28:32.7557 Info Copied sort_asc_disabled.png +2023-02-28 10:28:32.7557 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png +2023-02-28 10:28:32.7568 Info Copied sort_asc.png +2023-02-28 10:28:32.7568 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png +2023-02-28 10:28:32.7568 Info Copied sort_both.png +2023-02-28 10:28:32.7568 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png +2023-02-28 10:28:32.7580 Info Copied sort_desc_disabled.png +2023-02-28 10:28:32.7580 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png +2023-02-28 10:28:32.7580 Info Copied sort_desc.png +2023-02-28 10:28:32.7588 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html +2023-02-28 10:28:32.7588 Info Copied index.html +2023-02-28 10:28:32.7588 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png +2023-02-28 10:28:32.7599 Info Copied jacket_medium.png +2023-02-28 10:28:32.7599 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js +2023-02-28 10:28:32.7599 Info Copied api.js +2023-02-28 10:28:32.7607 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js +2023-02-28 10:28:32.7607 Info Copied bootstrap-multiselect.js +2023-02-28 10:28:32.7607 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js +2023-02-28 10:28:32.7619 Info Copied bootstrap-notify.js +2023-02-28 10:28:32.7619 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js +2023-02-28 10:28:32.7619 Info Copied filesize.min.js +2023-02-28 10:28:32.7637 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js +2023-02-28 10:28:32.7637 Info Copied handlebars.min.js +2023-02-28 10:28:32.7637 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js +2023-02-28 10:28:32.7648 Info Copied handlebarsextend.js +2023-02-28 10:28:32.7648 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js +2023-02-28 10:28:32.7648 Info Copied handlebarsmoment.js +2023-02-28 10:28:32.7648 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js +2023-02-28 10:28:32.7662 Info Copied jquery.dataTables.min.js +2023-02-28 10:28:32.7662 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js +2023-02-28 10:28:32.7671 Info Copied jquery.min.js +2023-02-28 10:28:32.7671 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js +2023-02-28 10:28:32.7678 Info Copied jQuery.tagify.min.js +2023-02-28 10:28:32.7678 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js +2023-02-28 10:28:32.7678 Info Copied moment.min.js +2023-02-28 10:28:32.7687 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js +2023-02-28 10:28:32.7687 Info Copied tagify.min.js +2023-02-28 10:28:32.7687 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html +2023-02-28 10:28:32.7699 Info Copied login.html +2023-02-28 10:28:32.7699 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/createdump to destination: /app/Jackett/createdump +2023-02-28 10:28:32.7715 Info Copied createdump +2023-02-28 10:28:32.7718 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll +2023-02-28 10:28:32.7718 Info Copied DateTimeRoutines.dll +2023-02-28 10:28:32.7718 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb +2023-02-28 10:28:32.7729 Info Copied DateTimeRoutines.pdb +2023-02-28 10:28:32.7729 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml +2023-02-28 10:28:32.7729 Info Copied 0daykiev.yml +2023-02-28 10:28:32.7738 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml +2023-02-28 10:28:32.7738 Info Copied 0magnet.yml +2023-02-28 10:28:32.7738 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml +2023-02-28 10:28:32.7749 Info Copied 1337x.yml +2023-02-28 10:28:32.7749 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml +2023-02-28 10:28:32.7749 Info Copied 1ptbar.yml +2023-02-28 10:28:32.7757 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml +2023-02-28 10:28:32.7757 Info Copied 2fast4you.yml +2023-02-28 10:28:32.7757 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml +2023-02-28 10:28:32.7767 Info Copied 2xfree.yml +2023-02-28 10:28:32.7767 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml +2023-02-28 10:28:32.7767 Info Copied 3changtrai.yml +2023-02-28 10:28:32.7767 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml +2023-02-28 10:28:32.7780 Info Copied 3dtorrents.yml +2023-02-28 10:28:32.7780 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml +2023-02-28 10:28:32.7787 Info Copied 4thd.yml +2023-02-28 10:28:32.7787 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml +2023-02-28 10:28:32.7787 Info Copied 52pt.yml +2023-02-28 10:28:32.7787 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml +2023-02-28 10:28:32.7798 Info Copied abnormal.yml +2023-02-28 10:28:32.7798 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml +2023-02-28 10:28:32.7798 Info Copied abtorrents.yml +2023-02-28 10:28:32.7807 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml +2023-02-28 10:28:32.7807 Info Copied acervos-api.yml +2023-02-28 10:28:32.7807 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml +2023-02-28 10:28:32.7817 Info Copied acgrip.yml +2023-02-28 10:28:32.7817 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml +2023-02-28 10:28:32.7817 Info Copied acgsou.yml +2023-02-28 10:28:32.7817 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml +2023-02-28 10:28:32.7829 Info Copied acidlounge.yml +2023-02-28 10:28:32.7829 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml +2023-02-28 10:28:32.7829 Info Copied acrossthetasman.yml +2023-02-28 10:28:32.7837 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml +2023-02-28 10:28:32.7837 Info Copied aftershock.yml +2023-02-28 10:28:32.7837 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml +2023-02-28 10:28:32.7847 Info Copied aidoruonline.yml +2023-02-28 10:28:32.7847 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml +2023-02-28 10:28:32.7847 Info Copied aither-api.yml +2023-02-28 10:28:32.7847 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml +2023-02-28 10:28:32.7859 Info Copied amigosshare.yml +2023-02-28 10:28:32.7859 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml +2023-02-28 10:28:32.7859 Info Copied anilibria.yml +2023-02-28 10:28:32.7868 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml +2023-02-28 10:28:32.7868 Info Copied anime-free.yml +2023-02-28 10:28:32.7868 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml +2023-02-28 10:28:32.7878 Info Copied animelayer.yml +2023-02-28 10:28:32.7878 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml +2023-02-28 10:28:32.7878 Info Copied animetracker.yml +2023-02-28 10:28:32.7878 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml +2023-02-28 10:28:32.7890 Info Copied animeworld-api.yml +2023-02-28 10:28:32.7890 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml +2023-02-28 10:28:32.7896 Info Copied anirena.yml +2023-02-28 10:28:32.7896 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml +2023-02-28 10:28:32.7896 Info Copied anisource.yml +2023-02-28 10:28:32.7896 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml +2023-02-28 10:28:32.7909 Info Copied anthelion-api.yml +2023-02-28 10:28:32.7909 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml +2023-02-28 10:28:32.7909 Info Copied arabafenice.yml +2023-02-28 10:28:32.7917 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml +2023-02-28 10:28:32.7917 Info Copied arabp2p.yml +2023-02-28 10:28:32.7917 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml +2023-02-28 10:28:32.7928 Info Copied arenabg.yml +2023-02-28 10:28:32.7928 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml +2023-02-28 10:28:32.7928 Info Copied asiancinema.yml +2023-02-28 10:28:32.7928 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml +2023-02-28 10:28:32.7940 Info Copied asiandvdclub.yml +2023-02-28 10:28:32.7940 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml +2023-02-28 10:28:32.7946 Info Copied audiences.yml +2023-02-28 10:28:32.7946 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml +2023-02-28 10:28:32.7946 Info Copied audionews.yml +2023-02-28 10:28:32.7946 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml +2023-02-28 10:28:32.7959 Info Copied aussierules.yml +2023-02-28 10:28:32.7959 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml +2023-02-28 10:28:32.7959 Info Copied backups.yml +2023-02-28 10:28:32.7968 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml +2023-02-28 10:28:32.7968 Info Copied badasstorrents.yml +2023-02-28 10:28:32.7968 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml +2023-02-28 10:28:32.7978 Info Copied bangumi-moe.yml +2023-02-28 10:28:32.7978 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml +2023-02-28 10:28:32.7978 Info Copied beitai.yml +2023-02-28 10:28:32.7987 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml +2023-02-28 10:28:32.7987 Info Copied bestcore.yml +2023-02-28 10:28:32.7987 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml +2023-02-28 10:28:32.7997 Info Copied beyond-hd.yml +2023-02-28 10:28:32.7997 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml +2023-02-28 10:28:32.7997 Info Copied bibliotik.yml +2023-02-28 10:28:32.7997 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml +2023-02-28 10:28:32.8010 Info Copied bigfangroup.yml +2023-02-28 10:28:32.8010 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml +2023-02-28 10:28:32.8017 Info Copied bitbazis.yml +2023-02-28 10:28:32.8017 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml +2023-02-28 10:28:32.8031 Info Copied bitded.yml +2023-02-28 10:28:32.8031 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml +2023-02-28 10:28:32.8038 Info Copied bithorlo.yml +2023-02-28 10:28:32.8038 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml +2023-02-28 10:28:32.8038 Info Copied bithumen.yml +2023-02-28 10:28:32.8038 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml +2023-02-28 10:28:32.8051 Info Copied bitnova.yml +2023-02-28 10:28:32.8051 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml +2023-02-28 10:28:32.8057 Info Copied bitofvalor.yml +2023-02-28 10:28:32.8057 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml +2023-02-28 10:28:32.8057 Info Copied bitru.yml +2023-02-28 10:28:32.8057 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml +2023-02-28 10:28:32.8070 Info Copied bitsearch.yml +2023-02-28 10:28:32.8070 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml +2023-02-28 10:28:32.8070 Info Copied bitsexy.yml +2023-02-28 10:28:32.8078 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml +2023-02-28 10:28:32.8078 Info Copied bitspyder.yml +2023-02-28 10:28:32.8078 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml +2023-02-28 10:28:32.8089 Info Copied Bittorrentfiles.yml +2023-02-28 10:28:32.8089 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml +2023-02-28 10:28:32.8089 Info Copied bitturk.yml +2023-02-28 10:28:32.8099 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml +2023-02-28 10:28:32.8099 Info Copied bluebird.yml +2023-02-28 10:28:32.8099 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml +2023-02-28 10:28:32.8110 Info Copied blutopia-api.yml +2023-02-28 10:28:32.8110 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml +2023-02-28 10:28:32.8116 Info Copied booktracker.yml +2023-02-28 10:28:32.8116 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml +2023-02-28 10:28:32.8116 Info Copied bootytape.yml +2023-02-28 10:28:32.8116 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml +2023-02-28 10:28:32.8129 Info Copied borgzelle.yml +2023-02-28 10:28:32.8129 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml +2023-02-28 10:28:32.8129 Info Copied boxingtorrents.yml +2023-02-28 10:28:32.8137 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml +2023-02-28 10:28:32.8137 Info Copied broadcity.yml +2023-02-28 10:28:32.8137 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml +2023-02-28 10:28:32.8148 Info Copied brsociety-api.yml +2023-02-28 10:28:32.8148 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml +2023-02-28 10:28:32.8148 Info Copied bt4g.yml +2023-02-28 10:28:32.8157 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml +2023-02-28 10:28:32.8157 Info Copied btdigg.yml +2023-02-28 10:28:32.8157 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml +2023-02-28 10:28:32.8167 Info Copied btetree.yml +2023-02-28 10:28:32.8167 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml +2023-02-28 10:28:32.8167 Info Copied btmet.yml +2023-02-28 10:28:32.8167 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml +2023-02-28 10:28:32.8179 Info Copied btnext.yml +2023-02-28 10:28:32.8179 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml +2023-02-28 10:28:32.8179 Info Copied btschool.yml +2023-02-28 10:28:32.8188 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml +2023-02-28 10:28:32.8188 Info Copied btsow.yml +2023-02-28 10:28:32.8188 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml +2023-02-28 10:28:32.8199 Info Copied bulltorrent.yml +2023-02-28 10:28:32.8199 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml +2023-02-28 10:28:32.8199 Info Copied bwtorrents.yml +2023-02-28 10:28:32.8208 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml +2023-02-28 10:28:32.8208 Info Copied byrbt.yml +2023-02-28 10:28:32.8208 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml +2023-02-28 10:28:32.8219 Info Copied byrutor.yml +2023-02-28 10:28:32.8219 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml +2023-02-28 10:28:32.8219 Info Copied carpathians.yml +2023-02-28 10:28:32.8228 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml +2023-02-28 10:28:32.8228 Info Copied carphunter.yml +2023-02-28 10:28:32.8228 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml +2023-02-28 10:28:32.8239 Info Copied carpt.yml +2023-02-28 10:28:32.8239 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml +2023-02-28 10:28:32.8239 Info Copied cartoonchaos.yml +2023-02-28 10:28:32.8247 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml +2023-02-28 10:28:32.8247 Info Copied cathoderaytube.yml +2023-02-28 10:28:32.8247 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml +2023-02-28 10:28:32.8258 Info Copied catorrent.yml +2023-02-28 10:28:32.8258 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml +2023-02-28 10:28:32.8258 Info Copied ccfbits.yml +2023-02-28 10:28:32.8300 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml +2023-02-28 10:28:32.8307 Info Copied ceskeforum.yml +2023-02-28 10:28:32.8307 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml +2023-02-28 10:28:32.8307 Info Copied chdbits.yml +2023-02-28 10:28:32.8307 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml +2023-02-28 10:28:32.8321 Info Copied chilebt.yml +2023-02-28 10:28:32.8321 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml +2023-02-28 10:28:32.8328 Info Copied cinemageddon.yml +2023-02-28 10:28:32.8328 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml +2023-02-28 10:28:32.8328 Info Copied cinemamovies.yml +2023-02-28 10:28:32.8328 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml +2023-02-28 10:28:32.8340 Info Copied cinematik.yml +2023-02-28 10:28:32.8340 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml +2023-02-28 10:28:32.8340 Info Copied classix.yml +2023-02-28 10:28:32.8348 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml +2023-02-28 10:28:32.8348 Info Copied coastalcrew.yml +2023-02-28 10:28:32.8348 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml +2023-02-28 10:28:32.8365 Info Copied comicat.yml +2023-02-28 10:28:32.8367 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml +2023-02-28 10:28:32.8367 Info Copied concen.yml +2023-02-28 10:28:32.8367 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml +2023-02-28 10:28:32.8377 Info Copied concertos.yml +2023-02-28 10:28:32.8377 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml +2023-02-28 10:28:32.8377 Info Copied cpabien.yml +2023-02-28 10:28:32.8377 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml +2023-02-28 10:28:32.8390 Info Copied cpasbienclone.yml +2023-02-28 10:28:32.8390 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml +2023-02-28 10:28:32.8390 Info Copied cpasbiensi.yml +2023-02-28 10:28:32.8398 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml +2023-02-28 10:28:32.8398 Info Copied crackingpatching.yml +2023-02-28 10:28:32.8398 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml +2023-02-28 10:28:32.8409 Info Copied crazyhd.yml +2023-02-28 10:28:32.8409 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml +2023-02-28 10:28:32.8409 Info Copied crazyspirits.yml +2023-02-28 10:28:32.8417 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml +2023-02-28 10:28:32.8417 Info Copied crnaberza.yml +2023-02-28 10:28:32.8417 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml +2023-02-28 10:28:32.8427 Info Copied crt2fa.yml +2023-02-28 10:28:32.8427 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml +2023-02-28 10:28:32.8427 Info Copied danishbytes-api.yml +2023-02-28 10:28:32.8427 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml +2023-02-28 10:28:32.8439 Info Copied dariustracker.yml +2023-02-28 10:28:32.8439 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml +2023-02-28 10:28:32.8439 Info Copied dark-shadow.yml +2023-02-28 10:28:32.8447 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml +2023-02-28 10:28:32.8447 Info Copied datascene-api.yml +2023-02-28 10:28:32.8447 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml +2023-02-28 10:28:32.8458 Info Copied datatalli.yml +2023-02-28 10:28:32.8458 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml +2023-02-28 10:28:32.8458 Info Copied deildu.yml +2023-02-28 10:28:32.8458 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml +2023-02-28 10:28:32.8470 Info Copied demonoid.yml +2023-02-28 10:28:32.8470 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml +2023-02-28 10:28:32.8470 Info Copied desitorrents-api.yml +2023-02-28 10:28:32.8478 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml +2023-02-28 10:28:32.8478 Info Copied devil-torrents.yml +2023-02-28 10:28:32.8478 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml +2023-02-28 10:28:32.8488 Info Copied diablotorrent.yml +2023-02-28 10:28:32.8488 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml +2023-02-28 10:28:32.8488 Info Copied digitalcore.yml +2023-02-28 10:28:32.8488 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml +2023-02-28 10:28:32.8499 Info Copied dimeadozen.yml +2023-02-28 10:28:32.8499 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml +2023-02-28 10:28:32.8499 Info Copied discfan.yml +2023-02-28 10:28:32.8509 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml +2023-02-28 10:28:32.8509 Info Copied divteam.yml +2023-02-28 10:28:32.8509 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml +2023-02-28 10:28:32.8519 Info Copied dmhy.yml +2023-02-28 10:28:32.8519 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml +2023-02-28 10:28:32.8519 Info Copied docspedia.yml +2023-02-28 10:28:32.8527 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml +2023-02-28 10:28:32.8527 Info Copied dodder.yml +2023-02-28 10:28:32.8527 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml +2023-02-28 10:28:32.8537 Info Copied dreamtracker.yml +2023-02-28 10:28:32.8537 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml +2023-02-28 10:28:32.8537 Info Copied dxp.yml +2023-02-28 10:28:32.8537 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml +2023-02-28 10:28:32.8549 Info Copied ebookbay.yml +2023-02-28 10:28:32.8549 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml +2023-02-28 10:28:32.8549 Info Copied ebooks-shares.yml +2023-02-28 10:28:32.8557 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml +2023-02-28 10:28:32.8557 Info Copied ehentai.yml +2023-02-28 10:28:32.8557 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml +2023-02-28 10:28:32.8568 Info Copied electro-torrent.yml +2023-02-28 10:28:32.8568 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml +2023-02-28 10:28:32.8568 Info Copied empornium.yml +2023-02-28 10:28:32.8568 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml +2023-02-28 10:28:32.8579 Info Copied empornium2fa.yml +2023-02-28 10:28:32.8579 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml +2023-02-28 10:28:32.8579 Info Copied eniahd.yml +2023-02-28 10:28:32.8587 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml +2023-02-28 10:28:32.8587 Info Copied esharenet.yml +2023-02-28 10:28:32.8587 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml +2023-02-28 10:28:32.8597 Info Copied estone.yml +2023-02-28 10:28:32.8597 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml +2023-02-28 10:28:32.8597 Info Copied exkinoray.yml +2023-02-28 10:28:32.8597 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml +2023-02-28 10:28:32.8608 Info Copied extratorrent-st.yml +2023-02-28 10:28:32.8608 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml +2023-02-28 10:28:32.8608 Info Copied extremebits.yml +2023-02-28 10:28:32.8608 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml +2023-02-28 10:28:32.8620 Info Copied extremetorrents.yml +2023-02-28 10:28:32.8620 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml +2023-02-28 10:28:32.8620 Info Copied extremlymtorrents.yml +2023-02-28 10:28:32.8628 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml +2023-02-28 10:28:32.8628 Info Copied exttorrents.yml +2023-02-28 10:28:32.8628 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml +2023-02-28 10:28:32.8637 Info Copied eztv.yml +2023-02-28 10:28:32.8637 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml +2023-02-28 10:28:32.8814 Info Copied falkonvisionteam.yml +2023-02-28 10:28:32.8817 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml +2023-02-28 10:28:32.8817 Info Copied fanoin.yml +2023-02-28 10:28:32.8817 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml +2023-02-28 10:28:32.8829 Info Copied fantasticheaven.yml +2023-02-28 10:28:32.8829 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml +2023-02-28 10:28:32.8829 Info Copied fantastiko.yml +2023-02-28 10:28:32.8837 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml +2023-02-28 10:28:32.8837 Info Copied femdomcult.yml +2023-02-28 10:28:32.8837 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml +2023-02-28 10:28:32.8846 Info Copied fenyarnyek-tracker.yml +2023-02-28 10:28:32.8846 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml +2023-02-28 10:28:32.8846 Info Copied file-tracker.yml +2023-02-28 10:28:32.8846 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml +2023-02-28 10:28:32.8859 Info Copied filelisting.yml +2023-02-28 10:28:32.8859 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml +2023-02-28 10:28:32.8873 Info Copied finelite.yml +2023-02-28 10:28:32.8873 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml +2023-02-28 10:28:32.8879 Info Copied finvip.yml +2023-02-28 10:28:32.8989 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml +2023-02-28 10:28:32.8989 Info Copied firebit.yml +2023-02-28 10:28:32.8998 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml +2023-02-28 10:28:32.8998 Info Copied fluxzone.yml +2023-02-28 10:28:32.8998 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml +2023-02-28 10:28:32.9009 Info Copied freshmeat.yml +2023-02-28 10:28:32.9009 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml +2023-02-28 10:28:32.9009 Info Copied frozenlayer.yml +2023-02-28 10:28:32.9018 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml +2023-02-28 10:28:32.9018 Info Copied ftuapps.yml +2023-02-28 10:28:32.9018 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml +2023-02-28 10:28:32.9030 Info Copied funkytorrents.yml +2023-02-28 10:28:32.9030 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml +2023-02-28 10:28:32.9037 Info Copied fuzer.yml +2023-02-28 10:28:32.9037 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml +2023-02-28 10:28:32.9037 Info Copied gainbound.yml +2023-02-28 10:28:32.9037 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml +2023-02-28 10:28:32.9050 Info Copied gamestorrents.yml +2023-02-28 10:28:32.9050 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml +2023-02-28 10:28:32.9057 Info Copied gay-torrents.yml +2023-02-28 10:28:32.9057 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml +2023-02-28 10:28:32.9057 Info Copied gay-torrentsorg.yml +2023-02-28 10:28:32.9070 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml +2023-02-28 10:28:32.9070 Info Copied gaytorrentru.yml +2023-02-28 10:28:32.9077 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml +2023-02-28 10:28:32.9077 Info Copied generationfree-api.yml +2023-02-28 10:28:32.9077 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml +2023-02-28 10:28:32.9088 Info Copied genesismovement.yml +2023-02-28 10:28:32.9088 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml +2023-02-28 10:28:32.9088 Info Copied gigatorrents.yml +2023-02-28 10:28:32.9097 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml +2023-02-28 10:28:32.9097 Info Copied gimmepeers.yml +2023-02-28 10:28:32.9097 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml +2023-02-28 10:28:32.9109 Info Copied girotorrent.yml +2023-02-28 10:28:32.9109 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml +2023-02-28 10:28:32.9109 Info Copied gktorrent.yml +2023-02-28 10:28:32.9117 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml +2023-02-28 10:28:32.9117 Info Copied glodls.yml +2023-02-28 10:28:32.9117 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml +2023-02-28 10:28:32.9127 Info Copied greekdiamond.yml +2023-02-28 10:28:32.9127 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml +2023-02-28 10:28:32.9127 Info Copied greekteam.yml +2023-02-28 10:28:32.9127 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml +2023-02-28 10:28:32.9138 Info Copied gtorrentpro.yml +2023-02-28 10:28:32.9138 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml +2023-02-28 10:28:32.9138 Info Copied haidan.yml +2023-02-28 10:28:32.9138 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml +2023-02-28 10:28:32.9150 Info Copied haitang.yml +2023-02-28 10:28:32.9150 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml +2023-02-28 10:28:32.9157 Info Copied happyfappy.yml +2023-02-28 10:28:32.9157 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml +2023-02-28 10:28:32.9157 Info Copied hawke-uno.yml +2023-02-28 10:28:32.9157 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml +2023-02-28 10:28:32.9184 Info Copied hd-unit3d-api.yml +2023-02-28 10:28:32.9192 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml +2023-02-28 10:28:32.9222 Info Copied hd4fans.yml +2023-02-28 10:28:32.9230 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml +2023-02-28 10:28:32.9243 Info Copied hdarea.yml +2023-02-28 10:28:32.9248 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml +2023-02-28 10:28:32.9261 Info Copied hdatmos.yml +2023-02-28 10:28:32.9267 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml +2023-02-28 10:28:32.9280 Info Copied hdc.yml +2023-02-28 10:28:32.9280 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml +2023-02-28 10:28:32.9298 Info Copied hdchina.yml +2023-02-28 10:28:32.9298 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml +2023-02-28 10:28:32.9315 Info Copied hdcztorrent.yml +2023-02-28 10:28:32.9320 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml +2023-02-28 10:28:32.9332 Info Copied hddolby.yml +2023-02-28 10:28:32.9340 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml +2023-02-28 10:28:32.9353 Info Copied hdfans.yml +2023-02-28 10:28:32.9357 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml +2023-02-28 10:28:32.9372 Info Copied hdforever.yml +2023-02-28 10:28:32.9372 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml +2023-02-28 10:28:32.9389 Info Copied hdgalaktik.yml +2023-02-28 10:28:32.9389 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml +2023-02-28 10:28:32.9407 Info Copied hdhome.yml +2023-02-28 10:28:32.9407 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml +2023-02-28 10:28:32.9423 Info Copied hdmayi.yml +2023-02-28 10:28:32.9430 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml +2023-02-28 10:28:32.9441 Info Copied hdmonkey.yml +2023-02-28 10:28:32.9441 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml +2023-02-28 10:28:32.9458 Info Copied hdolimpo-api.yml +2023-02-28 10:28:32.9458 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml +2023-02-28 10:28:32.9475 Info Copied hdonly.yml +2023-02-28 10:28:32.9481 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml +2023-02-28 10:28:32.9493 Info Copied hdroute.yml +2023-02-28 10:28:32.9498 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml +2023-02-28 10:28:32.9511 Info Copied hdsky.yml +2023-02-28 10:28:32.9511 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml +2023-02-28 10:28:32.9527 Info Copied hdtime.yml +2023-02-28 10:28:32.9527 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml +2023-02-28 10:28:32.9547 Info Copied hdtorrentsit.yml +2023-02-28 10:28:32.9547 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml +2023-02-28 10:28:32.9563 Info Copied hdturk.yml +2023-02-28 10:28:32.9569 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml +2023-02-28 10:28:32.9580 Info Copied hdu.yml +2023-02-28 10:28:32.9580 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml +2023-02-28 10:28:32.9597 Info Copied hdzone.yml +2023-02-28 10:28:32.9597 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml +2023-02-28 10:28:32.9613 Info Copied hebits.yml +2023-02-28 10:28:32.9620 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml +2023-02-28 10:28:32.9631 Info Copied hellashut.yml +2023-02-28 10:28:32.9631 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml +2023-02-28 10:28:32.9648 Info Copied hhanclub.yml +2023-02-28 10:28:32.9648 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml +2023-02-28 10:28:32.9665 Info Copied houseofdevil.yml +2023-02-28 10:28:32.9670 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml +2023-02-28 10:28:32.9682 Info Copied hqmusic.yml +2023-02-28 10:28:32.9687 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml +2023-02-28 10:28:32.9698 Info Copied huntorrent.yml +2023-02-28 10:28:32.9698 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml +2023-02-28 10:28:32.9715 Info Copied icc2022.yml +2023-02-28 10:28:32.9720 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml +2023-02-28 10:28:32.9732 Info Copied idope.yml +2023-02-28 10:28:32.9737 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml +2023-02-28 10:28:32.9749 Info Copied ihdbits.yml +2023-02-28 10:28:32.9749 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml +2023-02-28 10:28:32.9765 Info Copied ilcorsaroblu.yml +2023-02-28 10:28:32.9771 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml +2023-02-28 10:28:32.9783 Info Copied ilcorsaronero.yml +2023-02-28 10:28:32.9788 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml +2023-02-28 10:28:32.9799 Info Copied immortuos.yml +2023-02-28 10:28:32.9799 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml +2023-02-28 10:28:32.9815 Info Copied indietorrents.yml +2023-02-28 10:28:32.9820 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml +2023-02-28 10:28:32.9832 Info Copied insanetracker.yml +2023-02-28 10:28:32.9838 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml +2023-02-28 10:28:32.9849 Info Copied internetarchive.yml +2023-02-28 10:28:32.9849 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml +2023-02-28 10:28:32.9863 Info Copied isohunt2.yml +2023-02-28 10:28:32.9869 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml +2023-02-28 10:28:32.9881 Info Copied itorrent.yml +2023-02-28 10:28:32.9881 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml +2023-02-28 10:28:32.9896 Info Copied jav-torrent.yml +2023-02-28 10:28:32.9902 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml +2023-02-28 10:28:32.9914 Info Copied jme-reunit3d-api.yml +2023-02-28 10:28:32.9919 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml +2023-02-28 10:28:32.9932 Info Copied joyhd.yml +2023-02-28 10:28:32.9932 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml +2023-02-28 10:28:32.9948 Info Copied jpopsuki.yml +2023-02-28 10:28:32.9948 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml +2023-02-28 10:28:32.9965 Info Copied jptv.yml +2023-02-28 10:28:32.9969 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml +2023-02-28 10:28:32.9981 Info Copied karagarga.yml +2023-02-28 10:28:32.9981 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml +2023-02-28 10:28:32.9998 Info Copied keepfriends.yml +2023-02-28 10:28:32.9998 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml +2023-02-28 10:28:33.0016 Info Copied kickasstorrents-to.yml +2023-02-28 10:28:33.0021 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml +2023-02-28 10:28:33.0032 Info Copied kickasstorrents-ws.yml +2023-02-28 10:28:33.0037 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml +2023-02-28 10:28:33.0048 Info Copied kinorun.yml +2023-02-28 10:28:33.0048 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml +2023-02-28 10:28:33.0064 Info Copied kinozal.yml +2023-02-28 10:28:33.0069 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml +2023-02-28 10:28:33.0080 Info Copied knaben.yml +2023-02-28 10:28:33.0080 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml +2023-02-28 10:28:33.0100 Info Copied korsar.yml +2023-02-28 10:28:33.0100 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml +2023-02-28 10:28:33.0118 Info Copied krazyzone.yml +2023-02-28 10:28:33.0118 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml +2023-02-28 10:28:33.0134 Info Copied kufirc.yml +2023-02-28 10:28:33.0140 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml +2023-02-28 10:28:33.0151 Info Copied lastfiles.yml +2023-02-28 10:28:33.0151 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml +2023-02-28 10:28:33.0167 Info Copied lat-team-api.yml +2023-02-28 10:28:33.0167 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml +2023-02-28 10:28:33.0197 Info Copied learnbits.yml +2023-02-28 10:28:33.0197 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml +2023-02-28 10:28:33.0217 Info Copied learnflakes.yml +2023-02-28 10:28:33.0217 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml +2023-02-28 10:28:33.0231 Info Copied leech24.yml +2023-02-28 10:28:33.0231 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml +2023-02-28 10:28:33.0248 Info Copied lemonhd.yml +2023-02-28 10:28:33.0248 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml +2023-02-28 10:28:33.0264 Info Copied lepornoinfo.yml +2023-02-28 10:28:33.0270 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml +2023-02-28 10:28:33.0282 Info Copied les-cinephiles.yml +2023-02-28 10:28:33.0287 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml +2023-02-28 10:28:33.0300 Info Copied lesaloon.yml +2023-02-28 10:28:33.0300 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml +2023-02-28 10:28:33.0317 Info Copied libranet.yml +2023-02-28 10:28:33.0317 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml +2023-02-28 10:28:33.0333 Info Copied limetorrents.yml +2023-02-28 10:28:33.0338 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml +2023-02-28 10:28:33.0350 Info Copied limetorrentsclone.yml +2023-02-28 10:28:33.0350 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml +2023-02-28 10:28:33.0366 Info Copied linkomanija.yml +2023-02-28 10:28:33.0371 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml +2023-02-28 10:28:33.0383 Info Copied linuxtracker.yml +2023-02-28 10:28:33.0388 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml +2023-02-28 10:28:33.0401 Info Copied locadora.yml +2023-02-28 10:28:33.0401 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml +2023-02-28 10:28:33.0417 Info Copied losslessclub.yml +2023-02-28 10:28:33.0417 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml +2023-02-28 10:28:33.0432 Info Copied lst.yml +2023-02-28 10:28:33.0437 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml +2023-02-28 10:28:33.0448 Info Copied mactorrentsdownload.yml +2023-02-28 10:28:33.0448 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml +2023-02-28 10:28:33.0463 Info Copied madsrevolution.yml +2023-02-28 10:28:33.0469 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml +2023-02-28 10:28:33.0481 Info Copied magicheaven.yml +2023-02-28 10:28:33.0481 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml +2023-02-28 10:28:33.0498 Info Copied magico.yml +2023-02-28 10:28:33.0498 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml +2023-02-28 10:28:33.0514 Info Copied majomparade.yml +2023-02-28 10:28:33.0519 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml +2023-02-28 10:28:33.0531 Info Copied marinetracker.yml +2023-02-28 10:28:33.0531 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml +2023-02-28 10:28:33.0548 Info Copied mazepa.yml +2023-02-28 10:28:33.0548 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml +2023-02-28 10:28:33.0564 Info Copied megamixtracker.yml +2023-02-28 10:28:33.0570 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml +2023-02-28 10:28:33.0581 Info Copied megapeer.yml +2023-02-28 10:28:33.0581 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml +2023-02-28 10:28:33.0598 Info Copied mesevilag.yml +2023-02-28 10:28:33.0598 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml +2023-02-28 10:28:33.0613 Info Copied metaltracker.yml +2023-02-28 10:28:33.0618 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml +2023-02-28 10:28:33.0629 Info Copied mikan.yml +2023-02-28 10:28:33.0629 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml +2023-02-28 10:28:33.0645 Info Copied milkie.yml +2023-02-28 10:28:33.0650 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml +2023-02-28 10:28:33.0663 Info Copied miobt.yml +2023-02-28 10:28:33.0668 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml +2023-02-28 10:28:33.0678 Info Copied mircrew.yml +2023-02-28 10:28:33.0678 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml +2023-02-28 10:28:33.0694 Info Copied mixtapetorrent.yml +2023-02-28 10:28:33.0698 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml +2023-02-28 10:28:33.0709 Info Copied mma-torrents.yml +2023-02-28 10:28:33.0709 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml +2023-02-28 10:28:33.0723 Info Copied mnv.yml +2023-02-28 10:28:33.0728 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml +2023-02-28 10:28:33.0738 Info Copied mojblink.yml +2023-02-28 10:28:33.0738 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml +2023-02-28 10:28:33.0753 Info Copied mousebits.yml +2023-02-28 10:28:33.0758 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml +2023-02-28 10:28:33.0769 Info Copied moviesdvdr.yml +2023-02-28 10:28:33.0769 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml +2023-02-28 10:28:33.0784 Info Copied moviesite.yml +2023-02-28 10:28:33.0789 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml +2023-02-28 10:28:33.0799 Info Copied movietorrent.yml +2023-02-28 10:28:33.0799 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml +2023-02-28 10:28:33.0814 Info Copied movietorrentz.yml +2023-02-28 10:28:33.0820 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml +2023-02-28 10:28:33.0832 Info Copied mteamtp.yml +2023-02-28 10:28:33.0837 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml +2023-02-28 10:28:33.0849 Info Copied mteamtp2fa.yml +2023-02-28 10:28:33.0849 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml +2023-02-28 10:28:33.0865 Info Copied muziekfabriek.yml +2023-02-28 10:28:33.0870 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml +2023-02-28 10:28:33.0882 Info Copied mvgroupforum.yml +2023-02-28 10:28:33.0887 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml +2023-02-28 10:28:33.0899 Info Copied mvgroupmain.yml +2023-02-28 10:28:33.0899 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml +2023-02-28 10:28:33.0917 Info Copied mypornclub.yml +2023-02-28 10:28:33.0917 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml +2023-02-28 10:28:33.0933 Info Copied myspleen.yml +2023-02-28 10:28:33.0939 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml +2023-02-28 10:28:33.0951 Info Copied nethd.yml +2023-02-28 10:28:33.0951 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml +2023-02-28 10:28:33.0968 Info Copied newretro.yml +2023-02-28 10:28:33.0968 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml +2023-02-28 10:28:33.0983 Info Copied newstudio.yml +2023-02-28 10:28:33.0988 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml +2023-02-28 10:28:33.0999 Info Copied newstudiol.yml +2023-02-28 10:28:33.0999 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml +2023-02-28 10:28:33.1013 Info Copied nicept.yml +2023-02-28 10:28:33.1019 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml +2023-02-28 10:28:33.1029 Info Copied nipponsei.yml +2023-02-28 10:28:33.1029 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml +2023-02-28 10:28:33.1047 Info Copied nntt.yml +2023-02-28 10:28:33.1047 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml +2023-02-28 10:28:33.1063 Info Copied noname-club.yml +2023-02-28 10:28:33.1068 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml +2023-02-28 10:28:33.1082 Info Copied noname-clubl.yml +2023-02-28 10:28:33.1087 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml +2023-02-28 10:28:33.1097 Info Copied nyaasi.yml +2023-02-28 10:28:33.1097 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml +2023-02-28 10:28:33.1112 Info Copied oldtoonsworld.yml +2023-02-28 10:28:33.1117 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml +2023-02-28 10:28:33.1127 Info Copied onejav.yml +2023-02-28 10:28:33.1127 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml +2023-02-28 10:28:33.1142 Info Copied opencd.yml +2023-02-28 10:28:33.1142 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml +2023-02-28 10:28:33.1157 Info Copied oshenpt.yml +2023-02-28 10:28:33.1157 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml +2023-02-28 10:28:33.1172 Info Copied ourbits.yml +2023-02-28 10:28:33.1172 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml +2023-02-28 10:28:33.1188 Info Copied p2pbg.yml +2023-02-28 10:28:33.1188 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml +2023-02-28 10:28:33.1204 Info Copied parnuxi.yml +2023-02-28 10:28:33.1208 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml +2023-02-28 10:28:33.1220 Info Copied partis.yml +2023-02-28 10:28:33.1220 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml +2023-02-28 10:28:33.1235 Info Copied pctorrent.yml +2023-02-28 10:28:33.1240 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml +2023-02-28 10:28:33.1251 Info Copied peeratiko.yml +2023-02-28 10:28:33.1251 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml +2023-02-28 10:28:33.1268 Info Copied peersfm.yml +2023-02-28 10:28:33.1343 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml +2023-02-28 10:28:33.1355 Info Copied pier720.yml +2023-02-28 10:28:33.1359 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml +2023-02-28 10:28:33.1369 Info Copied pignetwork.yml +2023-02-28 10:28:33.1369 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml +2023-02-28 10:28:33.1384 Info Copied piratbit.yml +2023-02-28 10:28:33.1388 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml +2023-02-28 10:28:33.1400 Info Copied piratbitl.yml +2023-02-28 10:28:33.1400 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml +2023-02-28 10:28:33.1413 Info Copied pixelcove.yml +2023-02-28 10:28:33.1417 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml +2023-02-28 10:28:33.1427 Info Copied pixelcove2fa.yml +2023-02-28 10:28:33.1427 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml +2023-02-28 10:28:33.1441 Info Copied polishsource.yml +2023-02-28 10:28:33.1441 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml +2023-02-28 10:28:33.1454 Info Copied polishtracker-api.yml +2023-02-28 10:28:33.1459 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml +2023-02-28 10:28:33.1470 Info Copied pornbay.yml +2023-02-28 10:28:33.1470 Info Attempting to copy pornforall.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pornforall.yml to destination: /app/Jackett/Definitions/pornforall.yml +2023-02-28 10:28:33.1483 Info Copied pornforall.yml +2023-02-28 10:28:33.1483 Info Attempting to copy pornleech.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pornleech.yml to destination: /app/Jackett/Definitions/pornleech.yml +2023-02-28 10:28:33.1496 Info Copied pornleech.yml +2023-02-28 10:28:33.1500 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml +2023-02-28 10:28:33.1509 Info Copied pornoslab.yml +2023-02-28 10:28:33.1509 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml +2023-02-28 10:28:33.1522 Info Copied pornotorrent.yml +2023-02-28 10:28:33.1522 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml +2023-02-28 10:28:33.1536 Info Copied portugas-api.yml +2023-02-28 10:28:33.1540 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml +2023-02-28 10:28:33.1550 Info Copied potuk.yml +2023-02-28 10:28:33.1550 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml +2023-02-28 10:28:33.1563 Info Copied proaudiotorrents.yml +2023-02-28 10:28:33.1568 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml +2023-02-28 10:28:33.1578 Info Copied proporno.yml +2023-02-28 10:28:33.1578 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml +2023-02-28 10:28:33.1592 Info Copied ptchina.yml +2023-02-28 10:28:33.1592 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml +2023-02-28 10:28:33.1605 Info Copied pterclub.yml +2023-02-28 10:28:33.1609 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml +2023-02-28 10:28:33.1619 Info Copied ptfiles.yml +2023-02-28 10:28:33.1619 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml +2023-02-28 10:28:33.1632 Info Copied pthome.yml +2023-02-28 10:28:33.1632 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml +2023-02-28 10:28:33.1645 Info Copied ptmsg.yml +2023-02-28 10:28:33.1649 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml +2023-02-28 10:28:33.1660 Info Copied ptsbao.yml +2023-02-28 10:28:33.1660 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml +2023-02-28 10:28:33.1675 Info Copied pttime.yml +2023-02-28 10:28:33.1679 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml +2023-02-28 10:28:33.1689 Info Copied punkshorror.yml +2023-02-28 10:28:33.1689 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml +2023-02-28 10:28:33.1703 Info Copied puntotorrent.yml +2023-02-28 10:28:33.1707 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml +2023-02-28 10:28:33.1717 Info Copied pussytorrents.yml +2023-02-28 10:28:33.1717 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml +2023-02-28 10:28:33.1730 Info Copied putao.yml +2023-02-28 10:28:33.1730 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml +2023-02-28 10:28:33.1744 Info Copied puurhollands.yml +2023-02-28 10:28:33.1748 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml +2023-02-28 10:28:33.1758 Info Copied pwtorrents.yml +2023-02-28 10:28:33.1758 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml +2023-02-28 10:28:33.1771 Info Copied r3vwtf.yml +2023-02-28 10:28:33.1771 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml +2023-02-28 10:28:33.1786 Info Copied racing4everyone-api.yml +2023-02-28 10:28:33.1790 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml +2023-02-28 10:28:33.1801 Info Copied racingforme.yml +2023-02-28 10:28:33.1801 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml +2023-02-28 10:28:33.1816 Info Copied rainbowtracker.yml +2023-02-28 10:28:33.1820 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml +2023-02-28 10:28:33.1831 Info Copied rapidzona.yml +2023-02-28 10:28:33.1831 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml +2023-02-28 10:28:33.1845 Info Copied redbits-api.yml +2023-02-28 10:28:33.1849 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml +2023-02-28 10:28:33.1860 Info Copied redstartorrent.yml +2023-02-28 10:28:33.1860 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml +2023-02-28 10:28:33.1874 Info Copied reelflix-api.yml +2023-02-28 10:28:33.1879 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml +2023-02-28 10:28:33.1889 Info Copied resurrectthenet.yml +2023-02-28 10:28:33.1889 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml +2023-02-28 10:28:33.1905 Info Copied rgfootball.yml +2023-02-28 10:28:33.1910 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml +2023-02-28 10:28:33.1920 Info Copied rintor.yml +2023-02-28 10:28:33.1920 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml +2023-02-28 10:28:33.1935 Info Copied rintornet.yml +2023-02-28 10:28:33.1940 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml +2023-02-28 10:28:33.1954 Info Copied riperam.yml +2023-02-28 10:28:33.1958 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml +2023-02-28 10:28:33.1969 Info Copied rockbox.yml +2023-02-28 10:28:33.1969 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml +2023-02-28 10:28:33.1984 Info Copied romanianmetaltorrents.yml +2023-02-28 10:28:33.1989 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml +2023-02-28 10:28:33.2000 Info Copied rptorrents.yml +2023-02-28 10:28:33.2000 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml +2023-02-28 10:28:33.2016 Info Copied rudub.yml +2023-02-28 10:28:33.2021 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml +2023-02-28 10:28:33.2033 Info Copied rus-media.yml +2023-02-28 10:28:33.2037 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml +2023-02-28 10:28:33.2051 Info Copied rustorka.yml +2023-02-28 10:28:33.2051 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml +2023-02-28 10:28:33.2066 Info Copied rutor.yml +2023-02-28 10:28:33.2071 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml +2023-02-28 10:28:33.2084 Info Copied rutracker-ru.yml +2023-02-28 10:28:33.2088 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml +2023-02-28 10:28:33.2099 Info Copied satclubbing.yml +2023-02-28 10:28:33.2099 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml +2023-02-28 10:28:33.2115 Info Copied scenerush.yml +2023-02-28 10:28:33.2119 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml +2023-02-28 10:28:33.2130 Info Copied sdbits.yml +2023-02-28 10:28:33.2130 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml +2023-02-28 10:28:33.2145 Info Copied seedfile.yml +2023-02-28 10:28:33.2150 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml +2023-02-28 10:28:33.2162 Info Copied seedoff.yml +2023-02-28 10:28:33.2162 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml +2023-02-28 10:28:33.2177 Info Copied selezen.yml +2023-02-28 10:28:33.2177 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml +2023-02-28 10:28:33.2193 Info Copied sexypics.yml +2023-02-28 10:28:33.2197 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml +2023-02-28 10:28:33.2208 Info Copied shanaproject.yml +2023-02-28 10:28:33.2208 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml +2023-02-28 10:28:33.2223 Info Copied shareisland-api.yml +2023-02-28 10:28:33.2228 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml +2023-02-28 10:28:33.2239 Info Copied sharewood.yml +2023-02-28 10:28:33.2239 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml +2023-02-28 10:28:33.2255 Info Copied sharkpt.yml +2023-02-28 10:28:33.2259 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml +2023-02-28 10:28:33.2270 Info Copied showrss.yml +2023-02-28 10:28:33.2270 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml +2023-02-28 10:28:33.2286 Info Copied siambit.yml +2023-02-28 10:28:33.2291 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml +2023-02-28 10:28:33.2301 Info Copied skipthecommercials-api.yml +2023-02-28 10:28:33.2301 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml +2023-02-28 10:28:33.2317 Info Copied skipthetrailers.yml +2023-02-28 10:28:33.2317 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml +2023-02-28 10:28:33.2333 Info Copied sktorrent-org.yml +2023-02-28 10:28:33.2338 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml +2023-02-28 10:28:33.2350 Info Copied sktorrent.yml +2023-02-28 10:28:33.2350 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml +2023-02-28 10:28:33.2365 Info Copied slosoul.yml +2023-02-28 10:28:33.2370 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml +2023-02-28 10:28:33.2381 Info Copied snowpt.yml +2023-02-28 10:28:33.2381 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml +2023-02-28 10:28:33.2397 Info Copied solidtorrents.yml +2023-02-28 10:28:33.2397 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml +2023-02-28 10:28:33.2412 Info Copied sosulki.yml +2023-02-28 10:28:33.2412 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml +2023-02-28 10:28:33.2428 Info Copied soulvoice.yml +2023-02-28 10:28:33.2428 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml +2023-02-28 10:28:33.2444 Info Copied speedmasterhd.yml +2023-02-28 10:28:33.2448 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml +2023-02-28 10:28:33.2459 Info Copied speedtorrentreloaded.yml +2023-02-28 10:28:33.2459 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml +2023-02-28 10:28:33.2475 Info Copied spidertk.yml +2023-02-28 10:28:33.2480 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml +2023-02-28 10:28:33.2491 Info Copied spiritofrevolution.yml +2023-02-28 10:28:33.2491 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml +2023-02-28 10:28:33.2506 Info Copied sporthd.yml +2023-02-28 10:28:33.2511 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml +2023-02-28 10:28:33.2522 Info Copied sportscult.yml +2023-02-28 10:28:33.2522 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml +2023-02-28 10:28:33.2537 Info Copied springsunday.yml +2023-02-28 10:28:33.2537 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml +2023-02-28 10:28:33.2553 Info Copied sugoimusic.yml +2023-02-28 10:28:33.2557 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml +2023-02-28 10:28:33.2568 Info Copied sukebeinyaasi.yml +2023-02-28 10:28:33.2568 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml +2023-02-28 10:28:33.2584 Info Copied superbits.yml +2023-02-28 10:28:33.2589 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml +2023-02-28 10:28:33.2600 Info Copied swarmazon-api.yml +2023-02-28 10:28:33.2600 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml +2023-02-28 10:28:33.2617 Info Copied tapochek.yml +2023-02-28 10:28:33.2617 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml +2023-02-28 10:28:33.2633 Info Copied tasmanit.yml +2023-02-28 10:28:33.2637 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml +2023-02-28 10:28:33.2648 Info Copied teamctgame.yml +2023-02-28 10:28:33.2648 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml +2023-02-28 10:28:33.2664 Info Copied teamhd.yml +2023-02-28 10:28:33.2668 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml +2023-02-28 10:28:33.2680 Info Copied teamos.yml +2023-02-28 10:28:33.2680 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml +2023-02-28 10:28:33.2695 Info Copied tekno3d.yml +2023-02-28 10:28:33.2699 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml +2023-02-28 10:28:33.2710 Info Copied tellytorrent-api.yml +2023-02-28 10:28:33.2710 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml +2023-02-28 10:28:33.2726 Info Copied teracod.yml +2023-02-28 10:28:33.2731 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml +2023-02-28 10:28:33.2742 Info Copied the-crazy-ones.yml +2023-02-28 10:28:33.2747 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml +2023-02-28 10:28:33.2759 Info Copied thedarkcommunity-api.yml +2023-02-28 10:28:33.2759 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml +2023-02-28 10:28:33.2774 Info Copied theempire.yml +2023-02-28 10:28:33.2779 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml +2023-02-28 10:28:33.2790 Info Copied thefallingangels.yml +2023-02-28 10:28:33.2790 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml +2023-02-28 10:28:33.2805 Info Copied thegeeks.yml +2023-02-28 10:28:33.2810 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml +2023-02-28 10:28:33.2822 Info Copied theleachzone.yml +2023-02-28 10:28:33.2822 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml +2023-02-28 10:28:33.2838 Info Copied themixingbowl.yml +2023-02-28 10:28:33.2838 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml +2023-02-28 10:28:33.2853 Info Copied thenewfun.yml +2023-02-28 10:28:33.2857 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml +2023-02-28 10:28:33.2869 Info Copied theoccult.yml +2023-02-28 10:28:33.2869 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml +2023-02-28 10:28:33.2884 Info Copied theoldschool-api.yml +2023-02-28 10:28:33.2889 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml +2023-02-28 10:28:33.2900 Info Copied thepiratebay.yml +2023-02-28 10:28:33.2900 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml +2023-02-28 10:28:33.2915 Info Copied theplace.yml +2023-02-28 10:28:33.2920 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml +2023-02-28 10:28:33.2931 Info Copied thesceneplace.yml +2023-02-28 10:28:33.2931 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml +2023-02-28 10:28:33.2947 Info Copied theshinning-api.yml +2023-02-28 10:28:33.2947 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml +2023-02-28 10:28:33.2963 Info Copied theshow.yml +2023-02-28 10:28:33.2967 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml +2023-02-28 10:28:33.2978 Info Copied thevault.yml +2023-02-28 10:28:33.2978 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml +2023-02-28 10:28:33.2994 Info Copied tjupt.yml +2023-02-28 10:28:33.2999 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml +2023-02-28 10:28:33.3010 Info Copied tlfbits.yml +2023-02-28 10:28:33.3010 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml +2023-02-28 10:28:33.3025 Info Copied tmghub.yml +2023-02-28 10:28:33.3030 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml +2023-02-28 10:28:33.3041 Info Copied tokyotosho.yml +2023-02-28 10:28:33.3041 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml +2023-02-28 10:28:33.3058 Info Copied torlock.yml +2023-02-28 10:28:33.3058 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml +2023-02-28 10:28:33.3119 Info Copied tornado.yml +2023-02-28 10:28:33.3139 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml +2023-02-28 10:28:33.3150 Info Copied torrent-explosiv.yml +2023-02-28 10:28:33.3150 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml +2023-02-28 10:28:33.3163 Info Copied torrent-pirat.yml +2023-02-28 10:28:33.3167 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml +2023-02-28 10:28:33.3177 Info Copied torrent-turk.yml +2023-02-28 10:28:33.3177 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml +2023-02-28 10:28:33.3191 Info Copied torrent9.yml +2023-02-28 10:28:33.3191 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml +2023-02-28 10:28:33.3204 Info Copied torrent911.yml +2023-02-28 10:28:33.3208 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml +2023-02-28 10:28:33.3218 Info Copied torrent9clone.yml +2023-02-28 10:28:33.3218 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml +2023-02-28 10:28:33.3232 Info Copied torrentbd.yml +2023-02-28 10:28:33.3232 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml +2023-02-28 10:28:33.3245 Info Copied torrentby.yml +2023-02-28 10:28:33.3250 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml +2023-02-28 10:28:33.3260 Info Copied torrentccf.yml +2023-02-28 10:28:33.3260 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml +2023-02-28 10:28:33.3274 Info Copied torrentcore.yml +2023-02-28 10:28:33.3278 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml +2023-02-28 10:28:33.3288 Info Copied torrentdownload.yml +2023-02-28 10:28:33.3288 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml +2023-02-28 10:28:33.3301 Info Copied torrentdownloads.yml +2023-02-28 10:28:33.3301 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml +2023-02-28 10:28:33.3315 Info Copied torrentfunk.yml +2023-02-28 10:28:33.3319 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml +2023-02-28 10:28:33.3329 Info Copied torrentgalaxy.yml +2023-02-28 10:28:33.3329 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml +2023-02-28 10:28:33.3343 Info Copied torrenthr.yml +2023-02-28 10:28:33.3347 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml +2023-02-28 10:28:33.3357 Info Copied torrenting.yml +2023-02-28 10:28:33.3357 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml +2023-02-28 10:28:33.3370 Info Copied torrentkitty.yml +2023-02-28 10:28:33.3370 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml +2023-02-28 10:28:33.3384 Info Copied torrentland.yml +2023-02-28 10:28:33.3388 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml +2023-02-28 10:28:33.3398 Info Copied torrentleech-pl.yml +2023-02-28 10:28:33.3398 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml +2023-02-28 10:28:33.3411 Info Copied torrentleech.yml +2023-02-28 10:28:33.3411 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml +2023-02-28 10:28:33.3425 Info Copied torrentlt.yml +2023-02-28 10:28:33.3429 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml +2023-02-28 10:28:33.3439 Info Copied torrentmasters.yml +2023-02-28 10:28:33.3439 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml +2023-02-28 10:28:33.3464 Info Copied torrentoyunindir.yml +2023-02-28 10:28:33.3468 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml +2023-02-28 10:28:33.3478 Info Copied torrentproject2.yml +2023-02-28 10:28:33.3478 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml +2023-02-28 10:28:33.3491 Info Copied torrentqq.yml +2023-02-28 10:28:33.3491 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml +2023-02-28 10:28:33.3504 Info Copied torrentsectorcrew.yml +2023-02-28 10:28:33.3508 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml +2023-02-28 10:28:33.3518 Info Copied torrentseeds-api.yml +2023-02-28 10:28:33.3518 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml +2023-02-28 10:28:33.3531 Info Copied torrentsir.yml +2023-02-28 10:28:33.3531 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml +2023-02-28 10:28:33.3547 Info Copied torrentslocal.yml +2023-02-28 10:28:33.3547 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml +2023-02-28 10:28:33.3560 Info Copied torrentv.yml +2023-02-28 10:28:33.3560 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml +2023-02-28 10:28:33.3573 Info Copied torrentview.yml +2023-02-28 10:28:33.3578 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml +2023-02-28 10:28:33.3587 Info Copied torrentwhiz.yml +2023-02-28 10:28:33.3587 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml +2023-02-28 10:28:33.3599 Info Copied torrentz2eu.yml +2023-02-28 10:28:33.3599 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml +2023-02-28 10:28:33.3612 Info Copied torrentz2nz.yml +2023-02-28 10:28:33.3612 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml +2023-02-28 10:28:33.3625 Info Copied totallykids.yml +2023-02-28 10:28:33.3630 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml +2023-02-28 10:28:33.3639 Info Copied totheglory.yml +2023-02-28 10:28:33.3639 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml +2023-02-28 10:28:33.3652 Info Copied totheglorycookie.yml +2023-02-28 10:28:33.3652 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml +2023-02-28 10:28:33.3665 Info Copied traht.yml +2023-02-28 10:28:33.3669 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml +2023-02-28 10:28:33.3679 Info Copied trancetraffic.yml +2023-02-28 10:28:33.3679 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml +2023-02-28 10:28:33.3692 Info Copied trezzor.yml +2023-02-28 10:28:33.3692 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml +2023-02-28 10:28:33.3705 Info Copied tribalmixes.yml +2023-02-28 10:28:33.3709 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml +2023-02-28 10:28:33.3718 Info Copied trupornolabs.yml +2023-02-28 10:28:33.3718 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml +2023-02-28 10:28:33.3732 Info Copied turkseed.yml +2023-02-28 10:28:33.3732 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml +2023-02-28 10:28:33.3745 Info Copied turktorrent.yml +2023-02-28 10:28:33.3749 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml +2023-02-28 10:28:33.3759 Info Copied tvchaosuk.yml +2023-02-28 10:28:33.3759 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml +2023-02-28 10:28:33.3772 Info Copied tvroad.yml +2023-02-28 10:28:33.3772 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml +2023-02-28 10:28:33.3785 Info Copied twilight.yml +2023-02-28 10:28:33.3790 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml +2023-02-28 10:28:33.3799 Info Copied u2.yml +2023-02-28 10:28:33.3799 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml +2023-02-28 10:28:33.3813 Info Copied uhdbits.yml +2023-02-28 10:28:33.3813 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml +2023-02-28 10:28:33.3828 Info Copied uniondht.yml +2023-02-28 10:28:33.3828 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml +2023-02-28 10:28:33.3842 Info Copied unionfansub.yml +2023-02-28 10:28:33.3842 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml +2023-02-28 10:28:33.3855 Info Copied uniongang.yml +2023-02-28 10:28:33.3859 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml +2023-02-28 10:28:33.3869 Info Copied unleashthecartoons.yml +2023-02-28 10:28:33.3884 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml +2023-02-28 10:28:33.3894 Info Copied unlimitz.yml +2023-02-28 10:28:33.3899 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml +2023-02-28 10:28:33.3909 Info Copied vsthouse.yml +2023-02-28 10:28:33.3909 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml +2023-02-28 10:28:33.3922 Info Copied vsttorrents.yml +2023-02-28 10:28:33.3922 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml +2023-02-28 10:28:33.3935 Info Copied vtorrent.yml +2023-02-28 10:28:33.3940 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml +2023-02-28 10:28:33.3949 Info Copied whiteangel.yml +2023-02-28 10:28:33.3949 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml +2023-02-28 10:28:33.3963 Info Copied wihd.yml +2023-02-28 10:28:33.3967 Info Attempting to copy woot.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/woot.yml to destination: /app/Jackett/Definitions/woot.yml +2023-02-28 10:28:33.3977 Info Copied woot.yml +2023-02-28 10:28:33.3977 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml +2023-02-28 10:28:33.3990 Info Copied world-of-tomorrow.yml +2023-02-28 10:28:33.3990 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml +2023-02-28 10:28:33.4004 Info Copied x-ite.me.yml +2023-02-28 10:28:33.4008 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml +2023-02-28 10:28:33.4018 Info Copied xbytes2.yml +2023-02-28 10:28:33.4018 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml +2023-02-28 10:28:33.4031 Info Copied xthor-api.yml +2023-02-28 10:28:33.4031 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml +2023-02-28 10:28:33.4044 Info Copied xtorrenty.yml +2023-02-28 10:28:33.4048 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml +2023-02-28 10:28:33.4057 Info Copied xtremebytes.yml +2023-02-28 10:28:33.4057 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml +2023-02-28 10:28:33.4070 Info Copied xwtclassics.yml +2023-02-28 10:28:33.4070 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml +2023-02-28 10:28:33.4083 Info Copied xwtorrents.yml +2023-02-28 10:28:33.4087 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml +2023-02-28 10:28:33.4097 Info Copied xxxadulttorrent.yml +2023-02-28 10:28:33.4097 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml +2023-02-28 10:28:33.4111 Info Copied xxxtor.yml +2023-02-28 10:28:33.4111 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml +2023-02-28 10:28:33.4125 Info Copied xxxtorrents.yml +2023-02-28 10:28:33.4129 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml +2023-02-28 10:28:33.4138 Info Copied ydypt.yml +2023-02-28 10:28:33.4138 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml +2023-02-28 10:28:33.4151 Info Copied yggcookie.yml +2023-02-28 10:28:33.4151 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml +2023-02-28 10:28:33.4166 Info Copied yggtorrent.yml +2023-02-28 10:28:33.4170 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml +2023-02-28 10:28:33.4179 Info Copied yourbittorrent.yml +2023-02-28 10:28:33.4179 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml +2023-02-28 10:28:33.4192 Info Copied yts.yml +2023-02-28 10:28:33.4192 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml +2023-02-28 10:28:33.4205 Info Copied zamundanet.yml +2023-02-28 10:28:33.4209 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml +2023-02-28 10:28:33.4218 Info Copied zelkaorg.yml +2023-02-28 10:28:33.4218 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml +2023-02-28 10:28:33.4232 Info Copied zetorrents.yml +2023-02-28 10:28:33.4232 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml +2023-02-28 10:28:33.4245 Info Copied zmpt.yml +2023-02-28 10:28:33.4249 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml +2023-02-28 10:28:33.4258 Info Copied zomb.yml +2023-02-28 10:28:33.4258 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml +2023-02-28 10:28:33.4272 Info Copied ztracker.yml +2023-02-28 10:28:33.4272 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll +2023-02-28 10:28:33.4285 Info Copied FlareSolverrSharp.dll +2023-02-28 10:28:33.4289 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll +2023-02-28 10:28:33.4308 Info Copied ICSharpCode.SharpZipLib.dll +2023-02-28 10:28:33.4308 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh +2023-02-28 10:28:33.4320 Info Copied install_service_systemd.sh +2023-02-28 10:28:33.4320 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/jackett to destination: /app/Jackett/jackett +2023-02-28 10:28:33.4336 Info Copied jackett +2023-02-28 10:28:33.4340 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh +2023-02-28 10:28:33.4349 Info Copied jackett_launcher.sh +2023-02-28 10:28:33.4349 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll +2023-02-28 10:28:33.4402 Info Copied Jackett.Common.dll +2023-02-28 10:28:33.4402 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb +2023-02-28 10:28:33.4420 Info Copied Jackett.Common.pdb +2023-02-28 10:28:33.4420 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json +2023-02-28 10:28:33.4437 Info Copied jackett.deps.json +2023-02-28 10:28:33.4437 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll +2023-02-28 10:28:33.4476 Info Copied jackett.dll +2023-02-28 10:28:33.4480 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb +2023-02-28 10:28:33.4490 Info Copied jackett.pdb +2023-02-28 10:28:33.4490 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json +2023-02-28 10:28:33.4503 Info Copied jackett.runtimeconfig.json +2023-02-28 10:28:33.4507 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater +2023-02-28 10:28:33.4520 Info Copied JackettUpdater +2023-02-28 10:28:33.4520 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json +2023-02-28 10:28:33.4534 Info Copied JackettUpdater.deps.json +2023-02-28 10:28:33.4538 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll +2023-02-28 10:28:33.4560 Info Copied JackettUpdater.dll +2023-02-28 10:28:33.4560 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb +2023-02-28 10:28:33.4573 Info Copied JackettUpdater.pdb +2023-02-28 10:28:33.4577 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json +2023-02-28 10:28:33.4587 Info Copied JackettUpdater.runtimeconfig.json +2023-02-28 10:28:33.4587 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so +2023-02-28 10:28:33.4718 Info Copied libclrjit.so +2023-02-28 10:28:33.4718 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so +2023-02-28 10:28:33.5029 Info Copied libcoreclr.so +2023-02-28 10:28:33.5029 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so +2023-02-28 10:28:33.5097 Info Copied libcoreclrtraceptprovider.so +2023-02-28 10:28:33.5097 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so +2023-02-28 10:28:33.5170 Info Copied libdbgshim.so +2023-02-28 10:28:33.5170 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so +2023-02-28 10:28:33.5201 Info Copied libhostfxr.so +2023-02-28 10:28:33.5201 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so +2023-02-28 10:28:33.5228 Info Copied libhostpolicy.so +2023-02-28 10:28:33.5228 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so +2023-02-28 10:28:33.5248 Info Copied libMono.Unix.so +2023-02-28 10:28:33.5248 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so +2023-02-28 10:28:33.5420 Info Copied libmscordaccore.so +2023-02-28 10:28:33.5420 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so +2023-02-28 10:28:33.5502 Info Copied libmscordbi.so +2023-02-28 10:28:33.5507 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so +2023-02-28 10:28:33.5521 Info Copied libSystem.Globalization.Native.so +2023-02-28 10:28:33.5521 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so +2023-02-28 10:28:33.5573 Info Copied libSystem.IO.Compression.Native.so +2023-02-28 10:28:33.5577 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so +2023-02-28 10:28:33.5591 Info Copied libSystem.Native.so +2023-02-28 10:28:33.5591 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so +2023-02-28 10:28:33.5605 Info Copied libSystem.Net.Security.Native.so +2023-02-28 10:28:33.5611 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so +2023-02-28 10:28:33.5628 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so +2023-02-28 10:28:33.5628 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/LICENSE to destination: /app/Jackett/LICENSE +2023-02-28 10:28:33.5642 Info Copied LICENSE +2023-02-28 10:28:33.5642 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll +2023-02-28 10:28:33.5660 Info Copied Microsoft.AspNetCore.Antiforgery.dll +2023-02-28 10:28:33.5660 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-02-28 10:28:33.5690 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-02-28 10:28:33.5690 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll +2023-02-28 10:28:33.5711 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll +2023-02-28 10:28:33.5711 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll +2023-02-28 10:28:33.5729 Info Copied Microsoft.AspNetCore.Authentication.Core.dll +2023-02-28 10:28:33.5729 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll +2023-02-28 10:28:33.5751 Info Copied Microsoft.AspNetCore.Authentication.dll +2023-02-28 10:28:33.5751 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll +2023-02-28 10:28:33.5770 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll +2023-02-28 10:28:33.5770 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll +2023-02-28 10:28:33.5788 Info Copied Microsoft.AspNetCore.Authorization.dll +2023-02-28 10:28:33.5788 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll +2023-02-28 10:28:33.5803 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll +2023-02-28 10:28:33.5807 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll +2023-02-28 10:28:33.5819 Info Copied Microsoft.AspNetCore.Components.Authorization.dll +2023-02-28 10:28:33.5819 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll +2023-02-28 10:28:33.5868 Info Copied Microsoft.AspNetCore.Components.dll +2023-02-28 10:28:33.5868 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll +2023-02-28 10:28:33.5885 Info Copied Microsoft.AspNetCore.Components.Forms.dll +2023-02-28 10:28:33.5889 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll +2023-02-28 10:28:33.5929 Info Copied Microsoft.AspNetCore.Components.Server.dll +2023-02-28 10:28:33.5929 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll +2023-02-28 10:28:33.5954 Info Copied Microsoft.AspNetCore.Components.Web.dll +2023-02-28 10:28:33.5959 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll +2023-02-28 10:28:33.5972 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll +2023-02-28 10:28:33.5972 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll +2023-02-28 10:28:33.5987 Info Copied Microsoft.AspNetCore.CookiePolicy.dll +2023-02-28 10:28:33.5987 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll +2023-02-28 10:28:33.6004 Info Copied Microsoft.AspNetCore.Cors.dll +2023-02-28 10:28:33.6008 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll +2023-02-28 10:28:33.6022 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll +2023-02-28 10:28:33.6022 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-02-28 10:28:33.6036 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-02-28 10:28:33.6040 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-02-28 10:28:33.6051 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-02-28 10:28:33.6051 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll +2023-02-28 10:28:33.6081 Info Copied Microsoft.AspNetCore.DataProtection.dll +2023-02-28 10:28:33.6081 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-02-28 10:28:33.6096 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-02-28 10:28:33.6100 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-02-28 10:28:33.6111 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-02-28 10:28:33.6111 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll +2023-02-28 10:28:33.6140 Info Copied Microsoft.AspNetCore.Diagnostics.dll +2023-02-28 10:28:33.6140 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-02-28 10:28:33.6155 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-02-28 10:28:33.6159 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll +2023-02-28 10:28:33.6172 Info Copied Microsoft.AspNetCore.dll +2023-02-28 10:28:33.6172 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll +2023-02-28 10:28:33.6187 Info Copied Microsoft.AspNetCore.HostFiltering.dll +2023-02-28 10:28:33.6187 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-02-28 10:28:33.6201 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-02-28 10:28:33.6201 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll +2023-02-28 10:28:33.6244 Info Copied Microsoft.AspNetCore.Hosting.dll +2023-02-28 10:28:33.6249 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-02-28 10:28:33.6259 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-02-28 10:28:33.6259 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll +2023-02-28 10:28:33.6274 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll +2023-02-28 10:28:33.6278 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll +2023-02-28 10:28:33.6296 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll +2023-02-28 10:28:33.6300 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll +2023-02-28 10:28:33.6312 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll +2023-02-28 10:28:33.6312 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll +2023-02-28 10:28:33.6350 Info Copied Microsoft.AspNetCore.Http.Connections.dll +2023-02-28 10:28:33.6350 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll +2023-02-28 10:28:33.6375 Info Copied Microsoft.AspNetCore.Http.dll +2023-02-28 10:28:33.6379 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll +2023-02-28 10:28:33.6402 Info Copied Microsoft.AspNetCore.Http.Extensions.dll +2023-02-28 10:28:33.6402 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll +2023-02-28 10:28:33.6419 Info Copied Microsoft.AspNetCore.Http.Features.dll +2023-02-28 10:28:33.6419 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll +2023-02-28 10:28:33.6439 Info Copied Microsoft.AspNetCore.Http.Results.dll +2023-02-28 10:28:33.6439 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll +2023-02-28 10:28:33.6459 Info Copied Microsoft.AspNetCore.HttpLogging.dll +2023-02-28 10:28:33.6459 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll +2023-02-28 10:28:33.6476 Info Copied Microsoft.AspNetCore.HttpOverrides.dll +2023-02-28 10:28:33.6480 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll +2023-02-28 10:28:33.6491 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll +2023-02-28 10:28:33.6491 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll +2023-02-28 10:28:33.6513 Info Copied Microsoft.AspNetCore.Identity.dll +2023-02-28 10:28:33.6517 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll +2023-02-28 10:28:33.6528 Info Copied Microsoft.AspNetCore.JsonPatch.dll +2023-02-28 10:28:33.6528 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll +2023-02-28 10:28:33.6543 Info Copied Microsoft.AspNetCore.Localization.dll +2023-02-28 10:28:33.6547 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll +2023-02-28 10:28:33.6558 Info Copied Microsoft.AspNetCore.Localization.Routing.dll +2023-02-28 10:28:33.6558 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll +2023-02-28 10:28:33.6571 Info Copied Microsoft.AspNetCore.Metadata.dll +2023-02-28 10:28:33.6571 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-02-28 10:28:33.6594 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-02-28 10:28:33.6599 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-02-28 10:28:33.6615 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-02-28 10:28:33.6619 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll +2023-02-28 10:28:33.6701 Info Copied Microsoft.AspNetCore.Mvc.Core.dll +2023-02-28 10:28:33.6701 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll +2023-02-28 10:28:33.6717 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll +2023-02-28 10:28:33.6717 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-02-28 10:28:33.6736 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-02-28 10:28:33.6740 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll +2023-02-28 10:28:33.6751 Info Copied Microsoft.AspNetCore.Mvc.dll +2023-02-28 10:28:33.6751 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-02-28 10:28:33.6766 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-02-28 10:28:33.6769 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-02-28 10:28:33.6784 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-02-28 10:28:33.6788 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll +2023-02-28 10:28:33.6800 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll +2023-02-28 10:28:33.6800 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-02-28 10:28:33.6831 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-02-28 10:28:33.6831 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll +2023-02-28 10:28:33.6853 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll +2023-02-28 10:28:33.6853 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-02-28 10:28:33.6883 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-02-28 10:28:33.6883 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-02-28 10:28:33.6907 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-02-28 10:28:33.6907 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-02-28 10:28:33.6963 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-02-28 10:28:33.6968 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll +2023-02-28 10:28:33.6981 Info Copied Microsoft.AspNetCore.Razor.dll +2023-02-28 10:28:33.6981 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll +2023-02-28 10:28:33.6997 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll +2023-02-28 10:28:33.6997 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-02-28 10:28:33.7011 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-02-28 10:28:33.7011 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll +2023-02-28 10:28:33.7033 Info Copied Microsoft.AspNetCore.ResponseCaching.dll +2023-02-28 10:28:33.7033 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll +2023-02-28 10:28:33.7063 Info Copied Microsoft.AspNetCore.ResponseCompression.dll +2023-02-28 10:28:33.7067 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll +2023-02-28 10:28:33.7086 Info Copied Microsoft.AspNetCore.Rewrite.dll +2023-02-28 10:28:33.7090 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll +2023-02-28 10:28:33.7101 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll +2023-02-28 10:28:33.7101 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll +2023-02-28 10:28:33.7142 Info Copied Microsoft.AspNetCore.Routing.dll +2023-02-28 10:28:33.7142 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll +2023-02-28 10:28:33.7175 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll +2023-02-28 10:28:33.7179 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll +2023-02-28 10:28:33.7214 Info Copied Microsoft.AspNetCore.Server.IIS.dll +2023-02-28 10:28:33.7217 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll +2023-02-28 10:28:33.7229 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll +2023-02-28 10:28:33.7229 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-02-28 10:28:33.7329 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-02-28 10:28:33.7329 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll +2023-02-28 10:28:33.7344 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll +2023-02-28 10:28:33.7348 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-02-28 10:28:33.7368 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-02-28 10:28:33.7368 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-02-28 10:28:33.7389 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-02-28 10:28:33.7389 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll +2023-02-28 10:28:33.7407 Info Copied Microsoft.AspNetCore.Session.dll +2023-02-28 10:28:33.7407 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll +2023-02-28 10:28:33.7424 Info Copied Microsoft.AspNetCore.SignalR.Common.dll +2023-02-28 10:28:33.7428 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll +2023-02-28 10:28:33.7453 Info Copied Microsoft.AspNetCore.SignalR.Core.dll +2023-02-28 10:28:33.7457 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll +2023-02-28 10:28:33.7469 Info Copied Microsoft.AspNetCore.SignalR.dll +2023-02-28 10:28:33.7469 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-02-28 10:28:33.7485 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-02-28 10:28:33.7489 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll +2023-02-28 10:28:33.7505 Info Copied Microsoft.AspNetCore.StaticFiles.dll +2023-02-28 10:28:33.7509 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll +2023-02-28 10:28:33.7521 Info Copied Microsoft.AspNetCore.WebSockets.dll +2023-02-28 10:28:33.7521 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll +2023-02-28 10:28:33.7545 Info Copied Microsoft.AspNetCore.WebUtilities.dll +2023-02-28 10:28:33.7549 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll +2023-02-28 10:28:33.7591 Info Copied Microsoft.CSharp.dll +2023-02-28 10:28:33.7591 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll +2023-02-28 10:28:33.7606 Info Copied Microsoft.Extensions.Caching.Abstractions.dll +2023-02-28 10:28:33.7610 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll +2023-02-28 10:28:33.7623 Info Copied Microsoft.Extensions.Caching.Memory.dll +2023-02-28 10:28:33.7627 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll +2023-02-28 10:28:33.7638 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll +2023-02-28 10:28:33.7638 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll +2023-02-28 10:28:33.7654 Info Copied Microsoft.Extensions.Configuration.Binder.dll +2023-02-28 10:28:33.7657 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll +2023-02-28 10:28:33.7669 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll +2023-02-28 10:28:33.7669 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll +2023-02-28 10:28:33.7685 Info Copied Microsoft.Extensions.Configuration.dll +2023-02-28 10:28:33.7689 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-02-28 10:28:33.7700 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-02-28 10:28:33.7700 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll +2023-02-28 10:28:33.7715 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll +2023-02-28 10:28:33.7719 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll +2023-02-28 10:28:33.7730 Info Copied Microsoft.Extensions.Configuration.Ini.dll +2023-02-28 10:28:33.7730 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll +2023-02-28 10:28:33.7743 Info Copied Microsoft.Extensions.Configuration.Json.dll +2023-02-28 10:28:33.7748 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-02-28 10:28:33.7759 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-02-28 10:28:33.7759 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll +2023-02-28 10:28:33.7772 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll +2023-02-28 10:28:33.7772 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll +2023-02-28 10:28:33.7787 Info Copied Microsoft.Extensions.Configuration.Xml.dll +2023-02-28 10:28:33.7787 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-02-28 10:28:33.7804 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-02-28 10:28:33.7808 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll +2023-02-28 10:28:33.7825 Info Copied Microsoft.Extensions.DependencyInjection.dll +2023-02-28 10:28:33.7829 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-02-28 10:28:33.7840 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-02-28 10:28:33.7840 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-02-28 10:28:33.7859 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-02-28 10:28:33.7859 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll +2023-02-28 10:28:33.7873 Info Copied Microsoft.Extensions.Features.dll +2023-02-28 10:28:33.7877 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll +2023-02-28 10:28:33.7888 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll +2023-02-28 10:28:33.7888 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll +2023-02-28 10:28:33.7902 Info Copied Microsoft.Extensions.FileProviders.Composite.dll +2023-02-28 10:28:33.7902 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll +2023-02-28 10:28:33.7918 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll +2023-02-28 10:28:33.7918 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll +2023-02-28 10:28:33.7934 Info Copied Microsoft.Extensions.FileProviders.Physical.dll +2023-02-28 10:28:33.7938 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll +2023-02-28 10:28:33.7953 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll +2023-02-28 10:28:33.7953 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll +2023-02-28 10:28:33.7968 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll +2023-02-28 10:28:33.7968 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll +2023-02-28 10:28:33.7986 Info Copied Microsoft.Extensions.Hosting.dll +2023-02-28 10:28:33.7990 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll +2023-02-28 10:28:33.8005 Info Copied Microsoft.Extensions.Http.dll +2023-02-28 10:28:33.8009 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll +2023-02-28 10:28:33.8037 Info Copied Microsoft.Extensions.Identity.Core.dll +2023-02-28 10:28:33.8037 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll +2023-02-28 10:28:33.8053 Info Copied Microsoft.Extensions.Identity.Stores.dll +2023-02-28 10:28:33.8057 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll +2023-02-28 10:28:33.8069 Info Copied Microsoft.Extensions.Localization.Abstractions.dll +2023-02-28 10:28:33.8069 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll +2023-02-28 10:28:33.8084 Info Copied Microsoft.Extensions.Localization.dll +2023-02-28 10:28:33.8087 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll +2023-02-28 10:28:33.8101 Info Copied Microsoft.Extensions.Logging.Abstractions.dll +2023-02-28 10:28:33.8101 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll +2023-02-28 10:28:33.8108 Info Copied Microsoft.Extensions.Logging.Configuration.dll +2023-02-28 10:28:33.8108 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll +2023-02-28 10:28:33.8108 Info Copied Microsoft.Extensions.Logging.Console.dll +2023-02-28 10:28:33.8117 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll +2023-02-28 10:28:33.8117 Info Copied Microsoft.Extensions.Logging.Debug.dll +2023-02-28 10:28:33.8117 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll +2023-02-28 10:28:33.8129 Info Copied Microsoft.Extensions.Logging.dll +2023-02-28 10:28:33.8129 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll +2023-02-28 10:28:33.8129 Info Copied Microsoft.Extensions.Logging.EventLog.dll +2023-02-28 10:28:33.8138 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll +2023-02-28 10:28:33.8138 Info Copied Microsoft.Extensions.Logging.EventSource.dll +2023-02-28 10:28:33.8138 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll +2023-02-28 10:28:33.8150 Info Copied Microsoft.Extensions.Logging.TraceSource.dll +2023-02-28 10:28:33.8150 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll +2023-02-28 10:28:33.8157 Info Copied Microsoft.Extensions.ObjectPool.dll +2023-02-28 10:28:33.8157 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-02-28 10:28:33.8157 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-02-28 10:28:33.8157 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll +2023-02-28 10:28:33.8170 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll +2023-02-28 10:28:33.8170 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll +2023-02-28 10:28:33.8179 Info Copied Microsoft.Extensions.Options.dll +2023-02-28 10:28:33.8179 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll +2023-02-28 10:28:33.8187 Info Copied Microsoft.Extensions.Primitives.dll +2023-02-28 10:28:33.8187 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll +2023-02-28 10:28:33.8187 Info Copied Microsoft.Extensions.WebEncoders.dll +2023-02-28 10:28:33.8187 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll +2023-02-28 10:28:33.8203 Info Copied Microsoft.JSInterop.dll +2023-02-28 10:28:33.8203 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll +2023-02-28 10:28:33.8214 Info Copied Microsoft.Net.Http.Headers.dll +2023-02-28 10:28:33.8214 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll +2023-02-28 10:28:33.8242 Info Copied Microsoft.VisualBasic.Core.dll +2023-02-28 10:28:33.8242 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll +2023-02-28 10:28:33.8248 Info Copied Microsoft.VisualBasic.dll +2023-02-28 10:28:33.8248 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll +2023-02-28 10:28:33.8248 Info Copied Microsoft.Win32.Primitives.dll +2023-02-28 10:28:33.8257 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll +2023-02-28 10:28:33.8257 Info Copied Microsoft.Win32.Registry.dll +2023-02-28 10:28:33.8257 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll +2023-02-28 10:28:33.8273 Info Copied MimeMapping.dll +2023-02-28 10:28:33.8273 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll +2023-02-28 10:28:33.8280 Info Copied Mono.Posix.dll +2023-02-28 10:28:33.8280 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll +2023-02-28 10:28:33.8290 Info Copied Mono.Unix.dll +2023-02-28 10:28:33.8290 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll +2023-02-28 10:28:33.8297 Info Copied mscorlib.dll +2023-02-28 10:28:33.8297 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll +2023-02-28 10:28:33.8297 Info Copied netstandard.dll +2023-02-28 10:28:33.8307 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll +2023-02-28 10:28:33.8307 Info Copied Newtonsoft.Json.Bson.dll +2023-02-28 10:28:33.8307 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll +2023-02-28 10:28:33.8331 Info Copied Newtonsoft.Json.dll +2023-02-28 10:28:33.8331 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll +2023-02-28 10:28:33.8351 Info Copied NLog.dll +2023-02-28 10:28:33.8351 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll +2023-02-28 10:28:33.8359 Info Copied NLog.Extensions.Logging.dll +2023-02-28 10:28:33.8359 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll +2023-02-28 10:28:33.8367 Info Copied NLog.Web.AspNetCore.dll +2023-02-28 10:28:33.8367 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll +2023-02-28 10:28:33.8367 Info Copied Org.Mentalis.dll +2023-02-28 10:28:33.8367 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll +2023-02-28 10:28:33.8384 Info Copied Polly.dll +2023-02-28 10:28:33.8384 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/README.md to destination: /app/Jackett/README.md +2023-02-28 10:28:33.8391 Info Copied README.md +2023-02-28 10:28:33.8391 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll +2023-02-28 10:28:33.8397 Info Copied SocksWebProxy.dll +2023-02-28 10:28:33.8397 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll +2023-02-28 10:28:33.8397 Info Copied System.AppContext.dll +2023-02-28 10:28:33.8397 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll +2023-02-28 10:28:33.8410 Info Copied System.Buffers.dll +2023-02-28 10:28:33.8410 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll +2023-02-28 10:28:33.8421 Info Copied System.Collections.Concurrent.dll +2023-02-28 10:28:33.8421 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll +2023-02-28 10:28:33.8431 Info Copied System.Collections.dll +2023-02-28 10:28:33.8431 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll +2023-02-28 10:28:33.8448 Info Copied System.Collections.Immutable.dll +2023-02-28 10:28:33.8448 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll +2023-02-28 10:28:33.8448 Info Copied System.Collections.NonGeneric.dll +2023-02-28 10:28:33.8457 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll +2023-02-28 10:28:33.8472 Info Copied System.Collections.Specialized.dll +2023-02-28 10:28:33.8501 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll +2023-02-28 10:28:33.9302 Info Copied System.ComponentModel.Annotations.dll +2023-02-28 10:28:33.9302 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll +2023-02-28 10:28:33.9309 Info Copied System.ComponentModel.DataAnnotations.dll +2023-02-28 10:28:33.9309 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll +2023-02-28 10:28:33.9309 Info Copied System.ComponentModel.dll +2023-02-28 10:28:33.9317 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll +2023-02-28 10:28:33.9317 Info Copied System.ComponentModel.EventBasedAsync.dll +2023-02-28 10:28:33.9317 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll +2023-02-28 10:28:33.9329 Info Copied System.ComponentModel.Primitives.dll +2023-02-28 10:28:33.9329 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll +2023-02-28 10:28:33.9348 Info Copied System.ComponentModel.TypeConverter.dll +2023-02-28 10:28:33.9348 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll +2023-02-28 10:28:33.9348 Info Copied System.Configuration.dll +2023-02-28 10:28:33.9348 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll +2023-02-28 10:28:33.9362 Info Copied System.Console.dll +2023-02-28 10:28:33.9362 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll +2023-02-28 10:28:33.9369 Info Copied System.Core.dll +2023-02-28 10:28:33.9369 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll +2023-02-28 10:28:33.9428 Info Copied System.Data.Common.dll +2023-02-28 10:28:33.9428 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll +2023-02-28 10:28:33.9428 Info Copied System.Data.DataSetExtensions.dll +2023-02-28 10:28:33.9428 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll +2023-02-28 10:28:33.9441 Info Copied System.Data.dll +2023-02-28 10:28:33.9441 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll +2023-02-28 10:28:33.9441 Info Copied System.Diagnostics.Contracts.dll +2023-02-28 10:28:33.9447 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll +2023-02-28 10:28:33.9447 Info Copied System.Diagnostics.Debug.dll +2023-02-28 10:28:33.9447 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll +2023-02-28 10:28:33.9464 Info Copied System.Diagnostics.DiagnosticSource.dll +2023-02-28 10:28:33.9464 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll +2023-02-28 10:28:33.9471 Info Copied System.Diagnostics.EventLog.dll +2023-02-28 10:28:33.9471 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll +2023-02-28 10:28:33.9478 Info Copied System.Diagnostics.FileVersionInfo.dll +2023-02-28 10:28:33.9478 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll +2023-02-28 10:28:33.9488 Info Copied System.Diagnostics.Process.dll +2023-02-28 10:28:33.9488 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll +2023-02-28 10:28:33.9488 Info Copied System.Diagnostics.StackTrace.dll +2023-02-28 10:28:33.9488 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll +2023-02-28 10:28:34.0108 Info Copied System.Diagnostics.TextWriterTraceListener.dll +2023-02-28 10:28:34.0108 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll +2023-02-28 10:28:34.0117 Info Copied System.Diagnostics.Tools.dll +2023-02-28 10:28:34.0117 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll +2023-02-28 10:28:34.0117 Info Copied System.Diagnostics.TraceSource.dll +2023-02-28 10:28:34.0127 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll +2023-02-28 10:28:34.0127 Info Copied System.Diagnostics.Tracing.dll +2023-02-28 10:28:34.0127 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.dll to destination: /app/Jackett/System.dll +2023-02-28 10:28:34.0138 Info Copied System.dll +2023-02-28 10:28:34.0138 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll +2023-02-28 10:28:34.0138 Info Copied System.Drawing.dll +2023-02-28 10:28:34.0138 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll +2023-02-28 10:28:34.0152 Info Copied System.Drawing.Primitives.dll +2023-02-28 10:28:34.0152 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll +2023-02-28 10:28:34.0158 Info Copied System.Dynamic.Runtime.dll +2023-02-28 10:28:34.0158 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll +2023-02-28 10:28:34.0168 Info Copied System.Formats.Asn1.dll +2023-02-28 10:28:34.0168 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll +2023-02-28 10:28:34.0168 Info Copied System.Globalization.Calendars.dll +2023-02-28 10:28:34.0168 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll +2023-02-28 10:28:34.0180 Info Copied System.Globalization.dll +2023-02-28 10:28:34.0180 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll +2023-02-28 10:28:34.0180 Info Copied System.Globalization.Extensions.dll +2023-02-28 10:28:34.0188 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll +2023-02-28 10:28:34.0188 Info Copied System.IO.Compression.Brotli.dll +2023-02-28 10:28:34.0188 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll +2023-02-28 10:28:34.0204 Info Copied System.IO.Compression.dll +2023-02-28 10:28:34.0204 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll +2023-02-28 10:28:34.0210 Info Copied System.IO.Compression.FileSystem.dll +2023-02-28 10:28:34.0210 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll +2023-02-28 10:28:34.0217 Info Copied System.IO.Compression.ZipFile.dll +2023-02-28 10:28:34.0217 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll +2023-02-28 10:28:34.0217 Info Copied System.IO.dll +2023-02-28 10:28:34.0217 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll +2023-02-28 10:28:34.0229 Info Copied System.IO.FileSystem.AccessControl.dll +2023-02-28 10:28:34.0229 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll +2023-02-28 10:28:34.0229 Info Copied System.IO.FileSystem.dll +2023-02-28 10:28:34.0237 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll +2023-02-28 10:28:34.0237 Info Copied System.IO.FileSystem.DriveInfo.dll +2023-02-28 10:28:34.0237 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll +2023-02-28 10:28:34.0249 Info Copied System.IO.FileSystem.Primitives.dll +2023-02-28 10:28:34.0249 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll +2023-02-28 10:28:34.0249 Info Copied System.IO.FileSystem.Watcher.dll +2023-02-28 10:28:34.0258 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll +2023-02-28 10:28:34.0258 Info Copied System.IO.IsolatedStorage.dll +2023-02-28 10:28:34.0258 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll +2023-02-28 10:28:34.0271 Info Copied System.IO.MemoryMappedFiles.dll +2023-02-28 10:28:34.0271 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll +2023-02-28 10:28:34.0280 Info Copied System.IO.Pipelines.dll +2023-02-28 10:28:34.0280 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll +2023-02-28 10:28:34.0280 Info Copied System.IO.Pipes.AccessControl.dll +2023-02-28 10:28:34.0287 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll +2023-02-28 10:28:34.0287 Info Copied System.IO.Pipes.dll +2023-02-28 10:28:34.0287 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll +2023-02-28 10:28:34.0300 Info Copied System.IO.UnmanagedMemoryStream.dll +2023-02-28 10:28:34.0300 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll +2023-02-28 10:28:34.1113 Info Copied System.Linq.dll +2023-02-28 10:28:34.1117 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll +2023-02-28 10:28:34.1202 Info Copied System.Linq.Expressions.dll +2023-02-28 10:28:34.1202 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll +2023-02-28 10:28:34.1225 Info Copied System.Linq.Parallel.dll +2023-02-28 10:28:34.1227 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll +2023-02-28 10:28:34.1227 Info Copied System.Linq.Queryable.dll +2023-02-28 10:28:34.1237 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll +2023-02-28 10:28:34.1237 Info Copied System.Memory.dll +2023-02-28 10:28:34.1237 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll +2023-02-28 10:28:34.1250 Info Copied System.Net.dll +2023-02-28 10:28:34.1250 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll +2023-02-28 10:28:34.1283 Info Copied System.Net.Http.dll +2023-02-28 10:28:34.1283 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll +2023-02-28 10:28:34.1290 Info Copied System.Net.Http.Json.dll +2023-02-28 10:28:34.1290 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll +2023-02-28 10:28:34.1302 Info Copied System.Net.HttpListener.dll +2023-02-28 10:28:34.1302 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll +2023-02-28 10:28:34.2187 Info Copied System.Net.Mail.dll +2023-02-28 10:28:34.2187 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll +2023-02-28 10:28:34.2198 Info Copied System.Net.NameResolution.dll +2023-02-28 10:28:34.2198 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll +2023-02-28 10:28:34.2207 Info Copied System.Net.NetworkInformation.dll +2023-02-28 10:28:34.2207 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll +2023-02-28 10:28:34.2207 Info Copied System.Net.Ping.dll +2023-02-28 10:28:34.2207 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll +2023-02-28 10:28:34.2223 Info Copied System.Net.Primitives.dll +2023-02-28 10:28:34.2223 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll +2023-02-28 10:28:34.2234 Info Copied System.Net.Quic.dll +2023-02-28 10:28:34.2234 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll +2023-02-28 10:28:34.2247 Info Copied System.Net.Requests.dll +2023-02-28 10:28:34.2247 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll +2023-02-28 10:28:34.2268 Info Copied System.Net.Security.dll +2023-02-28 10:28:34.2268 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll +2023-02-28 10:28:34.2268 Info Copied System.Net.ServicePoint.dll +2023-02-28 10:28:34.2268 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll +2023-02-28 10:28:34.2289 Info Copied System.Net.Sockets.dll +2023-02-28 10:28:34.2289 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll +2023-02-28 10:28:34.2298 Info Copied System.Net.WebClient.dll +2023-02-28 10:28:34.2298 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll +2023-02-28 10:28:34.2298 Info Copied System.Net.WebHeaderCollection.dll +2023-02-28 10:28:34.2298 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll +2023-02-28 10:28:34.2311 Info Copied System.Net.WebProxy.dll +2023-02-28 10:28:34.2311 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll +2023-02-28 10:28:34.2318 Info Copied System.Net.WebSockets.Client.dll +2023-02-28 10:28:34.2318 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll +2023-02-28 10:28:34.2335 Info Copied System.Net.WebSockets.dll +2023-02-28 10:28:34.2337 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll +2023-02-28 10:28:34.2337 Info Copied System.Numerics.dll +2023-02-28 10:28:34.2337 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll +2023-02-28 10:28:34.2346 Info Copied System.Numerics.Vectors.dll +2023-02-28 10:28:34.2346 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll +2023-02-28 10:28:34.2346 Info Copied System.ObjectModel.dll +2023-02-28 10:28:34.2346 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll +2023-02-28 10:28:34.3176 Info Copied System.Private.CoreLib.dll +2023-02-28 10:28:34.3181 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll +2023-02-28 10:28:34.3273 Info Copied System.Private.DataContractSerialization.dll +2023-02-28 10:28:34.3277 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll +2023-02-28 10:28:34.3309 Info Copied System.Private.Uri.dll +2023-02-28 10:28:34.3309 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll +2023-02-28 10:28:34.4644 Info Copied System.Private.Xml.dll +2023-02-28 10:28:34.4652 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll +2023-02-28 10:28:34.4684 Info Copied System.Private.Xml.Linq.dll +2023-02-28 10:28:34.4687 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll +2023-02-28 10:28:34.4701 Info Copied System.Reflection.DispatchProxy.dll +2023-02-28 10:28:34.4701 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll +2023-02-28 10:28:34.4716 Info Copied System.Reflection.dll +2023-02-28 10:28:34.4720 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll +2023-02-28 10:28:34.4730 Info Copied System.Reflection.Emit.dll +2023-02-28 10:28:34.4730 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll +2023-02-28 10:28:34.4744 Info Copied System.Reflection.Emit.ILGeneration.dll +2023-02-28 10:28:34.4748 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll +2023-02-28 10:28:34.4759 Info Copied System.Reflection.Emit.Lightweight.dll +2023-02-28 10:28:34.4759 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll +2023-02-28 10:28:34.4772 Info Copied System.Reflection.Extensions.dll +2023-02-28 10:28:34.4772 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll +2023-02-28 10:28:34.5453 Info Copied System.Reflection.Metadata.dll +2023-02-28 10:28:34.5458 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll +2023-02-28 10:28:34.5472 Info Copied System.Reflection.Primitives.dll +2023-02-28 10:28:34.5472 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll +2023-02-28 10:28:34.5487 Info Copied System.Reflection.TypeExtensions.dll +2023-02-28 10:28:34.5487 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll +2023-02-28 10:28:34.5500 Info Copied System.Resources.Reader.dll +2023-02-28 10:28:34.5500 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll +2023-02-28 10:28:34.5517 Info Copied System.Resources.ResourceManager.dll +2023-02-28 10:28:34.5517 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll +2023-02-28 10:28:34.5531 Info Copied System.Resources.Writer.dll +2023-02-28 10:28:34.5531 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll +2023-02-28 10:28:34.5545 Info Copied System.Runtime.CompilerServices.Unsafe.dll +2023-02-28 10:28:34.5549 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll +2023-02-28 10:28:34.5559 Info Copied System.Runtime.CompilerServices.VisualC.dll +2023-02-28 10:28:34.5559 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll +2023-02-28 10:28:34.5573 Info Copied System.Runtime.dll +2023-02-28 10:28:34.5577 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll +2023-02-28 10:28:34.5587 Info Copied System.Runtime.Extensions.dll +2023-02-28 10:28:34.5587 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll +2023-02-28 10:28:34.5600 Info Copied System.Runtime.Handles.dll +2023-02-28 10:28:34.5600 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll +2023-02-28 10:28:34.5615 Info Copied System.Runtime.InteropServices.dll +2023-02-28 10:28:34.5619 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll +2023-02-28 10:28:34.5630 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll +2023-02-28 10:28:34.5630 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll +2023-02-28 10:28:34.5646 Info Copied System.Runtime.Intrinsics.dll +2023-02-28 10:28:34.5650 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll +2023-02-28 10:28:34.5659 Info Copied System.Runtime.Loader.dll +2023-02-28 10:28:34.5659 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll +2023-02-28 10:28:34.5829 Info Copied System.Runtime.Numerics.dll +2023-02-28 10:28:34.5829 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll +2023-02-28 10:28:34.5844 Info Copied System.Runtime.Serialization.dll +2023-02-28 10:28:34.5847 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll +2023-02-28 10:28:34.5875 Info Copied System.Runtime.Serialization.Formatters.dll +2023-02-28 10:28:34.5879 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll +2023-02-28 10:28:34.5890 Info Copied System.Runtime.Serialization.Json.dll +2023-02-28 10:28:34.5890 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll +2023-02-28 10:28:34.5904 Info Copied System.Runtime.Serialization.Primitives.dll +2023-02-28 10:28:34.5909 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll +2023-02-28 10:28:34.5919 Info Copied System.Runtime.Serialization.Xml.dll +2023-02-28 10:28:34.5919 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll +2023-02-28 10:28:34.5934 Info Copied System.Security.AccessControl.dll +2023-02-28 10:28:34.5938 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll +2023-02-28 10:28:34.5952 Info Copied System.Security.Claims.dll +2023-02-28 10:28:34.5952 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll +2023-02-28 10:28:34.5997 Info Copied System.Security.Cryptography.Algorithms.dll +2023-02-28 10:28:34.5997 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll +2023-02-28 10:28:34.6011 Info Copied System.Security.Cryptography.Cng.dll +2023-02-28 10:28:34.6011 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll +2023-02-28 10:28:34.6394 Info Copied System.Security.Cryptography.Csp.dll +2023-02-28 10:28:34.6400 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll +2023-02-28 10:28:34.6418 Info Copied System.Security.Cryptography.Encoding.dll +2023-02-28 10:28:34.6418 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll +2023-02-28 10:28:34.6442 Info Copied System.Security.Cryptography.OpenSsl.dll +2023-02-28 10:28:34.6442 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll +2023-02-28 10:28:34.6499 Info Copied System.Security.Cryptography.Pkcs.dll +2023-02-28 10:28:34.6499 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll +2023-02-28 10:28:34.6520 Info Copied System.Security.Cryptography.Primitives.dll +2023-02-28 10:28:34.6520 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll +2023-02-28 10:28:34.6534 Info Copied System.Security.Cryptography.ProtectedData.dll +2023-02-28 10:28:34.6537 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll +2023-02-28 10:28:34.6577 Info Copied System.Security.Cryptography.X509Certificates.dll +2023-02-28 10:28:34.6577 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll +2023-02-28 10:28:34.6856 Info Copied System.Security.Cryptography.Xml.dll +2023-02-28 10:28:34.6861 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll +2023-02-28 10:28:34.6874 Info Copied System.Security.dll +2023-02-28 10:28:34.6878 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll +2023-02-28 10:28:34.6888 Info Copied System.Security.Principal.dll +2023-02-28 10:28:34.6888 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll +2023-02-28 10:28:34.6904 Info Copied System.Security.Principal.Windows.dll +2023-02-28 10:28:34.6907 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll +2023-02-28 10:28:34.6918 Info Copied System.Security.SecureString.dll +2023-02-28 10:28:34.6918 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll +2023-02-28 10:28:34.6932 Info Copied System.ServiceModel.Web.dll +2023-02-28 10:28:34.6932 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll +2023-02-28 10:28:34.6947 Info Copied System.ServiceProcess.dll +2023-02-28 10:28:34.6947 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll +2023-02-28 10:28:34.6974 Info Copied System.ServiceProcess.ServiceController.dll +2023-02-28 10:28:34.6979 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll +2023-02-28 10:28:34.7024 Info Copied System.Text.Encoding.CodePages.dll +2023-02-28 10:28:34.7028 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll +2023-02-28 10:28:34.7038 Info Copied System.Text.Encoding.dll +2023-02-28 10:28:34.7038 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll +2023-02-28 10:28:34.7083 Info Copied System.Text.Encoding.Extensions.dll +2023-02-28 10:28:34.7087 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll +2023-02-28 10:28:34.7106 Info Copied System.Text.Encodings.Web.dll +2023-02-28 10:28:34.7110 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll +2023-02-28 10:28:34.7189 Info Copied System.Text.Json.dll +2023-02-28 10:28:34.7189 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll +2023-02-28 10:28:34.7237 Info Copied System.Text.RegularExpressions.dll +2023-02-28 10:28:34.7237 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll +2023-02-28 10:28:34.7256 Info Copied System.Threading.Channels.dll +2023-02-28 10:28:34.7260 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll +2023-02-28 10:28:34.7274 Info Copied System.Threading.dll +2023-02-28 10:28:34.7278 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll +2023-02-28 10:28:34.7351 Info Copied System.Threading.Overlapped.dll +2023-02-28 10:28:34.7351 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll +2023-02-28 10:28:34.7386 Info Copied System.Threading.Tasks.Dataflow.dll +2023-02-28 10:28:34.7390 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll +2023-02-28 10:28:34.7400 Info Copied System.Threading.Tasks.dll +2023-02-28 10:28:34.7400 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll +2023-02-28 10:28:34.7414 Info Copied System.Threading.Tasks.Extensions.dll +2023-02-28 10:28:34.7417 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll +2023-02-28 10:28:34.7431 Info Copied System.Threading.Tasks.Parallel.dll +2023-02-28 10:28:34.7431 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll +2023-02-28 10:28:34.7446 Info Copied System.Threading.Thread.dll +2023-02-28 10:28:34.7450 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll +2023-02-28 10:28:34.7460 Info Copied System.Threading.ThreadPool.dll +2023-02-28 10:28:34.7460 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll +2023-02-28 10:28:34.7474 Info Copied System.Threading.Timer.dll +2023-02-28 10:28:34.7478 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll +2023-02-28 10:28:34.7488 Info Copied System.Transactions.dll +2023-02-28 10:28:34.7488 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll +2023-02-28 10:28:34.7517 Info Copied System.Transactions.Local.dll +2023-02-28 10:28:34.7517 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll +2023-02-28 10:28:34.7530 Info Copied System.ValueTuple.dll +2023-02-28 10:28:34.7530 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll +2023-02-28 10:28:34.7543 Info Copied System.Web.dll +2023-02-28 10:28:34.7547 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll +2023-02-28 10:28:34.7559 Info Copied System.Web.HttpUtility.dll +2023-02-28 10:28:34.7559 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll +2023-02-28 10:28:34.7571 Info Copied System.Windows.dll +2023-02-28 10:28:34.7571 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll +2023-02-28 10:28:34.7734 Info Copied System.Xml.dll +2023-02-28 10:28:34.7738 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll +2023-02-28 10:28:34.7750 Info Copied System.Xml.Linq.dll +2023-02-28 10:28:34.7750 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll +2023-02-28 10:28:34.7765 Info Copied System.Xml.ReaderWriter.dll +2023-02-28 10:28:34.7769 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll +2023-02-28 10:28:34.7779 Info Copied System.Xml.Serialization.dll +2023-02-28 10:28:34.7779 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll +2023-02-28 10:28:34.7793 Info Copied System.Xml.XDocument.dll +2023-02-28 10:28:34.7797 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll +2023-02-28 10:28:34.7807 Info Copied System.Xml.XmlDocument.dll +2023-02-28 10:28:34.7807 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll +2023-02-28 10:28:34.7821 Info Copied System.Xml.XmlSerializer.dll +2023-02-28 10:28:34.7821 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll +2023-02-28 10:28:34.7835 Info Copied System.Xml.XPath.dll +2023-02-28 10:28:34.7839 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll +2023-02-28 10:28:34.7850 Info Copied System.Xml.XPath.XDocument.dll +2023-02-28 10:28:34.7850 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll +2023-02-28 10:28:34.7863 Info Copied WindowsBase.dll +2023-02-28 10:28:34.7867 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll +2023-02-28 10:28:34.7889 Info Copied YamlDotNet.dll +2023-02-28 10:28:34.7889 Info File copying complete +2023-02-28 10:28:34.7920 Info Deleting file /app/Jackett/Definitions/cloudtorrents.yml +2023-02-28 10:28:34.8271 Info Killing process 135 +2023-02-28 10:28:37.9070 Info Process 135 didn't exit within 2 seconds after a SIGTERM +2023-03-01 15:59:51.2444 Info Jackett Updater v0.20.3411 +2023-03-01 15:59:51.3400 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "134" "--NoRestart" +2023-03-01 15:59:51.3434 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-01 15:59:51.5527 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb +2023-03-01 15:59:51.5527 Info Deleted /app/Jackett/DateTimeRoutines.pdb +2023-03-01 15:59:51.5527 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb +2023-03-01 15:59:51.5539 Info Deleted /app/Jackett/Jackett.Common.pdb +2023-03-01 15:59:51.5539 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb +2023-03-01 15:59:51.5539 Info Deleted /app/Jackett/JackettUpdater.pdb +2023-03-01 15:59:51.5539 Info Attempting to remove: /app/Jackett/jackett.pdb +2023-03-01 15:59:51.5548 Info Deleted /app/Jackett/jackett.pdb +2023-03-01 15:59:51.5548 Info Attempting to remove: /app/Jackett/jackett +2023-03-01 15:59:51.5548 Info Deleted /app/Jackett/jackett +2023-03-01 15:59:51.5548 Info Finding files in: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/ +2023-03-01 15:59:51.5615 Info 891 update files found +2023-03-01 15:59:51.5627 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll +2023-03-01 15:59:51.5658 Info Copied AngleSharp.dll +2023-03-01 15:59:51.5658 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll +2023-03-01 15:59:51.5667 Info Copied AngleSharp.Xml.dll +2023-03-01 15:59:51.5667 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll +2023-03-01 15:59:51.5679 Info Copied Autofac.dll +2023-03-01 15:59:51.5679 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll +2023-03-01 15:59:51.5688 Info Copied Autofac.Extensions.DependencyInjection.dll +2023-03-01 15:59:51.5688 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll +2023-03-01 15:59:51.5710 Info Copied AutoMapper.dll +2023-03-01 15:59:51.5710 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll +2023-03-01 15:59:51.5717 Info Copied BencodeNET.dll +2023-03-01 15:59:51.5717 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll +2023-03-01 15:59:51.5728 Info Copied CommandLine.dll +2023-03-01 15:59:51.5728 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css +2023-03-01 15:59:51.5754 Info Copied animate.css +2023-03-01 15:59:51.5754 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png +2023-03-01 15:59:51.5762 Info Copied apple-touch-icon.png +2023-03-01 15:59:51.5762 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png +2023-03-01 15:59:51.5769 Info Copied binding_dark.png +2023-03-01 15:59:51.5769 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css +2023-03-01 15:59:51.5861 Info Copied bootstrap.min.css +2023-03-01 15:59:51.5869 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js +2023-03-01 15:59:51.5881 Info Copied bootstrap.min.js +2023-03-01 15:59:51.5881 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js +2023-03-01 15:59:51.5895 Info Copied common.js +2023-03-01 15:59:51.5899 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css +2023-03-01 15:59:51.5951 Info Copied bootstrap-multiselect.css +2023-03-01 15:59:51.5958 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css +2023-03-01 15:59:51.5970 Info Copied font-awesome.min.css +2023-03-01 15:59:51.5970 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css +2023-03-01 15:59:51.5997 Info Copied jquery.dataTables.min.css +2023-03-01 15:59:51.6002 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css +2023-03-01 15:59:51.6014 Info Copied tagify.css +2023-03-01 15:59:51.6020 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css +2023-03-01 15:59:51.6031 Info Copied custom_mobile.css +2023-03-01 15:59:51.6031 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css +2023-03-01 15:59:51.6050 Info Copied custom.css +2023-03-01 15:59:51.6050 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js +2023-03-01 15:59:51.6068 Info Copied custom.js +2023-03-01 15:59:51.6068 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico +2023-03-01 15:59:51.6087 Info Copied favicon.ico +2023-03-01 15:59:51.6087 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot +2023-03-01 15:59:51.6107 Info Copied fontawesome-webfont.eot +2023-03-01 15:59:51.6107 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg +2023-03-01 15:59:51.6130 Info Copied fontawesome-webfont.svg +2023-03-01 15:59:51.6130 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf +2023-03-01 15:59:51.6153 Info Copied fontawesome-webfont.ttf +2023-03-01 15:59:51.6159 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff +2023-03-01 15:59:51.6174 Info Copied fontawesome-webfont.woff +2023-03-01 15:59:51.6178 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 +2023-03-01 15:59:51.6191 Info Copied fontawesome-webfont.woff2 +2023-03-01 15:59:51.6191 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf +2023-03-01 15:59:51.6210 Info Copied FontAwesome.otf +2023-03-01 15:59:51.6210 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot +2023-03-01 15:59:51.6228 Info Copied glyphicons-halflings-regular.eot +2023-03-01 15:59:51.6228 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg +2023-03-01 15:59:51.6248 Info Copied glyphicons-halflings-regular.svg +2023-03-01 15:59:51.6248 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf +2023-03-01 15:59:51.6264 Info Copied glyphicons-halflings-regular.ttf +2023-03-01 15:59:51.6269 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff +2023-03-01 15:59:51.6282 Info Copied glyphicons-halflings-regular.woff +2023-03-01 15:59:51.6282 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 +2023-03-01 15:59:51.6298 Info Copied glyphicons-halflings-regular.woff2 +2023-03-01 15:59:51.6298 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png +2023-03-01 15:59:51.6312 Info Copied sort_asc_disabled.png +2023-03-01 15:59:51.6317 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png +2023-03-01 15:59:51.6327 Info Copied sort_asc.png +2023-03-01 15:59:51.6327 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png +2023-03-01 15:59:51.6342 Info Copied sort_both.png +2023-03-01 15:59:51.6342 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png +2023-03-01 15:59:51.6357 Info Copied sort_desc_disabled.png +2023-03-01 15:59:51.6357 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png +2023-03-01 15:59:51.6371 Info Copied sort_desc.png +2023-03-01 15:59:51.6377 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html +2023-03-01 15:59:51.6391 Info Copied index.html +2023-03-01 15:59:51.6398 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png +2023-03-01 15:59:51.6408 Info Copied jacket_medium.png +2023-03-01 15:59:51.6408 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js +2023-03-01 15:59:51.6423 Info Copied api.js +2023-03-01 15:59:51.6428 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js +2023-03-01 15:59:51.6443 Info Copied bootstrap-multiselect.js +2023-03-01 15:59:51.6448 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js +2023-03-01 15:59:51.6460 Info Copied bootstrap-notify.js +2023-03-01 15:59:51.6460 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js +2023-03-01 15:59:51.6475 Info Copied filesize.min.js +2023-03-01 15:59:51.6480 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js +2023-03-01 15:59:51.6495 Info Copied handlebars.min.js +2023-03-01 15:59:51.6500 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js +2023-03-01 15:59:51.6511 Info Copied handlebarsextend.js +2023-03-01 15:59:51.6511 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js +2023-03-01 15:59:51.6526 Info Copied handlebarsmoment.js +2023-03-01 15:59:51.6530 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js +2023-03-01 15:59:51.6547 Info Copied jquery.dataTables.min.js +2023-03-01 15:59:51.6547 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js +2023-03-01 15:59:51.6567 Info Copied jquery.min.js +2023-03-01 15:59:51.6567 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js +2023-03-01 15:59:51.6584 Info Copied jQuery.tagify.min.js +2023-03-01 15:59:51.6591 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js +2023-03-01 15:59:51.6603 Info Copied moment.min.js +2023-03-01 15:59:51.6607 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js +2023-03-01 15:59:51.6621 Info Copied tagify.min.js +2023-03-01 15:59:51.6621 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html +2023-03-01 15:59:51.6637 Info Copied login.html +2023-03-01 15:59:51.6637 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/createdump to destination: /app/Jackett/createdump +2023-03-01 15:59:51.6660 Info Copied createdump +2023-03-01 15:59:51.6660 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll +2023-03-01 15:59:51.6678 Info Copied DateTimeRoutines.dll +2023-03-01 15:59:51.6678 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb +2023-03-01 15:59:51.6693 Info Copied DateTimeRoutines.pdb +2023-03-01 15:59:51.6698 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml +2023-03-01 15:59:51.6710 Info Copied 0daykiev.yml +2023-03-01 15:59:51.6710 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml +2023-03-01 15:59:51.6724 Info Copied 0magnet.yml +2023-03-01 15:59:51.6729 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml +2023-03-01 15:59:51.6739 Info Copied 1337x.yml +2023-03-01 15:59:51.6739 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml +2023-03-01 15:59:51.6754 Info Copied 1ptbar.yml +2023-03-01 15:59:51.6758 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml +2023-03-01 15:59:51.6770 Info Copied 2fast4you.yml +2023-03-01 15:59:51.6770 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml +2023-03-01 15:59:51.6785 Info Copied 2xfree.yml +2023-03-01 15:59:51.6790 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml +2023-03-01 15:59:51.6800 Info Copied 3changtrai.yml +2023-03-01 15:59:51.6800 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml +2023-03-01 15:59:51.6816 Info Copied 3dtorrents.yml +2023-03-01 15:59:51.6820 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml +2023-03-01 15:59:51.6830 Info Copied 4thd.yml +2023-03-01 15:59:51.6830 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml +2023-03-01 15:59:51.6845 Info Copied 52pt.yml +2023-03-01 15:59:51.6850 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml +2023-03-01 15:59:51.6860 Info Copied abnormal.yml +2023-03-01 15:59:51.6860 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml +2023-03-01 15:59:51.6875 Info Copied abtorrents.yml +2023-03-01 15:59:51.6880 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml +2023-03-01 15:59:51.6890 Info Copied acervos-api.yml +2023-03-01 15:59:51.6890 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml +2023-03-01 15:59:51.6904 Info Copied acgrip.yml +2023-03-01 15:59:51.6909 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml +2023-03-01 15:59:51.6920 Info Copied acgsou.yml +2023-03-01 15:59:51.6920 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml +2023-03-01 15:59:51.6935 Info Copied acidlounge.yml +2023-03-01 15:59:51.6940 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml +2023-03-01 15:59:51.6952 Info Copied acrossthetasman.yml +2023-03-01 15:59:51.6957 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml +2023-03-01 15:59:51.6972 Info Copied aftershock.yml +2023-03-01 15:59:51.6977 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml +2023-03-01 15:59:51.6988 Info Copied aidoruonline.yml +2023-03-01 15:59:51.6988 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml +2023-03-01 15:59:51.7002 Info Copied aither-api.yml +2023-03-01 15:59:51.7008 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml +2023-03-01 15:59:51.7019 Info Copied amigosshare.yml +2023-03-01 15:59:51.7019 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml +2023-03-01 15:59:51.7035 Info Copied anilibria.yml +2023-03-01 15:59:51.7041 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml +2023-03-01 15:59:51.7084 Info Copied anime-free.yml +2023-03-01 15:59:51.7132 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml +2023-03-01 15:59:51.7144 Info Copied animelayer.yml +2023-03-01 15:59:51.7149 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml +2023-03-01 15:59:51.7160 Info Copied animetracker.yml +2023-03-01 15:59:51.7160 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml +2023-03-01 15:59:51.7176 Info Copied animeworld-api.yml +2023-03-01 15:59:51.7181 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml +2023-03-01 15:59:51.7192 Info Copied anirena.yml +2023-03-01 15:59:51.7197 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml +2023-03-01 15:59:51.7208 Info Copied anisource.yml +2023-03-01 15:59:51.7208 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml +2023-03-01 15:59:51.7223 Info Copied anthelion-api.yml +2023-03-01 15:59:51.7228 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml +2023-03-01 15:59:51.7240 Info Copied arabafenice.yml +2023-03-01 15:59:51.7240 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml +2023-03-01 15:59:51.7261 Info Copied arabp2p.yml +2023-03-01 15:59:51.7261 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml +2023-03-01 15:59:51.7276 Info Copied arenabg.yml +2023-03-01 15:59:51.7281 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml +2023-03-01 15:59:51.7292 Info Copied asiancinema.yml +2023-03-01 15:59:51.7297 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml +2023-03-01 15:59:51.7308 Info Copied asiandvdclub.yml +2023-03-01 15:59:51.7308 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml +2023-03-01 15:59:51.7322 Info Copied audiences.yml +2023-03-01 15:59:51.7328 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml +2023-03-01 15:59:51.7369 Info Copied audionews.yml +2023-03-01 15:59:51.7369 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml +2023-03-01 15:59:51.7384 Info Copied aussierules.yml +2023-03-01 15:59:51.7389 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml +2023-03-01 15:59:51.7400 Info Copied backups.yml +2023-03-01 15:59:51.7408 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml +2023-03-01 15:59:51.7419 Info Copied badasstorrents.yml +2023-03-01 15:59:51.7419 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml +2023-03-01 15:59:51.7433 Info Copied bangumi-moe.yml +2023-03-01 15:59:51.7439 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml +2023-03-01 15:59:51.7449 Info Copied beitai.yml +2023-03-01 15:59:51.7449 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml +2023-03-01 15:59:51.7468 Info Copied bestcore.yml +2023-03-01 15:59:51.7468 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml +2023-03-01 15:59:51.7483 Info Copied beyond-hd.yml +2023-03-01 15:59:51.7487 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml +2023-03-01 15:59:51.7497 Info Copied bibliotik.yml +2023-03-01 15:59:51.7497 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml +2023-03-01 15:59:51.7512 Info Copied bigfangroup.yml +2023-03-01 15:59:51.7512 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml +2023-03-01 15:59:51.7529 Info Copied bitbazis.yml +2023-03-01 15:59:51.7529 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml +2023-03-01 15:59:51.7544 Info Copied bitded.yml +2023-03-01 15:59:51.7549 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml +2023-03-01 15:59:51.7559 Info Copied bithorlo.yml +2023-03-01 15:59:51.7559 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml +2023-03-01 15:59:51.7573 Info Copied bithumen.yml +2023-03-01 15:59:51.7578 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml +2023-03-01 15:59:51.7588 Info Copied bitnova.yml +2023-03-01 15:59:51.7588 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml +2023-03-01 15:59:51.7604 Info Copied bitofvalor.yml +2023-03-01 15:59:51.7608 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml +2023-03-01 15:59:51.7618 Info Copied bitru.yml +2023-03-01 15:59:51.7618 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml +2023-03-01 15:59:51.7634 Info Copied bitsearch.yml +2023-03-01 15:59:51.7638 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml +2023-03-01 15:59:51.7648 Info Copied bitsexy.yml +2023-03-01 15:59:51.7648 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml +2023-03-01 15:59:51.7662 Info Copied bitspyder.yml +2023-03-01 15:59:51.7668 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml +2023-03-01 15:59:51.7679 Info Copied Bittorrentfiles.yml +2023-03-01 15:59:51.7679 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml +2023-03-01 15:59:51.7696 Info Copied bitturk.yml +2023-03-01 15:59:51.7701 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml +2023-03-01 15:59:51.7711 Info Copied bluebird.yml +2023-03-01 15:59:51.7711 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml +2023-03-01 15:59:51.7726 Info Copied blutopia-api.yml +2023-03-01 15:59:51.7731 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml +2023-03-01 15:59:51.7742 Info Copied booktracker.yml +2023-03-01 15:59:51.7747 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml +2023-03-01 15:59:51.7757 Info Copied bootytape.yml +2023-03-01 15:59:51.7757 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml +2023-03-01 15:59:51.7772 Info Copied borgzelle.yml +2023-03-01 15:59:51.7777 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml +2023-03-01 15:59:51.7788 Info Copied boxingtorrents.yml +2023-03-01 15:59:51.7788 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml +2023-03-01 15:59:51.7803 Info Copied broadcity.yml +2023-03-01 15:59:51.7807 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml +2023-03-01 15:59:51.7819 Info Copied brsociety-api.yml +2023-03-01 15:59:51.7819 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml +2023-03-01 15:59:51.7837 Info Copied bt4g.yml +2023-03-01 15:59:51.7837 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml +2023-03-01 15:59:51.7851 Info Copied btdigg.yml +2023-03-01 15:59:51.7858 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml +2023-03-01 15:59:51.7869 Info Copied btetree.yml +2023-03-01 15:59:51.7869 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml +2023-03-01 15:59:51.7884 Info Copied btmet.yml +2023-03-01 15:59:51.7888 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml +2023-03-01 15:59:51.7899 Info Copied btnext.yml +2023-03-01 15:59:51.7899 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml +2023-03-01 15:59:51.7917 Info Copied btschool.yml +2023-03-01 15:59:51.7917 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml +2023-03-01 15:59:51.7932 Info Copied btsow.yml +2023-03-01 15:59:51.7937 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml +2023-03-01 15:59:51.7948 Info Copied bulltorrent.yml +2023-03-01 15:59:51.7948 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml +2023-03-01 15:59:51.7963 Info Copied bwtorrents.yml +2023-03-01 15:59:51.7968 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml +2023-03-01 15:59:51.7979 Info Copied byrbt.yml +2023-03-01 15:59:51.7979 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml +2023-03-01 15:59:51.7995 Info Copied byrutor.yml +2023-03-01 15:59:51.8000 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml +2023-03-01 15:59:51.8011 Info Copied carpathians.yml +2023-03-01 15:59:51.8011 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml +2023-03-01 15:59:51.8027 Info Copied carphunter.yml +2023-03-01 15:59:51.8027 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml +2023-03-01 15:59:51.8041 Info Copied carpt.yml +2023-03-01 15:59:51.8041 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml +2023-03-01 15:59:51.8056 Info Copied cartoonchaos.yml +2023-03-01 15:59:51.8061 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml +2023-03-01 15:59:51.8073 Info Copied cathoderaytube.yml +2023-03-01 15:59:51.8077 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml +2023-03-01 15:59:51.8093 Info Copied catorrent.yml +2023-03-01 15:59:51.8100 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml +2023-03-01 15:59:51.8107 Info Copied ccfbits.yml +2023-03-01 15:59:51.8107 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml +2023-03-01 15:59:51.8107 Info Copied ceskeforum.yml +2023-03-01 15:59:51.8107 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml +2023-03-01 15:59:51.8120 Info Copied chdbits.yml +2023-03-01 15:59:51.8120 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml +2023-03-01 15:59:51.8127 Info Copied chilebt.yml +2023-03-01 15:59:51.8127 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml +2023-03-01 15:59:51.8127 Info Copied cinemageddon.yml +2023-03-01 15:59:51.8127 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml +2023-03-01 15:59:51.8139 Info Copied cinemamovies.yml +2023-03-01 15:59:51.8139 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml +2023-03-01 15:59:51.8139 Info Copied cinematik.yml +2023-03-01 15:59:51.8147 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml +2023-03-01 15:59:51.8147 Info Copied classix.yml +2023-03-01 15:59:51.8147 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml +2023-03-01 15:59:51.8158 Info Copied coastalcrew.yml +2023-03-01 15:59:51.8158 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml +2023-03-01 15:59:51.8158 Info Copied comicat.yml +2023-03-01 15:59:51.8158 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml +2023-03-01 15:59:51.8170 Info Copied concen.yml +2023-03-01 15:59:51.8170 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml +2023-03-01 15:59:51.8170 Info Copied concertos.yml +2023-03-01 15:59:51.8177 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml +2023-03-01 15:59:51.8177 Info Copied cpabien.yml +2023-03-01 15:59:51.8177 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml +2023-03-01 15:59:51.8188 Info Copied cpasbienclone.yml +2023-03-01 15:59:51.8188 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml +2023-03-01 15:59:51.8188 Info Copied cpasbiensi.yml +2023-03-01 15:59:51.8188 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml +2023-03-01 15:59:51.8200 Info Copied crackingpatching.yml +2023-03-01 15:59:51.8200 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml +2023-03-01 15:59:51.8200 Info Copied crazyhd.yml +2023-03-01 15:59:51.8207 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml +2023-03-01 15:59:51.8207 Info Copied crazyspirits.yml +2023-03-01 15:59:51.8207 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml +2023-03-01 15:59:51.8217 Info Copied crnaberza.yml +2023-03-01 15:59:51.8217 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml +2023-03-01 15:59:51.8217 Info Copied crt2fa.yml +2023-03-01 15:59:51.8217 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml +2023-03-01 15:59:51.8230 Info Copied danishbytes-api.yml +2023-03-01 15:59:51.8230 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml +2023-03-01 15:59:51.8230 Info Copied dariustracker.yml +2023-03-01 15:59:51.8238 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml +2023-03-01 15:59:51.8238 Info Copied dark-shadow.yml +2023-03-01 15:59:51.8238 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml +2023-03-01 15:59:51.8248 Info Copied datascene-api.yml +2023-03-01 15:59:51.8248 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml +2023-03-01 15:59:51.8248 Info Copied datatalli.yml +2023-03-01 15:59:51.8248 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml +2023-03-01 15:59:51.8259 Info Copied deildu.yml +2023-03-01 15:59:51.8259 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml +2023-03-01 15:59:51.8259 Info Copied demonoid.yml +2023-03-01 15:59:51.8267 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml +2023-03-01 15:59:51.8267 Info Copied desitorrents-api.yml +2023-03-01 15:59:51.8267 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml +2023-03-01 15:59:51.8277 Info Copied devil-torrents.yml +2023-03-01 15:59:51.8277 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml +2023-03-01 15:59:51.8277 Info Copied diablotorrent.yml +2023-03-01 15:59:51.8277 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml +2023-03-01 15:59:51.8289 Info Copied digitalcore.yml +2023-03-01 15:59:51.8289 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml +2023-03-01 15:59:51.8289 Info Copied dimeadozen.yml +2023-03-01 15:59:51.8297 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml +2023-03-01 15:59:51.8297 Info Copied discfan.yml +2023-03-01 15:59:51.8297 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml +2023-03-01 15:59:51.8307 Info Copied divteam.yml +2023-03-01 15:59:51.8307 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml +2023-03-01 15:59:51.8307 Info Copied dmhy.yml +2023-03-01 15:59:51.8307 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml +2023-03-01 15:59:51.8319 Info Copied docspedia.yml +2023-03-01 15:59:51.8319 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml +2023-03-01 15:59:51.8319 Info Copied dodder.yml +2023-03-01 15:59:51.8327 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml +2023-03-01 15:59:51.8327 Info Copied dreamtracker.yml +2023-03-01 15:59:51.8327 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml +2023-03-01 15:59:51.8327 Info Copied dxp.yml +2023-03-01 15:59:51.8338 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml +2023-03-01 15:59:51.8338 Info Copied ebookbay.yml +2023-03-01 15:59:51.8338 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml +2023-03-01 15:59:51.8348 Info Copied ebooks-shares.yml +2023-03-01 15:59:51.8348 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml +2023-03-01 15:59:51.8348 Info Copied ehentai.yml +2023-03-01 15:59:51.8348 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml +2023-03-01 15:59:51.8360 Info Copied electro-torrent.yml +2023-03-01 15:59:51.8360 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml +2023-03-01 15:59:51.8360 Info Copied empornium.yml +2023-03-01 15:59:51.8367 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml +2023-03-01 15:59:51.8367 Info Copied empornium2fa.yml +2023-03-01 15:59:51.8367 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml +2023-03-01 15:59:51.8377 Info Copied eniahd.yml +2023-03-01 15:59:51.8377 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml +2023-03-01 15:59:51.8377 Info Copied esharenet.yml +2023-03-01 15:59:51.8377 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml +2023-03-01 15:59:51.8391 Info Copied estone.yml +2023-03-01 15:59:51.8391 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml +2023-03-01 15:59:51.8391 Info Copied exkinoray.yml +2023-03-01 15:59:51.8398 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml +2023-03-01 15:59:51.8398 Info Copied extratorrent-st.yml +2023-03-01 15:59:51.8398 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml +2023-03-01 15:59:51.8408 Info Copied extremebits.yml +2023-03-01 15:59:51.8408 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml +2023-03-01 15:59:51.8408 Info Copied extremetorrents.yml +2023-03-01 15:59:51.8408 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml +2023-03-01 15:59:51.8420 Info Copied extremlymtorrents.yml +2023-03-01 15:59:51.8420 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml +2023-03-01 15:59:51.8420 Info Copied exttorrents.yml +2023-03-01 15:59:51.8427 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml +2023-03-01 15:59:51.8427 Info Copied eztv.yml +2023-03-01 15:59:51.8427 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml +2023-03-01 15:59:51.8437 Info Copied falkonvisionteam.yml +2023-03-01 15:59:51.8437 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml +2023-03-01 15:59:51.8437 Info Copied fanoin.yml +2023-03-01 15:59:51.8437 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml +2023-03-01 15:59:51.8449 Info Copied fantasticheaven.yml +2023-03-01 15:59:51.8449 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml +2023-03-01 15:59:51.8449 Info Copied fantastiko.yml +2023-03-01 15:59:51.8457 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml +2023-03-01 15:59:51.8457 Info Copied femdomcult.yml +2023-03-01 15:59:51.8457 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml +2023-03-01 15:59:51.8467 Info Copied fenyarnyek-tracker.yml +2023-03-01 15:59:51.8467 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml +2023-03-01 15:59:51.8467 Info Copied file-tracker.yml +2023-03-01 15:59:51.8467 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml +2023-03-01 15:59:51.8480 Info Copied filelisting.yml +2023-03-01 15:59:51.8480 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml +2023-03-01 15:59:51.8480 Info Copied finelite.yml +2023-03-01 15:59:51.8488 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml +2023-03-01 15:59:51.8488 Info Copied finvip.yml +2023-03-01 15:59:51.8488 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml +2023-03-01 15:59:51.8498 Info Copied firebit.yml +2023-03-01 15:59:51.8498 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml +2023-03-01 15:59:51.8498 Info Copied fluxzone.yml +2023-03-01 15:59:51.8498 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml +2023-03-01 15:59:51.8509 Info Copied freshmeat.yml +2023-03-01 15:59:51.8509 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml +2023-03-01 15:59:51.8509 Info Copied frozenlayer.yml +2023-03-01 15:59:51.8517 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml +2023-03-01 15:59:51.8517 Info Copied ftuapps.yml +2023-03-01 15:59:51.8517 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml +2023-03-01 15:59:51.8527 Info Copied funkytorrents.yml +2023-03-01 15:59:51.8527 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml +2023-03-01 15:59:51.8527 Info Copied fuzer.yml +2023-03-01 15:59:51.8527 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml +2023-03-01 15:59:51.8541 Info Copied gainbound.yml +2023-03-01 15:59:51.8541 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml +2023-03-01 15:59:51.8547 Info Copied gamestorrents.yml +2023-03-01 15:59:51.8547 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml +2023-03-01 15:59:51.8547 Info Copied gay-torrents.yml +2023-03-01 15:59:51.8547 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml +2023-03-01 15:59:51.8559 Info Copied gay-torrentsorg.yml +2023-03-01 15:59:51.8559 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml +2023-03-01 15:59:51.8559 Info Copied gaytorrentru.yml +2023-03-01 15:59:51.8566 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml +2023-03-01 15:59:51.8566 Info Copied generationfree-api.yml +2023-03-01 15:59:51.8566 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml +2023-03-01 15:59:51.8566 Info Copied genesismovement.yml +2023-03-01 15:59:51.8577 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml +2023-03-01 15:59:51.8577 Info Copied gigatorrents.yml +2023-03-01 15:59:51.8577 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml +2023-03-01 15:59:51.8587 Info Copied gimmepeers.yml +2023-03-01 15:59:51.8587 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml +2023-03-01 15:59:51.8587 Info Copied girotorrent.yml +2023-03-01 15:59:51.8587 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml +2023-03-01 15:59:51.8599 Info Copied gktorrent.yml +2023-03-01 15:59:51.8599 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml +2023-03-01 15:59:51.8599 Info Copied glodls.yml +2023-03-01 15:59:51.8599 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml +2023-03-01 15:59:51.8610 Info Copied greekdiamond.yml +2023-03-01 15:59:51.8610 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml +2023-03-01 15:59:51.8610 Info Copied greekteam.yml +2023-03-01 15:59:51.8617 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml +2023-03-01 15:59:51.8617 Info Copied gtorrentpro.yml +2023-03-01 15:59:51.8617 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml +2023-03-01 15:59:51.8627 Info Copied haidan.yml +2023-03-01 15:59:51.8627 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml +2023-03-01 15:59:51.8627 Info Copied haitang.yml +2023-03-01 15:59:51.8627 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml +2023-03-01 15:59:51.8639 Info Copied happyfappy.yml +2023-03-01 15:59:51.8639 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml +2023-03-01 15:59:51.8639 Info Copied hawke-uno.yml +2023-03-01 15:59:51.8647 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml +2023-03-01 15:59:51.8647 Info Copied hd-unit3d-api.yml +2023-03-01 15:59:51.8647 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml +2023-03-01 15:59:51.8657 Info Copied hd4fans.yml +2023-03-01 15:59:51.8657 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml +2023-03-01 15:59:51.8657 Info Copied hdarea.yml +2023-03-01 15:59:51.8657 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml +2023-03-01 15:59:51.8669 Info Copied hdatmos.yml +2023-03-01 15:59:51.8669 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml +2023-03-01 15:59:51.8669 Info Copied hdc.yml +2023-03-01 15:59:51.8669 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml +2023-03-01 15:59:51.8680 Info Copied hdchina.yml +2023-03-01 15:59:51.8680 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml +2023-03-01 15:59:51.8680 Info Copied hdcztorrent.yml +2023-03-01 15:59:51.8688 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml +2023-03-01 15:59:51.8688 Info Copied hddolby.yml +2023-03-01 15:59:51.8688 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml +2023-03-01 15:59:51.8699 Info Copied hdfans.yml +2023-03-01 15:59:51.8699 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml +2023-03-01 15:59:51.8699 Info Copied hdforever.yml +2023-03-01 15:59:51.8699 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml +2023-03-01 15:59:51.8710 Info Copied hdgalaktik.yml +2023-03-01 15:59:51.8710 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml +2023-03-01 15:59:51.8710 Info Copied hdhome.yml +2023-03-01 15:59:51.8718 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml +2023-03-01 15:59:51.8718 Info Copied hdmayi.yml +2023-03-01 15:59:51.8718 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml +2023-03-01 15:59:51.8727 Info Copied hdmonkey.yml +2023-03-01 15:59:51.8727 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml +2023-03-01 15:59:51.8727 Info Copied hdolimpo-api.yml +2023-03-01 15:59:51.8727 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml +2023-03-01 15:59:51.8739 Info Copied hdonly.yml +2023-03-01 15:59:51.8739 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml +2023-03-01 15:59:51.8739 Info Copied hdroute.yml +2023-03-01 15:59:51.8739 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml +2023-03-01 15:59:51.8750 Info Copied hdsky.yml +2023-03-01 15:59:51.8750 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml +2023-03-01 15:59:51.8764 Info Copied hdtime.yml +2023-03-01 15:59:51.8769 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml +2023-03-01 15:59:51.8780 Info Copied hdtorrentsit.yml +2023-03-01 15:59:51.8780 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml +2023-03-01 15:59:51.8794 Info Copied hdturk.yml +2023-03-01 15:59:51.8800 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml +2023-03-01 15:59:51.8810 Info Copied hdu.yml +2023-03-01 15:59:51.8810 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml +2023-03-01 15:59:51.8824 Info Copied hdzone.yml +2023-03-01 15:59:51.8828 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml +2023-03-01 15:59:51.8838 Info Copied hebits.yml +2023-03-01 15:59:51.8838 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml +2023-03-01 15:59:51.8851 Info Copied hellashut.yml +2023-03-01 15:59:51.8851 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml +2023-03-01 15:59:51.8865 Info Copied hhanclub.yml +2023-03-01 15:59:51.8869 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml +2023-03-01 15:59:51.8879 Info Copied houseofdevil.yml +2023-03-01 15:59:51.8879 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml +2023-03-01 15:59:51.8894 Info Copied hqmusic.yml +2023-03-01 15:59:51.8899 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml +2023-03-01 15:59:51.8909 Info Copied huntorrent.yml +2023-03-01 15:59:51.8909 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml +2023-03-01 15:59:51.8923 Info Copied icc2022.yml +2023-03-01 15:59:51.8928 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml +2023-03-01 15:59:51.8937 Info Copied idope.yml +2023-03-01 15:59:51.8937 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml +2023-03-01 15:59:51.8951 Info Copied ihdbits.yml +2023-03-01 15:59:51.8951 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml +2023-03-01 15:59:51.8965 Info Copied ilcorsaroblu.yml +2023-03-01 15:59:51.8970 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml +2023-03-01 15:59:51.8981 Info Copied ilcorsaronero.yml +2023-03-01 15:59:51.8981 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml +2023-03-01 15:59:51.8995 Info Copied immortuos.yml +2023-03-01 15:59:51.9000 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml +2023-03-01 15:59:51.9010 Info Copied indietorrents.yml +2023-03-01 15:59:51.9010 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml +2023-03-01 15:59:51.9024 Info Copied insanetracker.yml +2023-03-01 15:59:51.9029 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml +2023-03-01 15:59:51.9038 Info Copied internetarchive.yml +2023-03-01 15:59:51.9038 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml +2023-03-01 15:59:51.9052 Info Copied isohunt2.yml +2023-03-01 15:59:51.9057 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml +2023-03-01 15:59:51.9067 Info Copied itorrent.yml +2023-03-01 15:59:51.9067 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml +2023-03-01 15:59:51.9081 Info Copied jav-torrent.yml +2023-03-01 15:59:51.9081 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml +2023-03-01 15:59:51.9094 Info Copied jme-reunit3d-api.yml +2023-03-01 15:59:51.9098 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml +2023-03-01 15:59:51.9108 Info Copied joyhd.yml +2023-03-01 15:59:51.9108 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml +2023-03-01 15:59:51.9121 Info Copied jpopsuki.yml +2023-03-01 15:59:51.9121 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml +2023-03-01 15:59:51.9135 Info Copied jptv.yml +2023-03-01 15:59:51.9140 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml +2023-03-01 15:59:51.9150 Info Copied karagarga.yml +2023-03-01 15:59:51.9150 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml +2023-03-01 15:59:51.9164 Info Copied keepfriends.yml +2023-03-01 15:59:51.9169 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml +2023-03-01 15:59:51.9178 Info Copied kickasstorrents-to.yml +2023-03-01 15:59:51.9178 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml +2023-03-01 15:59:51.9193 Info Copied kickasstorrents-ws.yml +2023-03-01 15:59:51.9197 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml +2023-03-01 15:59:51.9207 Info Copied kinorun.yml +2023-03-01 15:59:51.9207 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml +2023-03-01 15:59:51.9221 Info Copied kinozal.yml +2023-03-01 15:59:51.9221 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml +2023-03-01 15:59:51.9235 Info Copied knaben.yml +2023-03-01 15:59:51.9240 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml +2023-03-01 15:59:51.9253 Info Copied korsar.yml +2023-03-01 15:59:51.9257 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml +2023-03-01 15:59:51.9268 Info Copied krazyzone.yml +2023-03-01 15:59:51.9268 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml +2023-03-01 15:59:51.9282 Info Copied kufirc.yml +2023-03-01 15:59:51.9287 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml +2023-03-01 15:59:51.9287 Info Copied lastfiles.yml +2023-03-01 15:59:51.9301 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml +2023-03-01 15:59:51.9311 Info Copied lat-team-api.yml +2023-03-01 15:59:51.9311 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml +2023-03-01 15:59:51.9326 Info Copied learnbits.yml +2023-03-01 15:59:51.9331 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml +2023-03-01 15:59:51.9340 Info Copied learnflakes.yml +2023-03-01 15:59:51.9347 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml +2023-03-01 15:59:51.9347 Info Copied leech24.yml +2023-03-01 15:59:51.9361 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml +2023-03-01 15:59:51.9370 Info Copied lemonhd.yml +2023-03-01 15:59:51.9370 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml +2023-03-01 15:59:51.9384 Info Copied lepornoinfo.yml +2023-03-01 15:59:51.9389 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml +2023-03-01 15:59:51.9399 Info Copied les-cinephiles.yml +2023-03-01 15:59:51.9399 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml +2023-03-01 15:59:51.9413 Info Copied lesaloon.yml +2023-03-01 15:59:51.9419 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml +2023-03-01 15:59:51.9429 Info Copied libranet.yml +2023-03-01 15:59:51.9429 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml +2023-03-01 15:59:51.9443 Info Copied limetorrents.yml +2023-03-01 15:59:51.9448 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml +2023-03-01 15:59:51.9457 Info Copied limetorrentsclone.yml +2023-03-01 15:59:51.9457 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml +2023-03-01 15:59:51.9471 Info Copied linkomanija.yml +2023-03-01 15:59:51.9471 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml +2023-03-01 15:59:51.9486 Info Copied linuxtracker.yml +2023-03-01 15:59:51.9491 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml +2023-03-01 15:59:51.9500 Info Copied locadora.yml +2023-03-01 15:59:51.9500 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml +2023-03-01 15:59:51.9514 Info Copied losslessclub.yml +2023-03-01 15:59:51.9519 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml +2023-03-01 15:59:51.9528 Info Copied lst.yml +2023-03-01 15:59:51.9528 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml +2023-03-01 15:59:51.9542 Info Copied mactorrentsdownload.yml +2023-03-01 15:59:51.9542 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml +2023-03-01 15:59:51.9555 Info Copied madsrevolution.yml +2023-03-01 15:59:51.9560 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml +2023-03-01 15:59:51.9570 Info Copied magicheaven.yml +2023-03-01 15:59:51.9570 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml +2023-03-01 15:59:51.9584 Info Copied magico.yml +2023-03-01 15:59:51.9588 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml +2023-03-01 15:59:51.9598 Info Copied majomparade.yml +2023-03-01 15:59:51.9598 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml +2023-03-01 15:59:51.9611 Info Copied marinetracker.yml +2023-03-01 15:59:51.9611 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml +2023-03-01 15:59:51.9626 Info Copied mazepa.yml +2023-03-01 15:59:51.9630 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml +2023-03-01 15:59:51.9640 Info Copied megamixtracker.yml +2023-03-01 15:59:51.9640 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml +2023-03-01 15:59:51.9653 Info Copied megapeer.yml +2023-03-01 15:59:51.9659 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml +2023-03-01 15:59:51.9669 Info Copied mesevilag.yml +2023-03-01 15:59:51.9669 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml +2023-03-01 15:59:51.9682 Info Copied metaltracker.yml +2023-03-01 15:59:51.9682 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml +2023-03-01 15:59:51.9695 Info Copied mikan.yml +2023-03-01 15:59:51.9700 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml +2023-03-01 15:59:51.9709 Info Copied milkie.yml +2023-03-01 15:59:51.9709 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml +2023-03-01 15:59:51.9722 Info Copied miobt.yml +2023-03-01 15:59:51.9727 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml +2023-03-01 15:59:51.9727 Info Copied mircrew.yml +2023-03-01 15:59:51.9740 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml +2023-03-01 15:59:51.9750 Info Copied mixtapetorrent.yml +2023-03-01 15:59:51.9750 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml +2023-03-01 15:59:51.9763 Info Copied mma-torrents.yml +2023-03-01 15:59:51.9769 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml +2023-03-01 15:59:51.9780 Info Copied mnv.yml +2023-03-01 15:59:51.9780 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml +2023-03-01 15:59:51.9794 Info Copied mojblink.yml +2023-03-01 15:59:51.9799 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml +2023-03-01 15:59:51.9808 Info Copied mousebits.yml +2023-03-01 15:59:51.9808 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml +2023-03-01 15:59:51.9821 Info Copied moviesdvdr.yml +2023-03-01 15:59:51.9821 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml +2023-03-01 15:59:51.9835 Info Copied moviesite.yml +2023-03-01 15:59:51.9842 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml +2023-03-01 15:59:51.9851 Info Copied movietorrent.yml +2023-03-01 15:59:51.9851 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml +2023-03-01 15:59:51.9864 Info Copied movietorrentz.yml +2023-03-01 15:59:51.9868 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml +2023-03-01 15:59:51.9878 Info Copied mteamtp.yml +2023-03-01 15:59:51.9878 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml +2023-03-01 15:59:51.9892 Info Copied mteamtp2fa.yml +2023-03-01 15:59:51.9892 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml +2023-03-01 15:59:51.9906 Info Copied muziekfabriek.yml +2023-03-01 15:59:51.9910 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml +2023-03-01 15:59:51.9920 Info Copied mvgroupforum.yml +2023-03-01 15:59:51.9920 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml +2023-03-01 15:59:51.9933 Info Copied mvgroupmain.yml +2023-03-01 15:59:51.9937 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml +2023-03-01 15:59:51.9947 Info Copied mypornclub.yml +2023-03-01 15:59:51.9947 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml +2023-03-01 15:59:51.9961 Info Copied myspleen.yml +2023-03-01 15:59:51.9961 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml +2023-03-01 15:59:51.9975 Info Copied nethd.yml +2023-03-01 15:59:51.9979 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml +2023-03-01 15:59:51.9989 Info Copied newretro.yml +2023-03-01 15:59:51.9989 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml +2023-03-01 15:59:52.0004 Info Copied newstudio.yml +2023-03-01 15:59:52.0008 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml +2023-03-01 15:59:52.0017 Info Copied newstudiol.yml +2023-03-01 15:59:52.0017 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml +2023-03-01 15:59:52.0030 Info Copied nicept.yml +2023-03-01 15:59:52.0030 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml +2023-03-01 15:59:52.0042 Info Copied nipponsei.yml +2023-03-01 15:59:52.0042 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml +2023-03-01 15:59:52.0058 Info Copied nntt.yml +2023-03-01 15:59:52.0058 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml +2023-03-01 15:59:52.0074 Info Copied noname-club.yml +2023-03-01 15:59:52.0078 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml +2023-03-01 15:59:52.0089 Info Copied noname-clubl.yml +2023-03-01 15:59:52.0089 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml +2023-03-01 15:59:52.0103 Info Copied nyaasi.yml +2023-03-01 15:59:52.0108 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml +2023-03-01 15:59:52.0118 Info Copied oldtoonsworld.yml +2023-03-01 15:59:52.0118 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml +2023-03-01 15:59:52.0131 Info Copied onejav.yml +2023-03-01 15:59:52.0131 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml +2023-03-01 15:59:52.0144 Info Copied opencd.yml +2023-03-01 15:59:52.0149 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml +2023-03-01 15:59:52.0159 Info Copied oshenpt.yml +2023-03-01 15:59:52.0159 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml +2023-03-01 15:59:52.0173 Info Copied ourbits.yml +2023-03-01 15:59:52.0177 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml +2023-03-01 15:59:52.0187 Info Copied p2pbg.yml +2023-03-01 15:59:52.0187 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml +2023-03-01 15:59:52.0202 Info Copied parnuxi.yml +2023-03-01 15:59:52.0202 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml +2023-03-01 15:59:52.0216 Info Copied partis.yml +2023-03-01 15:59:52.0221 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml +2023-03-01 15:59:52.0230 Info Copied pctorrent.yml +2023-03-01 15:59:52.0230 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml +2023-03-01 15:59:52.0244 Info Copied peeratiko.yml +2023-03-01 15:59:52.0248 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml +2023-03-01 15:59:52.0257 Info Copied peersfm.yml +2023-03-01 15:59:52.0257 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml +2023-03-01 15:59:52.0349 Info Copied pier720.yml +2023-03-01 15:59:52.0349 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml +2023-03-01 15:59:52.0362 Info Copied pignetwork.yml +2023-03-01 15:59:52.0362 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml +2023-03-01 15:59:52.0376 Info Copied piratbit.yml +2023-03-01 15:59:52.0380 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml +2023-03-01 15:59:52.0391 Info Copied piratbitl.yml +2023-03-01 15:59:52.0391 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml +2023-03-01 15:59:52.0403 Info Copied pixelcove.yml +2023-03-01 15:59:52.0407 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml +2023-03-01 15:59:52.0407 Info Copied pixelcove2fa.yml +2023-03-01 15:59:52.0420 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml +2023-03-01 15:59:52.0430 Info Copied polishsource.yml +2023-03-01 15:59:52.0430 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml +2023-03-01 15:59:52.0442 Info Copied polishtracker-api.yml +2023-03-01 15:59:52.0442 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml +2023-03-01 15:59:52.0455 Info Copied pornbay.yml +2023-03-01 15:59:52.0459 Info Attempting to copy pornforall.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pornforall.yml to destination: /app/Jackett/Definitions/pornforall.yml +2023-03-01 15:59:52.0469 Info Copied pornforall.yml +2023-03-01 15:59:52.0469 Info Attempting to copy pornleech.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pornleech.yml to destination: /app/Jackett/Definitions/pornleech.yml +2023-03-01 15:59:52.0481 Info Copied pornleech.yml +2023-03-01 15:59:52.0481 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml +2023-03-01 15:59:52.0493 Info Copied pornoslab.yml +2023-03-01 15:59:52.0497 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml +2023-03-01 15:59:52.0497 Info Copied pornotorrent.yml +2023-03-01 15:59:52.0509 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml +2023-03-01 15:59:52.0519 Info Copied portugas-api.yml +2023-03-01 15:59:52.0519 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml +2023-03-01 15:59:52.0534 Info Copied potuk.yml +2023-03-01 15:59:52.0538 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml +2023-03-01 15:59:52.0547 Info Copied proaudiotorrents.yml +2023-03-01 15:59:52.0547 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml +2023-03-01 15:59:52.0559 Info Copied proporno.yml +2023-03-01 15:59:52.0559 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml +2023-03-01 15:59:52.0572 Info Copied ptchina.yml +2023-03-01 15:59:52.0572 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml +2023-03-01 15:59:52.0584 Info Copied pterclub.yml +2023-03-01 15:59:52.0589 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml +2023-03-01 15:59:52.0597 Info Copied ptfiles.yml +2023-03-01 15:59:52.0597 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml +2023-03-01 15:59:52.0609 Info Copied pthome.yml +2023-03-01 15:59:52.0609 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml +2023-03-01 15:59:52.0622 Info Copied ptmsg.yml +2023-03-01 15:59:52.0622 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml +2023-03-01 15:59:52.0635 Info Copied ptsbao.yml +2023-03-01 15:59:52.0639 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml +2023-03-01 15:59:52.0648 Info Copied pttime.yml +2023-03-01 15:59:52.0648 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml +2023-03-01 15:59:52.0660 Info Copied punkshorror.yml +2023-03-01 15:59:52.0660 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml +2023-03-01 15:59:52.0673 Info Copied puntotorrent.yml +2023-03-01 15:59:52.0673 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml +2023-03-01 15:59:52.0685 Info Copied pussytorrents.yml +2023-03-01 15:59:52.0689 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml +2023-03-01 15:59:52.0697 Info Copied putao.yml +2023-03-01 15:59:52.0697 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml +2023-03-01 15:59:52.0710 Info Copied puurhollands.yml +2023-03-01 15:59:52.0710 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml +2023-03-01 15:59:52.0722 Info Copied pwtorrents.yml +2023-03-01 15:59:52.0722 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml +2023-03-01 15:59:52.0735 Info Copied r3vwtf.yml +2023-03-01 15:59:52.0739 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml +2023-03-01 15:59:52.0750 Info Copied racing4everyone-api.yml +2023-03-01 15:59:52.0750 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml +2023-03-01 15:59:52.0763 Info Copied racingforme.yml +2023-03-01 15:59:52.0767 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml +2023-03-01 15:59:52.0767 Info Copied rainbowtracker.yml +2023-03-01 15:59:52.0779 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml +2023-03-01 15:59:52.0788 Info Copied rapidzona.yml +2023-03-01 15:59:52.0788 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml +2023-03-01 15:59:52.0801 Info Copied redbits-api.yml +2023-03-01 15:59:52.0801 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml +2023-03-01 15:59:52.0813 Info Copied redstartorrent.yml +2023-03-01 15:59:52.0817 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml +2023-03-01 15:59:52.0817 Info Copied reelflix-api.yml +2023-03-01 15:59:52.0830 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml +2023-03-01 15:59:52.0839 Info Copied resurrectthenet.yml +2023-03-01 15:59:52.0839 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml +2023-03-01 15:59:52.0853 Info Copied rgfootball.yml +2023-03-01 15:59:52.0853 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml +2023-03-01 15:59:52.0865 Info Copied rintor.yml +2023-03-01 15:59:52.0869 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml +2023-03-01 15:59:52.0878 Info Copied rintornet.yml +2023-03-01 15:59:52.0878 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml +2023-03-01 15:59:52.0893 Info Copied riperam.yml +2023-03-01 15:59:52.0898 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml +2023-03-01 15:59:52.0908 Info Copied rockbox.yml +2023-03-01 15:59:52.0908 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml +2023-03-01 15:59:52.0921 Info Copied romanianmetaltorrents.yml +2023-03-01 15:59:52.0921 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml +2023-03-01 15:59:52.0934 Info Copied rptorrents.yml +2023-03-01 15:59:52.0938 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml +2023-03-01 15:59:52.0949 Info Copied rudub.yml +2023-03-01 15:59:52.0949 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml +2023-03-01 15:59:52.0964 Info Copied rus-media.yml +2023-03-01 15:59:52.0968 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml +2023-03-01 15:59:52.0981 Info Copied rustorka.yml +2023-03-01 15:59:52.0981 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml +2023-03-01 15:59:52.0995 Info Copied rutor.yml +2023-03-01 15:59:52.1000 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml +2023-03-01 15:59:52.1011 Info Copied rutracker-ru.yml +2023-03-01 15:59:52.1011 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml +2023-03-01 15:59:52.1025 Info Copied satclubbing.yml +2023-03-01 15:59:52.1029 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml +2023-03-01 15:59:52.1039 Info Copied scenerush.yml +2023-03-01 15:59:52.1039 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml +2023-03-01 15:59:52.1052 Info Copied sdbits.yml +2023-03-01 15:59:52.1057 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml +2023-03-01 15:59:52.1057 Info Copied seedfile.yml +2023-03-01 15:59:52.1070 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml +2023-03-01 15:59:52.1081 Info Copied seedoff.yml +2023-03-01 15:59:52.1081 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml +2023-03-01 15:59:52.1094 Info Copied selezen.yml +2023-03-01 15:59:52.1098 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml +2023-03-01 15:59:52.1108 Info Copied sexypics.yml +2023-03-01 15:59:52.1108 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml +2023-03-01 15:59:52.1123 Info Copied shanaproject.yml +2023-03-01 15:59:52.1127 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml +2023-03-01 15:59:52.1138 Info Copied shareisland-api.yml +2023-03-01 15:59:52.1138 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml +2023-03-01 15:59:52.1151 Info Copied sharewood.yml +2023-03-01 15:59:52.1151 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml +2023-03-01 15:59:52.1166 Info Copied sharkpt.yml +2023-03-01 15:59:52.1170 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml +2023-03-01 15:59:52.1180 Info Copied showrss.yml +2023-03-01 15:59:52.1180 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml +2023-03-01 15:59:52.1194 Info Copied siambit.yml +2023-03-01 15:59:52.1199 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml +2023-03-01 15:59:52.1209 Info Copied skipthecommercials-api.yml +2023-03-01 15:59:52.1209 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml +2023-03-01 15:59:52.1221 Info Copied skipthetrailers.yml +2023-03-01 15:59:52.1221 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml +2023-03-01 15:59:52.1235 Info Copied sktorrent-org.yml +2023-03-01 15:59:52.1239 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml +2023-03-01 15:59:52.1248 Info Copied sktorrent.yml +2023-03-01 15:59:52.1248 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml +2023-03-01 15:59:52.1261 Info Copied slosoul.yml +2023-03-01 15:59:52.1261 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml +2023-03-01 15:59:52.1275 Info Copied snowpt.yml +2023-03-01 15:59:52.1279 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml +2023-03-01 15:59:52.1288 Info Copied solidtorrents.yml +2023-03-01 15:59:52.1288 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml +2023-03-01 15:59:52.1301 Info Copied sosulki.yml +2023-03-01 15:59:52.1301 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml +2023-03-01 15:59:52.1317 Info Copied soulvoice.yml +2023-03-01 15:59:52.1317 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml +2023-03-01 15:59:52.1330 Info Copied speedmasterhd.yml +2023-03-01 15:59:52.1330 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml +2023-03-01 15:59:52.1342 Info Copied speedtorrentreloaded.yml +2023-03-01 15:59:52.1347 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml +2023-03-01 15:59:52.1347 Info Copied spidertk.yml +2023-03-01 15:59:52.1361 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml +2023-03-01 15:59:52.1371 Info Copied spiritofrevolution.yml +2023-03-01 15:59:52.1371 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml +2023-03-01 15:59:52.1384 Info Copied sporthd.yml +2023-03-01 15:59:52.1388 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml +2023-03-01 15:59:52.1398 Info Copied sportscult.yml +2023-03-01 15:59:52.1398 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml +2023-03-01 15:59:52.1410 Info Copied springsunday.yml +2023-03-01 15:59:52.1410 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml +2023-03-01 15:59:52.1424 Info Copied sugoimusic.yml +2023-03-01 15:59:52.1428 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml +2023-03-01 15:59:52.1438 Info Copied sukebeinyaasi.yml +2023-03-01 15:59:52.1438 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml +2023-03-01 15:59:52.1451 Info Copied superbits.yml +2023-03-01 15:59:52.1451 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml +2023-03-01 15:59:52.1463 Info Copied swarmazon-api.yml +2023-03-01 15:59:52.1482 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml +2023-03-01 15:59:52.1494 Info Copied tapochek.yml +2023-03-01 15:59:52.1499 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml +2023-03-01 15:59:52.1509 Info Copied tasmanit.yml +2023-03-01 15:59:52.1509 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml +2023-03-01 15:59:52.1523 Info Copied teamctgame.yml +2023-03-01 15:59:52.1527 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml +2023-03-01 15:59:52.1537 Info Copied teamhd.yml +2023-03-01 15:59:52.1537 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml +2023-03-01 15:59:52.1551 Info Copied teamos.yml +2023-03-01 15:59:52.1551 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml +2023-03-01 15:59:52.1564 Info Copied tekno3d.yml +2023-03-01 15:59:52.1568 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml +2023-03-01 15:59:52.1578 Info Copied tellytorrent-api.yml +2023-03-01 15:59:52.1578 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml +2023-03-01 15:59:52.1592 Info Copied teracod.yml +2023-03-01 15:59:52.1592 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml +2023-03-01 15:59:52.1606 Info Copied the-crazy-ones.yml +2023-03-01 15:59:52.1610 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml +2023-03-01 15:59:52.1619 Info Copied thedarkcommunity-api.yml +2023-03-01 15:59:52.1619 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml +2023-03-01 15:59:52.1633 Info Copied theempire.yml +2023-03-01 15:59:52.1637 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml +2023-03-01 15:59:52.1647 Info Copied thefallingangels.yml +2023-03-01 15:59:52.1647 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml +2023-03-01 15:59:52.1661 Info Copied thegeeks.yml +2023-03-01 15:59:52.1661 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml +2023-03-01 15:59:52.1675 Info Copied theleachzone.yml +2023-03-01 15:59:52.1679 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml +2023-03-01 15:59:52.1688 Info Copied themixingbowl.yml +2023-03-01 15:59:52.1688 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml +2023-03-01 15:59:52.1702 Info Copied thenewfun.yml +2023-03-01 15:59:52.1702 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml +2023-03-01 15:59:52.1716 Info Copied theoccult.yml +2023-03-01 15:59:52.1720 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml +2023-03-01 15:59:52.1730 Info Copied theoldschool-api.yml +2023-03-01 15:59:52.1730 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml +2023-03-01 15:59:52.1744 Info Copied thepiratebay.yml +2023-03-01 15:59:52.1748 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml +2023-03-01 15:59:52.1758 Info Copied theplace.yml +2023-03-01 15:59:52.1758 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml +2023-03-01 15:59:52.1771 Info Copied thesceneplace.yml +2023-03-01 15:59:52.1771 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml +2023-03-01 15:59:52.1784 Info Copied theshinning-api.yml +2023-03-01 15:59:52.1790 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml +2023-03-01 15:59:52.1800 Info Copied theshow.yml +2023-03-01 15:59:52.1800 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml +2023-03-01 15:59:52.1813 Info Copied thevault.yml +2023-03-01 15:59:52.1817 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml +2023-03-01 15:59:52.1827 Info Copied tjupt.yml +2023-03-01 15:59:52.1827 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml +2023-03-01 15:59:52.1843 Info Copied tlfbits.yml +2023-03-01 15:59:52.1847 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml +2023-03-01 15:59:52.1858 Info Copied tmghub.yml +2023-03-01 15:59:52.1858 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml +2023-03-01 15:59:52.1872 Info Copied tokyotosho.yml +2023-03-01 15:59:52.1872 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml +2023-03-01 15:59:52.1886 Info Copied torlock.yml +2023-03-01 15:59:52.1890 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml +2023-03-01 15:59:52.1899 Info Copied tornado.yml +2023-03-01 15:59:52.1899 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml +2023-03-01 15:59:52.1913 Info Copied torrent-explosiv.yml +2023-03-01 15:59:52.1917 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml +2023-03-01 15:59:52.1927 Info Copied torrent-pirat.yml +2023-03-01 15:59:52.1927 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml +2023-03-01 15:59:52.1940 Info Copied torrent-turk.yml +2023-03-01 15:59:52.1940 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml +2023-03-01 15:59:52.1954 Info Copied torrent9.yml +2023-03-01 15:59:52.1959 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml +2023-03-01 15:59:52.1969 Info Copied torrent911.yml +2023-03-01 15:59:52.1969 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml +2023-03-01 15:59:52.1983 Info Copied torrent9clone.yml +2023-03-01 15:59:52.1987 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml +2023-03-01 15:59:52.1997 Info Copied torrentbd.yml +2023-03-01 15:59:52.1997 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml +2023-03-01 15:59:52.2011 Info Copied torrentby.yml +2023-03-01 15:59:52.2011 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml +2023-03-01 15:59:52.2025 Info Copied torrentccf.yml +2023-03-01 15:59:52.2029 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml +2023-03-01 15:59:52.2039 Info Copied torrentcore.yml +2023-03-01 15:59:52.2039 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml +2023-03-01 15:59:52.2054 Info Copied torrentdownload.yml +2023-03-01 15:59:52.2058 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml +2023-03-01 15:59:52.2058 Info Copied torrentdownloads.yml +2023-03-01 15:59:52.2069 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml +2023-03-01 15:59:52.2069 Info Copied torrentfunk.yml +2023-03-01 15:59:52.2080 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml +2023-03-01 15:59:52.2088 Info Copied torrentgalaxy.yml +2023-03-01 15:59:52.2088 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml +2023-03-01 15:59:52.2099 Info Copied torrenthr.yml +2023-03-01 15:59:52.2099 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml +2023-03-01 15:59:52.2111 Info Copied torrenting.yml +2023-03-01 15:59:52.2111 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml +2023-03-01 15:59:52.2122 Info Copied torrentkitty.yml +2023-03-01 15:59:52.2122 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml +2023-03-01 15:59:52.2134 Info Copied torrentland.yml +2023-03-01 15:59:52.2177 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml +2023-03-01 15:59:52.2187 Info Copied torrentleech-pl.yml +2023-03-01 15:59:52.2187 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml +2023-03-01 15:59:52.2198 Info Copied torrentleech.yml +2023-03-01 15:59:52.2198 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml +2023-03-01 15:59:52.2209 Info Copied torrentlt.yml +2023-03-01 15:59:52.2209 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml +2023-03-01 15:59:52.2221 Info Copied torrentmasters.yml +2023-03-01 15:59:52.2221 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml +2023-03-01 15:59:52.2233 Info Copied torrentoyunindir.yml +2023-03-01 15:59:52.2233 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml +2023-03-01 15:59:52.2244 Info Copied torrentproject2.yml +2023-03-01 15:59:52.2248 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml +2023-03-01 15:59:52.2248 Info Copied torrentqq.yml +2023-03-01 15:59:52.2260 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml +2023-03-01 15:59:52.2269 Info Copied torrentsectorcrew.yml +2023-03-01 15:59:52.2269 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml +2023-03-01 15:59:52.2281 Info Copied torrentseeds-api.yml +2023-03-01 15:59:52.2281 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml +2023-03-01 15:59:52.2292 Info Copied torrentsir.yml +2023-03-01 15:59:52.2292 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml +2023-03-01 15:59:52.2304 Info Copied torrentslocal.yml +2023-03-01 15:59:52.2308 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml +2023-03-01 15:59:52.2308 Info Copied torrentv.yml +2023-03-01 15:59:52.2318 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml +2023-03-01 15:59:52.2318 Info Copied torrentview.yml +2023-03-01 15:59:52.2329 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml +2023-03-01 15:59:52.2337 Info Copied torrentwhiz.yml +2023-03-01 15:59:52.2337 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml +2023-03-01 15:59:52.2347 Info Copied torrentz2eu.yml +2023-03-01 15:59:52.2347 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml +2023-03-01 15:59:52.2359 Info Copied torrentz2nz.yml +2023-03-01 15:59:52.2359 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml +2023-03-01 15:59:52.2371 Info Copied totallykids.yml +2023-03-01 15:59:52.2371 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml +2023-03-01 15:59:52.2382 Info Copied totheglory.yml +2023-03-01 15:59:52.2382 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml +2023-03-01 15:59:52.2394 Info Copied totheglorycookie.yml +2023-03-01 15:59:52.2397 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml +2023-03-01 15:59:52.2397 Info Copied traht.yml +2023-03-01 15:59:52.2408 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml +2023-03-01 15:59:52.2408 Info Copied trancetraffic.yml +2023-03-01 15:59:52.2419 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml +2023-03-01 15:59:52.2427 Info Copied trezzor.yml +2023-03-01 15:59:52.2427 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml +2023-03-01 15:59:52.2437 Info Copied tribalmixes.yml +2023-03-01 15:59:52.2437 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml +2023-03-01 15:59:52.2448 Info Copied trupornolabs.yml +2023-03-01 15:59:52.2448 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml +2023-03-01 15:59:52.2459 Info Copied turkseed.yml +2023-03-01 15:59:52.2459 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml +2023-03-01 15:59:52.2470 Info Copied turktorrent.yml +2023-03-01 15:59:52.2470 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml +2023-03-01 15:59:52.2482 Info Copied tvchaosuk.yml +2023-03-01 15:59:52.2482 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml +2023-03-01 15:59:52.2493 Info Copied tvroad.yml +2023-03-01 15:59:52.2493 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml +2023-03-01 15:59:52.2505 Info Copied twilight.yml +2023-03-01 15:59:52.2508 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml +2023-03-01 15:59:52.2508 Info Copied u2.yml +2023-03-01 15:59:52.2519 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml +2023-03-01 15:59:52.2527 Info Copied uhdbits.yml +2023-03-01 15:59:52.2527 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml +2023-03-01 15:59:52.2540 Info Copied uniondht.yml +2023-03-01 15:59:52.2540 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml +2023-03-01 15:59:52.2550 Info Copied unionfansub.yml +2023-03-01 15:59:52.2550 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml +2023-03-01 15:59:52.2561 Info Copied uniongang.yml +2023-03-01 15:59:52.2561 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml +2023-03-01 15:59:52.2572 Info Copied unleashthecartoons.yml +2023-03-01 15:59:52.2572 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml +2023-03-01 15:59:52.2584 Info Copied unlimitz.yml +2023-03-01 15:59:52.2588 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml +2023-03-01 15:59:52.2588 Info Copied vsthouse.yml +2023-03-01 15:59:52.2599 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml +2023-03-01 15:59:52.2607 Info Copied vsttorrents.yml +2023-03-01 15:59:52.2607 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml +2023-03-01 15:59:52.2618 Info Copied vtorrent.yml +2023-03-01 15:59:52.2618 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml +2023-03-01 15:59:52.2629 Info Copied whiteangel.yml +2023-03-01 15:59:52.2629 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml +2023-03-01 15:59:52.2640 Info Copied wihd.yml +2023-03-01 15:59:52.2640 Info Attempting to copy woot.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/woot.yml to destination: /app/Jackett/Definitions/woot.yml +2023-03-01 15:59:52.2652 Info Copied woot.yml +2023-03-01 15:59:52.2652 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml +2023-03-01 15:59:52.2663 Info Copied world-of-tomorrow.yml +2023-03-01 15:59:52.2667 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml +2023-03-01 15:59:52.2667 Info Copied x-ite.me.yml +2023-03-01 15:59:52.2679 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml +2023-03-01 15:59:52.2689 Info Copied xbytes2.yml +2023-03-01 15:59:52.2689 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml +2023-03-01 15:59:52.2700 Info Copied xthor-api.yml +2023-03-01 15:59:52.2700 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml +2023-03-01 15:59:52.2712 Info Copied xtorrenty.yml +2023-03-01 15:59:52.2712 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml +2023-03-01 15:59:52.2724 Info Copied xtremebytes.yml +2023-03-01 15:59:52.2728 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml +2023-03-01 15:59:52.2728 Info Copied xwtclassics.yml +2023-03-01 15:59:52.2739 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml +2023-03-01 15:59:52.2747 Info Copied xwtorrents.yml +2023-03-01 15:59:52.2747 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml +2023-03-01 15:59:52.2758 Info Copied xxxadulttorrent.yml +2023-03-01 15:59:52.2758 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml +2023-03-01 15:59:52.2770 Info Copied xxxtor.yml +2023-03-01 15:59:52.2770 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml +2023-03-01 15:59:52.2781 Info Copied xxxtorrents.yml +2023-03-01 15:59:52.2781 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml +2023-03-01 15:59:52.2793 Info Copied ydypt.yml +2023-03-01 15:59:52.2793 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml +2023-03-01 15:59:52.2805 Info Copied yggcookie.yml +2023-03-01 15:59:52.2808 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml +2023-03-01 15:59:52.2817 Info Copied yggtorrent.yml +2023-03-01 15:59:52.2817 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml +2023-03-01 15:59:52.2829 Info Copied yourbittorrent.yml +2023-03-01 15:59:52.2829 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml +2023-03-01 15:59:52.2840 Info Copied yts.yml +2023-03-01 15:59:52.2840 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml +2023-03-01 15:59:52.2851 Info Copied zamundanet.yml +2023-03-01 15:59:52.2851 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml +2023-03-01 15:59:52.2863 Info Copied zelkaorg.yml +2023-03-01 15:59:52.2868 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml +2023-03-01 15:59:52.2868 Info Copied zetorrents.yml +2023-03-01 15:59:52.2879 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml +2023-03-01 15:59:52.2879 Info Copied zmpt.yml +2023-03-01 15:59:52.2890 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml +2023-03-01 15:59:52.2899 Info Copied zomb.yml +2023-03-01 15:59:52.2899 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml +2023-03-01 15:59:52.2911 Info Copied ztracker.yml +2023-03-01 15:59:52.2911 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll +2023-03-01 15:59:52.2923 Info Copied FlareSolverrSharp.dll +2023-03-01 15:59:52.2923 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll +2023-03-01 15:59:52.2944 Info Copied ICSharpCode.SharpZipLib.dll +2023-03-01 15:59:52.2948 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh +2023-03-01 15:59:52.2957 Info Copied install_service_systemd.sh +2023-03-01 15:59:52.2957 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/jackett to destination: /app/Jackett/jackett +2023-03-01 15:59:52.2971 Info Copied jackett +2023-03-01 15:59:52.2971 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh +2023-03-01 15:59:52.2982 Info Copied jackett_launcher.sh +2023-03-01 15:59:52.2982 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll +2023-03-01 15:59:52.3028 Info Copied Jackett.Common.dll +2023-03-01 15:59:52.3028 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb +2023-03-01 15:59:52.3044 Info Copied Jackett.Common.pdb +2023-03-01 15:59:52.3048 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json +2023-03-01 15:59:52.3059 Info Copied jackett.deps.json +2023-03-01 15:59:52.3059 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll +2023-03-01 15:59:52.3080 Info Copied jackett.dll +2023-03-01 15:59:52.3080 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb +2023-03-01 15:59:52.3092 Info Copied jackett.pdb +2023-03-01 15:59:52.3092 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json +2023-03-01 15:59:52.3103 Info Copied jackett.runtimeconfig.json +2023-03-01 15:59:52.3108 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater +2023-03-01 15:59:52.3118 Info Copied JackettUpdater +2023-03-01 15:59:52.3118 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json +2023-03-01 15:59:52.3131 Info Copied JackettUpdater.deps.json +2023-03-01 15:59:52.3131 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll +2023-03-01 15:59:52.3154 Info Copied JackettUpdater.dll +2023-03-01 15:59:52.3158 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb +2023-03-01 15:59:52.3158 Info Copied JackettUpdater.pdb +2023-03-01 15:59:52.3169 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json +2023-03-01 15:59:52.3177 Info Copied JackettUpdater.runtimeconfig.json +2023-03-01 15:59:52.3177 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so +2023-03-01 15:59:52.3257 Info Copied libclrjit.so +2023-03-01 15:59:52.3257 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so +2023-03-01 15:59:52.3497 Info Copied libcoreclr.so +2023-03-01 15:59:52.3497 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so +2023-03-01 15:59:52.3540 Info Copied libcoreclrtraceptprovider.so +2023-03-01 15:59:52.3540 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so +2023-03-01 15:59:52.3577 Info Copied libdbgshim.so +2023-03-01 15:59:52.3577 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so +2023-03-01 15:59:52.3603 Info Copied libhostfxr.so +2023-03-01 15:59:52.3603 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so +2023-03-01 15:59:52.3627 Info Copied libhostpolicy.so +2023-03-01 15:59:52.3627 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so +2023-03-01 15:59:52.3642 Info Copied libMono.Unix.so +2023-03-01 15:59:52.3642 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so +2023-03-01 15:59:52.3760 Info Copied libmscordaccore.so +2023-03-01 15:59:52.3760 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so +2023-03-01 15:59:52.3832 Info Copied libmscordbi.so +2023-03-01 15:59:52.3837 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so +2023-03-01 15:59:52.3850 Info Copied libSystem.Globalization.Native.so +2023-03-01 15:59:52.3850 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so +2023-03-01 15:59:52.3899 Info Copied libSystem.IO.Compression.Native.so +2023-03-01 15:59:52.3899 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so +2023-03-01 15:59:52.3914 Info Copied libSystem.Native.so +2023-03-01 15:59:52.3917 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so +2023-03-01 15:59:52.3917 Info Copied libSystem.Net.Security.Native.so +2023-03-01 15:59:52.3930 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so +2023-03-01 15:59:52.3943 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so +2023-03-01 15:59:52.3947 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/LICENSE to destination: /app/Jackett/LICENSE +2023-03-01 15:59:52.3947 Info Copied LICENSE +2023-03-01 15:59:52.3959 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll +2023-03-01 15:59:52.3970 Info Copied Microsoft.AspNetCore.Antiforgery.dll +2023-03-01 15:59:52.3970 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-03-01 15:59:52.3997 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-03-01 15:59:52.3997 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll +2023-03-01 15:59:52.4012 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll +2023-03-01 15:59:52.4012 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll +2023-03-01 15:59:52.4027 Info Copied Microsoft.AspNetCore.Authentication.Core.dll +2023-03-01 15:59:52.4027 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll +2023-03-01 15:59:52.4043 Info Copied Microsoft.AspNetCore.Authentication.dll +2023-03-01 15:59:52.4047 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll +2023-03-01 15:59:52.4061 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll +2023-03-01 15:59:52.4061 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll +2023-03-01 15:59:52.4075 Info Copied Microsoft.AspNetCore.Authorization.dll +2023-03-01 15:59:52.4079 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll +2023-03-01 15:59:52.4089 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll +2023-03-01 15:59:52.4089 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll +2023-03-01 15:59:52.4102 Info Copied Microsoft.AspNetCore.Components.Authorization.dll +2023-03-01 15:59:52.4102 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll +2023-03-01 15:59:52.4133 Info Copied Microsoft.AspNetCore.Components.dll +2023-03-01 15:59:52.4133 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll +2023-03-01 15:59:52.4146 Info Copied Microsoft.AspNetCore.Components.Forms.dll +2023-03-01 15:59:52.4150 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll +2023-03-01 15:59:52.4182 Info Copied Microsoft.AspNetCore.Components.Server.dll +2023-03-01 15:59:52.4182 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll +2023-03-01 15:59:52.4209 Info Copied Microsoft.AspNetCore.Components.Web.dll +2023-03-01 15:59:52.4209 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll +2023-03-01 15:59:52.4223 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll +2023-03-01 15:59:52.4227 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll +2023-03-01 15:59:52.4227 Info Copied Microsoft.AspNetCore.CookiePolicy.dll +2023-03-01 15:59:52.4240 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll +2023-03-01 15:59:52.4251 Info Copied Microsoft.AspNetCore.Cors.dll +2023-03-01 15:59:52.4251 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll +2023-03-01 15:59:52.4265 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll +2023-03-01 15:59:52.4269 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-03-01 15:59:52.4279 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-03-01 15:59:52.4279 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-03-01 15:59:52.4292 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-03-01 15:59:52.4292 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll +2023-03-01 15:59:52.4323 Info Copied Microsoft.AspNetCore.DataProtection.dll +2023-03-01 15:59:52.4327 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-03-01 15:59:52.4327 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-03-01 15:59:52.4339 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-03-01 15:59:52.4349 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-03-01 15:59:52.4349 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll +2023-03-01 15:59:52.4373 Info Copied Microsoft.AspNetCore.Diagnostics.dll +2023-03-01 15:59:52.4377 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-03-01 15:59:52.4387 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-03-01 15:59:52.4387 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll +2023-03-01 15:59:52.4403 Info Copied Microsoft.AspNetCore.dll +2023-03-01 15:59:52.4403 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll +2023-03-01 15:59:52.4415 Info Copied Microsoft.AspNetCore.HostFiltering.dll +2023-03-01 15:59:52.4418 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-03-01 15:59:52.4429 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-03-01 15:59:52.4429 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll +2023-03-01 15:59:52.4452 Info Copied Microsoft.AspNetCore.Hosting.dll +2023-03-01 15:59:52.4452 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-03-01 15:59:52.4465 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-03-01 15:59:52.4468 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll +2023-03-01 15:59:52.4478 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll +2023-03-01 15:59:52.4478 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll +2023-03-01 15:59:52.4497 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll +2023-03-01 15:59:52.4497 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll +2023-03-01 15:59:52.4510 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll +2023-03-01 15:59:52.4510 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll +2023-03-01 15:59:52.4531 Info Copied Microsoft.AspNetCore.Http.Connections.dll +2023-03-01 15:59:52.4531 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll +2023-03-01 15:59:52.4554 Info Copied Microsoft.AspNetCore.Http.dll +2023-03-01 15:59:52.4557 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll +2023-03-01 15:59:52.4577 Info Copied Microsoft.AspNetCore.Http.Extensions.dll +2023-03-01 15:59:52.4577 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll +2023-03-01 15:59:52.4591 Info Copied Microsoft.AspNetCore.Http.Features.dll +2023-03-01 15:59:52.4591 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll +2023-03-01 15:59:52.4608 Info Copied Microsoft.AspNetCore.Http.Results.dll +2023-03-01 15:59:52.4608 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll +2023-03-01 15:59:52.4625 Info Copied Microsoft.AspNetCore.HttpLogging.dll +2023-03-01 15:59:52.4629 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll +2023-03-01 15:59:52.4639 Info Copied Microsoft.AspNetCore.HttpOverrides.dll +2023-03-01 15:59:52.4639 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll +2023-03-01 15:59:52.4653 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll +2023-03-01 15:59:52.4657 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll +2023-03-01 15:59:52.4672 Info Copied Microsoft.AspNetCore.Identity.dll +2023-03-01 15:59:52.4672 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll +2023-03-01 15:59:52.4685 Info Copied Microsoft.AspNetCore.JsonPatch.dll +2023-03-01 15:59:52.4689 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll +2023-03-01 15:59:52.4699 Info Copied Microsoft.AspNetCore.Localization.dll +2023-03-01 15:59:52.4699 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll +2023-03-01 15:59:52.4711 Info Copied Microsoft.AspNetCore.Localization.Routing.dll +2023-03-01 15:59:52.4711 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll +2023-03-01 15:59:52.4723 Info Copied Microsoft.AspNetCore.Metadata.dll +2023-03-01 15:59:52.4727 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-03-01 15:59:52.4745 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-03-01 15:59:52.4748 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-03-01 15:59:52.4763 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-03-01 15:59:52.4763 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll +2023-03-01 15:59:52.4840 Info Copied Microsoft.AspNetCore.Mvc.Core.dll +2023-03-01 15:59:52.4840 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll +2023-03-01 15:59:52.4854 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll +2023-03-01 15:59:52.4858 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-03-01 15:59:52.4871 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-03-01 15:59:52.4871 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll +2023-03-01 15:59:52.4883 Info Copied Microsoft.AspNetCore.Mvc.dll +2023-03-01 15:59:52.4883 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-03-01 15:59:52.4895 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-03-01 15:59:52.4899 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-03-01 15:59:52.4911 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-03-01 15:59:52.4911 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll +2023-03-01 15:59:52.4925 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll +2023-03-01 15:59:52.4928 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-03-01 15:59:52.4939 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-03-01 15:59:52.4939 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll +2023-03-01 15:59:52.4959 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll +2023-03-01 15:59:52.4959 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-03-01 15:59:52.4987 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-03-01 15:59:52.4987 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-03-01 15:59:52.5008 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-03-01 15:59:52.5008 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-03-01 15:59:52.5046 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-03-01 15:59:52.5050 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll +2023-03-01 15:59:52.5062 Info Copied Microsoft.AspNetCore.Razor.dll +2023-03-01 15:59:52.5062 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll +2023-03-01 15:59:52.5076 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll +2023-03-01 15:59:52.5079 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-03-01 15:59:52.5088 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-03-01 15:59:52.5088 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll +2023-03-01 15:59:52.5106 Info Copied Microsoft.AspNetCore.ResponseCaching.dll +2023-03-01 15:59:52.5109 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll +2023-03-01 15:59:52.7130 Info Copied Microsoft.AspNetCore.ResponseCompression.dll +2023-03-01 15:59:52.7137 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll +2023-03-01 15:59:52.7157 Info Copied Microsoft.AspNetCore.Rewrite.dll +2023-03-01 15:59:52.7157 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll +2023-03-01 15:59:52.7172 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll +2023-03-01 15:59:52.7172 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll +2023-03-01 15:59:52.7210 Info Copied Microsoft.AspNetCore.Routing.dll +2023-03-01 15:59:52.7210 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll +2023-03-01 15:59:52.7242 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll +2023-03-01 15:59:52.7242 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll +2023-03-01 15:59:52.7278 Info Copied Microsoft.AspNetCore.Server.IIS.dll +2023-03-01 15:59:52.7278 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll +2023-03-01 15:59:52.7293 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll +2023-03-01 15:59:52.7293 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-03-01 15:59:52.7952 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-03-01 15:59:52.7958 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll +2023-03-01 15:59:52.7968 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll +2023-03-01 15:59:52.7968 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-03-01 15:59:52.7988 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-03-01 15:59:52.7988 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-03-01 15:59:52.8004 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-03-01 15:59:52.8007 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll +2023-03-01 15:59:52.8018 Info Copied Microsoft.AspNetCore.Session.dll +2023-03-01 15:59:52.8018 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll +2023-03-01 15:59:52.8031 Info Copied Microsoft.AspNetCore.SignalR.Common.dll +2023-03-01 15:59:52.8031 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll +2023-03-01 15:59:52.8053 Info Copied Microsoft.AspNetCore.SignalR.Core.dll +2023-03-01 15:59:52.8053 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll +2023-03-01 15:59:52.8065 Info Copied Microsoft.AspNetCore.SignalR.dll +2023-03-01 15:59:52.8068 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-03-01 15:59:52.8079 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-03-01 15:59:52.8079 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll +2023-03-01 15:59:52.8094 Info Copied Microsoft.AspNetCore.StaticFiles.dll +2023-03-01 15:59:52.8097 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll +2023-03-01 15:59:52.8107 Info Copied Microsoft.AspNetCore.WebSockets.dll +2023-03-01 15:59:52.8107 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll +2023-03-01 15:59:52.8125 Info Copied Microsoft.AspNetCore.WebUtilities.dll +2023-03-01 15:59:52.8128 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll +2023-03-01 15:59:52.9296 Info Copied Microsoft.CSharp.dll +2023-03-01 15:59:52.9301 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll +2023-03-01 15:59:52.9312 Info Copied Microsoft.Extensions.Caching.Abstractions.dll +2023-03-01 15:59:52.9312 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll +2023-03-01 15:59:52.9325 Info Copied Microsoft.Extensions.Caching.Memory.dll +2023-03-01 15:59:52.9329 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll +2023-03-01 15:59:52.9338 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll +2023-03-01 15:59:52.9338 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll +2023-03-01 15:59:52.9351 Info Copied Microsoft.Extensions.Configuration.Binder.dll +2023-03-01 15:59:52.9351 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll +2023-03-01 15:59:52.9362 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll +2023-03-01 15:59:52.9362 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll +2023-03-01 15:59:52.9375 Info Copied Microsoft.Extensions.Configuration.dll +2023-03-01 15:59:52.9379 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-03-01 15:59:52.9387 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-03-01 15:59:52.9387 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll +2023-03-01 15:59:52.9399 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll +2023-03-01 15:59:52.9399 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll +2023-03-01 15:59:52.9410 Info Copied Microsoft.Extensions.Configuration.Ini.dll +2023-03-01 15:59:52.9410 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll +2023-03-01 15:59:52.9422 Info Copied Microsoft.Extensions.Configuration.Json.dll +2023-03-01 15:59:52.9422 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-03-01 15:59:52.9433 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-03-01 15:59:52.9433 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll +2023-03-01 15:59:52.9445 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll +2023-03-01 15:59:52.9448 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll +2023-03-01 15:59:52.9457 Info Copied Microsoft.Extensions.Configuration.Xml.dll +2023-03-01 15:59:52.9457 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-03-01 15:59:52.9471 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-03-01 15:59:52.9471 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll +2023-03-01 15:59:53.0212 Info Copied Microsoft.Extensions.DependencyInjection.dll +2023-03-01 15:59:53.0219 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-03-01 15:59:53.0230 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-03-01 15:59:53.0230 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-03-01 15:59:53.0245 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-03-01 15:59:53.0248 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll +2023-03-01 15:59:53.0257 Info Copied Microsoft.Extensions.Features.dll +2023-03-01 15:59:53.0257 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll +2023-03-01 15:59:53.0269 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll +2023-03-01 15:59:53.0269 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll +2023-03-01 15:59:53.0280 Info Copied Microsoft.Extensions.FileProviders.Composite.dll +2023-03-01 15:59:53.0280 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll +2023-03-01 15:59:53.0310 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll +2023-03-01 15:59:53.0310 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll +2023-03-01 15:59:53.0324 Info Copied Microsoft.Extensions.FileProviders.Physical.dll +2023-03-01 15:59:53.0327 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll +2023-03-01 15:59:53.0338 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll +2023-03-01 15:59:53.0338 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll +2023-03-01 15:59:53.0350 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll +2023-03-01 15:59:53.0350 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll +2023-03-01 15:59:53.0365 Info Copied Microsoft.Extensions.Hosting.dll +2023-03-01 15:59:53.0368 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll +2023-03-01 15:59:53.0381 Info Copied Microsoft.Extensions.Http.dll +2023-03-01 15:59:53.0381 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll +2023-03-01 15:59:53.0406 Info Copied Microsoft.Extensions.Identity.Core.dll +2023-03-01 15:59:53.0409 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll +2023-03-01 15:59:53.1419 Info Copied Microsoft.Extensions.Identity.Stores.dll +2023-03-01 15:59:53.1419 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll +2023-03-01 15:59:53.1435 Info Copied Microsoft.Extensions.Localization.Abstractions.dll +2023-03-01 15:59:53.1438 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll +2023-03-01 15:59:53.1448 Info Copied Microsoft.Extensions.Localization.dll +2023-03-01 15:59:53.1448 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll +2023-03-01 15:59:53.1465 Info Copied Microsoft.Extensions.Logging.Abstractions.dll +2023-03-01 15:59:53.1468 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll +2023-03-01 15:59:53.1479 Info Copied Microsoft.Extensions.Logging.Configuration.dll +2023-03-01 15:59:53.1479 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll +2023-03-01 15:59:53.1501 Info Copied Microsoft.Extensions.Logging.Console.dll +2023-03-01 15:59:53.1501 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll +2023-03-01 15:59:53.1513 Info Copied Microsoft.Extensions.Logging.Debug.dll +2023-03-01 15:59:53.1513 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll +2023-03-01 15:59:53.1529 Info Copied Microsoft.Extensions.Logging.dll +2023-03-01 15:59:53.1529 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll +2023-03-01 15:59:53.1542 Info Copied Microsoft.Extensions.Logging.EventLog.dll +2023-03-01 15:59:53.1542 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll +2023-03-01 15:59:53.1556 Info Copied Microsoft.Extensions.Logging.EventSource.dll +2023-03-01 15:59:53.1565 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll +2023-03-01 15:59:53.1574 Info Copied Microsoft.Extensions.Logging.TraceSource.dll +2023-03-01 15:59:53.1578 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll +2023-03-01 15:59:53.1589 Info Copied Microsoft.Extensions.ObjectPool.dll +2023-03-01 15:59:53.1589 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-03-01 15:59:53.1603 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-03-01 15:59:53.1607 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll +2023-03-01 15:59:53.1695 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll +2023-03-01 15:59:53.1701 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll +2023-03-01 15:59:53.1717 Info Copied Microsoft.Extensions.Options.dll +2023-03-01 15:59:53.1717 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll +2023-03-01 15:59:53.1734 Info Copied Microsoft.Extensions.Primitives.dll +2023-03-01 15:59:53.1778 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll +2023-03-01 15:59:53.1790 Info Copied Microsoft.Extensions.WebEncoders.dll +2023-03-01 15:59:53.1790 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll +2023-03-01 15:59:53.1869 Info Copied Microsoft.JSInterop.dll +2023-03-01 15:59:53.1869 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll +2023-03-01 15:59:53.1910 Info Copied Microsoft.Net.Http.Headers.dll +2023-03-01 15:59:53.1910 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll +2023-03-01 15:59:53.1972 Info Copied Microsoft.VisualBasic.Core.dll +2023-03-01 15:59:53.1972 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll +2023-03-01 15:59:53.1986 Info Copied Microsoft.VisualBasic.dll +2023-03-01 15:59:53.1990 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll +2023-03-01 15:59:53.2002 Info Copied Microsoft.Win32.Primitives.dll +2023-03-01 15:59:53.2002 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll +2023-03-01 15:59:53.2017 Info Copied Microsoft.Win32.Registry.dll +2023-03-01 15:59:53.2017 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll +2023-03-01 15:59:53.2060 Info Copied MimeMapping.dll +2023-03-01 15:59:53.2060 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll +2023-03-01 15:59:53.2073 Info Copied Mono.Posix.dll +2023-03-01 15:59:53.2077 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll +2023-03-01 15:59:53.2104 Info Copied Mono.Unix.dll +2023-03-01 15:59:53.2108 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll +2023-03-01 15:59:53.2288 Info Copied mscorlib.dll +2023-03-01 15:59:53.2288 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll +2023-03-01 15:59:53.2298 Info Copied netstandard.dll +2023-03-01 15:59:53.2298 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll +2023-03-01 15:59:53.2298 Info Copied Newtonsoft.Json.Bson.dll +2023-03-01 15:59:53.2308 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll +2023-03-01 15:59:53.2323 Info Copied Newtonsoft.Json.dll +2023-03-01 15:59:53.2323 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll +2023-03-01 15:59:53.2345 Info Copied NLog.dll +2023-03-01 15:59:53.2347 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll +2023-03-01 15:59:53.2347 Info Copied NLog.Extensions.Logging.dll +2023-03-01 15:59:53.2347 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll +2023-03-01 15:59:53.2359 Info Copied NLog.Web.AspNetCore.dll +2023-03-01 15:59:53.2359 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll +2023-03-01 15:59:53.2359 Info Copied Org.Mentalis.dll +2023-03-01 15:59:53.2367 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll +2023-03-01 15:59:53.2377 Info Copied Polly.dll +2023-03-01 15:59:53.2377 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/README.md to destination: /app/Jackett/README.md +2023-03-01 15:59:53.2377 Info Copied README.md +2023-03-01 15:59:53.2377 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll +2023-03-01 15:59:53.2390 Info Copied SocksWebProxy.dll +2023-03-01 15:59:53.2390 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll +2023-03-01 15:59:53.2390 Info Copied System.AppContext.dll +2023-03-01 15:59:53.2397 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll +2023-03-01 15:59:53.2397 Info Copied System.Buffers.dll +2023-03-01 15:59:53.2397 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll +2023-03-01 15:59:53.2412 Info Copied System.Collections.Concurrent.dll +2023-03-01 15:59:53.2412 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll +2023-03-01 15:59:53.2421 Info Copied System.Collections.dll +2023-03-01 15:59:53.2421 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll +2023-03-01 15:59:53.2439 Info Copied System.Collections.Immutable.dll +2023-03-01 15:59:53.2439 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll +2023-03-01 15:59:53.2447 Info Copied System.Collections.NonGeneric.dll +2023-03-01 15:59:53.2447 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll +2023-03-01 15:59:53.2447 Info Copied System.Collections.Specialized.dll +2023-03-01 15:59:53.2506 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll +2023-03-01 15:59:53.3534 Info Copied System.ComponentModel.Annotations.dll +2023-03-01 15:59:53.3539 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll +2023-03-01 15:59:53.3549 Info Copied System.ComponentModel.DataAnnotations.dll +2023-03-01 15:59:53.3549 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll +2023-03-01 15:59:53.3560 Info Copied System.ComponentModel.dll +2023-03-01 15:59:53.3560 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll +2023-03-01 15:59:53.3577 Info Copied System.ComponentModel.EventBasedAsync.dll +2023-03-01 15:59:53.3577 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll +2023-03-01 15:59:53.3591 Info Copied System.ComponentModel.Primitives.dll +2023-03-01 15:59:53.3591 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll +2023-03-01 15:59:53.3630 Info Copied System.ComponentModel.TypeConverter.dll +2023-03-01 15:59:53.3630 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll +2023-03-01 15:59:53.3641 Info Copied System.Configuration.dll +2023-03-01 15:59:53.3641 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll +2023-03-01 15:59:53.3680 Info Copied System.Console.dll +2023-03-01 15:59:53.3680 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll +2023-03-01 15:59:53.3691 Info Copied System.Core.dll +2023-03-01 15:59:53.3691 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll +2023-03-01 15:59:53.4240 Info Copied System.Data.Common.dll +2023-03-01 15:59:53.4240 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll +2023-03-01 15:59:53.4258 Info Copied System.Data.DataSetExtensions.dll +2023-03-01 15:59:53.4258 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll +2023-03-01 15:59:53.4269 Info Copied System.Data.dll +2023-03-01 15:59:53.4269 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll +2023-03-01 15:59:53.4281 Info Copied System.Diagnostics.Contracts.dll +2023-03-01 15:59:53.4281 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll +2023-03-01 15:59:53.4292 Info Copied System.Diagnostics.Debug.dll +2023-03-01 15:59:53.4292 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll +2023-03-01 15:59:53.4319 Info Copied System.Diagnostics.DiagnosticSource.dll +2023-03-01 15:59:53.4319 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll +2023-03-01 15:59:53.4333 Info Copied System.Diagnostics.EventLog.dll +2023-03-01 15:59:53.4333 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll +2023-03-01 15:59:53.4345 Info Copied System.Diagnostics.FileVersionInfo.dll +2023-03-01 15:59:53.4348 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll +2023-03-01 15:59:53.5125 Info Copied System.Diagnostics.Process.dll +2023-03-01 15:59:53.5131 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll +2023-03-01 15:59:53.5141 Info Copied System.Diagnostics.StackTrace.dll +2023-03-01 15:59:53.5141 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll +2023-03-01 15:59:53.5154 Info Copied System.Diagnostics.TextWriterTraceListener.dll +2023-03-01 15:59:53.5157 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll +2023-03-01 15:59:53.5157 Info Copied System.Diagnostics.Tools.dll +2023-03-01 15:59:53.5169 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll +2023-03-01 15:59:53.5181 Info Copied System.Diagnostics.TraceSource.dll +2023-03-01 15:59:53.5181 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll +2023-03-01 15:59:53.5194 Info Copied System.Diagnostics.Tracing.dll +2023-03-01 15:59:53.5197 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.dll to destination: /app/Jackett/System.dll +2023-03-01 15:59:53.5197 Info Copied System.dll +2023-03-01 15:59:53.5208 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll +2023-03-01 15:59:53.5217 Info Copied System.Drawing.dll +2023-03-01 15:59:53.5217 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll +2023-03-01 15:59:53.5232 Info Copied System.Drawing.Primitives.dll +2023-03-01 15:59:53.5232 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll +2023-03-01 15:59:53.5244 Info Copied System.Dynamic.Runtime.dll +2023-03-01 15:59:53.5247 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll +2023-03-01 15:59:53.5264 Info Copied System.Formats.Asn1.dll +2023-03-01 15:59:53.5268 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll +2023-03-01 15:59:53.5278 Info Copied System.Globalization.Calendars.dll +2023-03-01 15:59:53.5278 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll +2023-03-01 15:59:53.5288 Info Copied System.Globalization.dll +2023-03-01 15:59:53.5288 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll +2023-03-01 15:59:53.5298 Info Copied System.Globalization.Extensions.dll +2023-03-01 15:59:53.5298 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll +2023-03-01 15:59:53.5312 Info Copied System.IO.Compression.Brotli.dll +2023-03-01 15:59:53.5312 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll +2023-03-01 15:59:53.5333 Info Copied System.IO.Compression.dll +2023-03-01 15:59:53.5333 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll +2023-03-01 15:59:53.5344 Info Copied System.IO.Compression.FileSystem.dll +2023-03-01 15:59:53.5347 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll +2023-03-01 15:59:53.5359 Info Copied System.IO.Compression.ZipFile.dll +2023-03-01 15:59:53.5359 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll +2023-03-01 15:59:53.5369 Info Copied System.IO.dll +2023-03-01 15:59:53.5369 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll +2023-03-01 15:59:53.5383 Info Copied System.IO.FileSystem.AccessControl.dll +2023-03-01 15:59:53.5387 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll +2023-03-01 15:59:53.5387 Info Copied System.IO.FileSystem.dll +2023-03-01 15:59:53.5397 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll +2023-03-01 15:59:53.5409 Info Copied System.IO.FileSystem.DriveInfo.dll +2023-03-01 15:59:53.5409 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll +2023-03-01 15:59:53.5419 Info Copied System.IO.FileSystem.Primitives.dll +2023-03-01 15:59:53.5419 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll +2023-03-01 15:59:53.5435 Info Copied System.IO.FileSystem.Watcher.dll +2023-03-01 15:59:53.5438 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll +2023-03-01 15:59:53.5449 Info Copied System.IO.IsolatedStorage.dll +2023-03-01 15:59:53.5449 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll +2023-03-01 15:59:53.5462 Info Copied System.IO.MemoryMappedFiles.dll +2023-03-01 15:59:53.5462 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll +2023-03-01 15:59:53.5480 Info Copied System.IO.Pipelines.dll +2023-03-01 15:59:53.5480 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll +2023-03-01 15:59:53.5491 Info Copied System.IO.Pipes.AccessControl.dll +2023-03-01 15:59:53.5491 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll +2023-03-01 15:59:53.5505 Info Copied System.IO.Pipes.dll +2023-03-01 15:59:53.5508 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll +2023-03-01 15:59:53.5508 Info Copied System.IO.UnmanagedMemoryStream.dll +2023-03-01 15:59:53.5518 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll +2023-03-01 15:59:53.6619 Info Copied System.Linq.dll +2023-03-01 15:59:53.6619 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll +2023-03-01 15:59:53.6756 Info Copied System.Linq.Expressions.dll +2023-03-01 15:59:53.6760 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll +2023-03-01 15:59:53.6796 Info Copied System.Linq.Parallel.dll +2023-03-01 15:59:53.6800 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll +2023-03-01 15:59:53.7521 Info Copied System.Linq.Queryable.dll +2023-03-01 15:59:53.7521 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll +2023-03-01 15:59:53.7540 Info Copied System.Memory.dll +2023-03-01 15:59:53.7540 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll +2023-03-01 15:59:53.7550 Info Copied System.Net.dll +2023-03-01 15:59:53.7550 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll +2023-03-01 15:59:53.7613 Info Copied System.Net.Http.dll +2023-03-01 15:59:53.7620 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll +2023-03-01 15:59:53.7631 Info Copied System.Net.Http.Json.dll +2023-03-01 15:59:53.7631 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll +2023-03-01 15:59:53.7650 Info Copied System.Net.HttpListener.dll +2023-03-01 15:59:53.7650 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll +2023-03-01 15:59:53.7675 Info Copied System.Net.Mail.dll +2023-03-01 15:59:53.7678 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll +2023-03-01 15:59:53.7688 Info Copied System.Net.NameResolution.dll +2023-03-01 15:59:53.7688 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll +2023-03-01 15:59:53.7702 Info Copied System.Net.NetworkInformation.dll +2023-03-01 15:59:53.7702 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll +2023-03-01 15:59:53.7714 Info Copied System.Net.Ping.dll +2023-03-01 15:59:53.7717 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll +2023-03-01 15:59:55.1493 Info Copied System.Net.Primitives.dll +2023-03-01 15:59:55.1499 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll +2023-03-01 15:59:55.1524 Info Copied System.Net.Quic.dll +2023-03-01 15:59:55.1527 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll +2023-03-01 15:59:55.1554 Info Copied System.Net.Requests.dll +2023-03-01 15:59:55.1558 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll +2023-03-01 15:59:55.1591 Info Copied System.Net.Security.dll +2023-03-01 15:59:55.1591 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll +2023-03-01 15:59:55.1606 Info Copied System.Net.ServicePoint.dll +2023-03-01 15:59:55.1610 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll +2023-03-01 15:59:55.1639 Info Copied System.Net.Sockets.dll +2023-03-01 15:59:55.1639 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll +2023-03-01 15:59:55.1660 Info Copied System.Net.WebClient.dll +2023-03-01 15:59:55.1660 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll +2023-03-01 15:59:55.1676 Info Copied System.Net.WebHeaderCollection.dll +2023-03-01 15:59:55.1679 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll +2023-03-01 15:59:55.1791 Info Copied System.Net.WebProxy.dll +2023-03-01 15:59:55.1791 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll +2023-03-01 15:59:55.1811 Info Copied System.Net.WebSockets.Client.dll +2023-03-01 15:59:55.1811 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll +2023-03-01 15:59:55.1835 Info Copied System.Net.WebSockets.dll +2023-03-01 15:59:55.1840 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll +2023-03-01 15:59:55.1852 Info Copied System.Numerics.dll +2023-03-01 15:59:55.1852 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll +2023-03-01 15:59:55.1864 Info Copied System.Numerics.Vectors.dll +2023-03-01 15:59:55.1868 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll +2023-03-01 15:59:55.1881 Info Copied System.ObjectModel.dll +2023-03-01 15:59:55.1881 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll +2023-03-01 15:59:55.2257 Info Copied System.Private.CoreLib.dll +2023-03-01 15:59:55.2257 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll +2023-03-01 15:59:55.2368 Info Copied System.Private.DataContractSerialization.dll +2023-03-01 15:59:55.2371 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll +2023-03-01 15:59:55.2394 Info Copied System.Private.Uri.dll +2023-03-01 15:59:55.2399 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll +2023-03-01 15:59:55.3955 Info Copied System.Private.Xml.dll +2023-03-01 15:59:55.3961 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll +2023-03-01 15:59:55.3990 Info Copied System.Private.Xml.Linq.dll +2023-03-01 15:59:55.3990 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll +2023-03-01 15:59:55.4006 Info Copied System.Reflection.DispatchProxy.dll +2023-03-01 15:59:55.4010 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll +2023-03-01 15:59:55.4020 Info Copied System.Reflection.dll +2023-03-01 15:59:55.4020 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll +2023-03-01 15:59:55.4033 Info Copied System.Reflection.Emit.dll +2023-03-01 15:59:55.4033 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll +2023-03-01 15:59:55.4046 Info Copied System.Reflection.Emit.ILGeneration.dll +2023-03-01 15:59:55.4049 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll +2023-03-01 15:59:55.4059 Info Copied System.Reflection.Emit.Lightweight.dll +2023-03-01 15:59:55.4059 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll +2023-03-01 15:59:55.4072 Info Copied System.Reflection.Extensions.dll +2023-03-01 15:59:55.4072 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll +2023-03-01 15:59:55.4790 Info Copied System.Reflection.Metadata.dll +2023-03-01 15:59:55.4790 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll +2023-03-01 15:59:55.4806 Info Copied System.Reflection.Primitives.dll +2023-03-01 15:59:55.4810 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll +2023-03-01 15:59:55.4820 Info Copied System.Reflection.TypeExtensions.dll +2023-03-01 15:59:55.4820 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll +2023-03-01 15:59:55.4832 Info Copied System.Resources.Reader.dll +2023-03-01 15:59:55.4832 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll +2023-03-01 15:59:55.4845 Info Copied System.Resources.ResourceManager.dll +2023-03-01 15:59:55.4849 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll +2023-03-01 15:59:55.4859 Info Copied System.Resources.Writer.dll +2023-03-01 15:59:55.4859 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll +2023-03-01 15:59:55.4871 Info Copied System.Runtime.CompilerServices.Unsafe.dll +2023-03-01 15:59:55.4871 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll +2023-03-01 15:59:55.4884 Info Copied System.Runtime.CompilerServices.VisualC.dll +2023-03-01 15:59:55.4887 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll +2023-03-01 15:59:55.4897 Info Copied System.Runtime.dll +2023-03-01 15:59:55.4897 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll +2023-03-01 15:59:55.4910 Info Copied System.Runtime.Extensions.dll +2023-03-01 15:59:55.4910 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll +2023-03-01 15:59:55.4922 Info Copied System.Runtime.Handles.dll +2023-03-01 15:59:55.4922 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll +2023-03-01 15:59:55.4935 Info Copied System.Runtime.InteropServices.dll +2023-03-01 15:59:55.4939 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll +2023-03-01 15:59:55.4949 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll +2023-03-01 15:59:55.4949 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll +2023-03-01 15:59:55.4961 Info Copied System.Runtime.Intrinsics.dll +2023-03-01 15:59:55.4961 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll +2023-03-01 15:59:55.5104 Info Copied System.Runtime.Loader.dll +2023-03-01 15:59:55.5109 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll +2023-03-01 15:59:55.5127 Info Copied System.Runtime.Numerics.dll +2023-03-01 15:59:55.5127 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll +2023-03-01 15:59:55.5140 Info Copied System.Runtime.Serialization.dll +2023-03-01 15:59:55.5140 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll +2023-03-01 15:59:55.5168 Info Copied System.Runtime.Serialization.Formatters.dll +2023-03-01 15:59:55.5168 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll +2023-03-01 15:59:55.5181 Info Copied System.Runtime.Serialization.Json.dll +2023-03-01 15:59:55.5181 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll +2023-03-01 15:59:55.5195 Info Copied System.Runtime.Serialization.Primitives.dll +2023-03-01 15:59:55.5199 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll +2023-03-01 15:59:55.5209 Info Copied System.Runtime.Serialization.Xml.dll +2023-03-01 15:59:55.5209 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll +2023-03-01 15:59:55.5223 Info Copied System.Security.AccessControl.dll +2023-03-01 15:59:55.5227 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll +2023-03-01 15:59:55.5250 Info Copied System.Security.Claims.dll +2023-03-01 15:59:55.5250 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll +2023-03-01 15:59:55.5292 Info Copied System.Security.Cryptography.Algorithms.dll +2023-03-01 15:59:55.5292 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll +2023-03-01 15:59:55.5425 Info Copied System.Security.Cryptography.Cng.dll +2023-03-01 15:59:55.5430 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll +2023-03-01 15:59:55.5445 Info Copied System.Security.Cryptography.Csp.dll +2023-03-01 15:59:55.5448 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll +2023-03-01 15:59:55.5463 Info Copied System.Security.Cryptography.Encoding.dll +2023-03-01 15:59:55.5463 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll +2023-03-01 15:59:55.5485 Info Copied System.Security.Cryptography.OpenSsl.dll +2023-03-01 15:59:55.5488 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll +2023-03-01 15:59:55.5524 Info Copied System.Security.Cryptography.Pkcs.dll +2023-03-01 15:59:55.5528 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll +2023-03-01 15:59:55.5543 Info Copied System.Security.Cryptography.Primitives.dll +2023-03-01 15:59:55.5547 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll +2023-03-01 15:59:55.5557 Info Copied System.Security.Cryptography.ProtectedData.dll +2023-03-01 15:59:55.5557 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll +2023-03-01 15:59:55.5596 Info Copied System.Security.Cryptography.X509Certificates.dll +2023-03-01 15:59:55.5599 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll +2023-03-01 15:59:55.5838 Info Copied System.Security.Cryptography.Xml.dll +2023-03-01 15:59:55.5838 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll +2023-03-01 15:59:55.5852 Info Copied System.Security.dll +2023-03-01 15:59:55.5852 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll +2023-03-01 15:59:55.5866 Info Copied System.Security.Principal.dll +2023-03-01 15:59:55.5870 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll +2023-03-01 15:59:55.5880 Info Copied System.Security.Principal.Windows.dll +2023-03-01 15:59:55.5880 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll +2023-03-01 15:59:55.5893 Info Copied System.Security.SecureString.dll +2023-03-01 15:59:55.5893 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll +2023-03-01 15:59:55.5907 Info Copied System.ServiceModel.Web.dll +2023-03-01 15:59:55.5907 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll +2023-03-01 15:59:55.5920 Info Copied System.ServiceProcess.dll +2023-03-01 15:59:55.5920 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll +2023-03-01 15:59:55.5933 Info Copied System.ServiceProcess.ServiceController.dll +2023-03-01 15:59:55.5937 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll +2023-03-01 15:59:55.5979 Info Copied System.Text.Encoding.CodePages.dll +2023-03-01 15:59:55.5979 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll +2023-03-01 15:59:55.5992 Info Copied System.Text.Encoding.dll +2023-03-01 15:59:55.5992 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll +2023-03-01 15:59:55.6004 Info Copied System.Text.Encoding.Extensions.dll +2023-03-01 15:59:55.6007 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll +2023-03-01 15:59:55.6023 Info Copied System.Text.Encodings.Web.dll +2023-03-01 15:59:55.6027 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll +2023-03-01 15:59:55.6083 Info Copied System.Text.Json.dll +2023-03-01 15:59:55.6087 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll +2023-03-01 15:59:55.6117 Info Copied System.Text.RegularExpressions.dll +2023-03-01 15:59:55.6117 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll +2023-03-01 15:59:55.6135 Info Copied System.Threading.Channels.dll +2023-03-01 15:59:55.6139 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll +2023-03-01 15:59:55.6152 Info Copied System.Threading.dll +2023-03-01 15:59:55.6152 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll +2023-03-01 15:59:55.6165 Info Copied System.Threading.Overlapped.dll +2023-03-01 15:59:55.6168 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll +2023-03-01 15:59:55.6195 Info Copied System.Threading.Tasks.Dataflow.dll +2023-03-01 15:59:55.6199 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll +2023-03-01 15:59:55.6208 Info Copied System.Threading.Tasks.dll +2023-03-01 15:59:55.6208 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll +2023-03-01 15:59:55.6221 Info Copied System.Threading.Tasks.Extensions.dll +2023-03-01 15:59:55.6221 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll +2023-03-01 15:59:55.6238 Info Copied System.Threading.Tasks.Parallel.dll +2023-03-01 15:59:55.6238 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll +2023-03-01 15:59:55.6251 Info Copied System.Threading.Thread.dll +2023-03-01 15:59:55.6251 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll +2023-03-01 15:59:55.6263 Info Copied System.Threading.ThreadPool.dll +2023-03-01 15:59:55.6267 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll +2023-03-01 15:59:55.6281 Info Copied System.Threading.Timer.dll +2023-03-01 15:59:55.6281 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll +2023-03-01 15:59:55.6294 Info Copied System.Transactions.dll +2023-03-01 15:59:55.6298 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll +2023-03-01 15:59:55.6322 Info Copied System.Transactions.Local.dll +2023-03-01 15:59:55.6322 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll +2023-03-01 15:59:55.6335 Info Copied System.ValueTuple.dll +2023-03-01 15:59:55.6338 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll +2023-03-01 15:59:55.6348 Info Copied System.Web.dll +2023-03-01 15:59:55.6348 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll +2023-03-01 15:59:55.6361 Info Copied System.Web.HttpUtility.dll +2023-03-01 15:59:55.6361 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll +2023-03-01 15:59:55.6374 Info Copied System.Windows.dll +2023-03-01 15:59:55.6378 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll +2023-03-01 15:59:55.6735 Info Copied System.Xml.dll +2023-03-01 15:59:55.6740 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll +2023-03-01 15:59:55.6750 Info Copied System.Xml.Linq.dll +2023-03-01 15:59:55.6750 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll +2023-03-01 15:59:55.6764 Info Copied System.Xml.ReaderWriter.dll +2023-03-01 15:59:55.6767 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll +2023-03-01 15:59:55.6777 Info Copied System.Xml.Serialization.dll +2023-03-01 15:59:55.6777 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll +2023-03-01 15:59:55.6790 Info Copied System.Xml.XDocument.dll +2023-03-01 15:59:55.6790 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll +2023-03-01 15:59:55.6803 Info Copied System.Xml.XmlDocument.dll +2023-03-01 15:59:55.6803 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll +2023-03-01 15:59:55.6816 Info Copied System.Xml.XmlSerializer.dll +2023-03-01 15:59:55.6819 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll +2023-03-01 15:59:55.6829 Info Copied System.Xml.XPath.dll +2023-03-01 15:59:55.6829 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll +2023-03-01 15:59:55.6842 Info Copied System.Xml.XPath.XDocument.dll +2023-03-01 15:59:55.6842 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll +2023-03-01 15:59:55.6855 Info Copied WindowsBase.dll +2023-03-01 15:59:55.6859 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll +2023-03-01 15:59:55.6879 Info Copied YamlDotNet.dll +2023-03-01 15:59:55.6879 Info File copying complete +2023-03-01 15:59:55.7248 Info Killing process 134 +2023-03-01 15:59:58.8028 Info Process 134 didn't exit within 2 seconds after a SIGTERM +2023-03-10 17:56:41.1040 Info Jackett Updater v0.20.3579 +2023-03-10 17:56:41.2478 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "133" "--NoRestart" +2023-03-10 17:56:41.2511 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-10 17:56:41.4415 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb +2023-03-10 17:56:41.4421 Info Deleted /app/Jackett/DateTimeRoutines.pdb +2023-03-10 17:56:41.4421 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb +2023-03-10 17:56:41.4421 Info Deleted /app/Jackett/Jackett.Common.pdb +2023-03-10 17:56:41.4427 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb +2023-03-10 17:56:41.4427 Info Deleted /app/Jackett/JackettUpdater.pdb +2023-03-10 17:56:41.4427 Info Attempting to remove: /app/Jackett/jackett.pdb +2023-03-10 17:56:41.4427 Info Deleted /app/Jackett/jackett.pdb +2023-03-10 17:56:41.4427 Info Attempting to remove: /app/Jackett/jackett +2023-03-10 17:56:41.4439 Info Deleted /app/Jackett/jackett +2023-03-10 17:56:41.4439 Info Finding files in: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/ +2023-03-10 17:56:41.4490 Info 891 update files found +2023-03-10 17:56:41.4501 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll +2023-03-10 17:56:41.4533 Info Copied AngleSharp.dll +2023-03-10 17:56:41.4533 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll +2023-03-10 17:56:41.4533 Info Copied AngleSharp.Xml.dll +2023-03-10 17:56:41.4533 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll +2023-03-10 17:56:41.4555 Info Copied Autofac.dll +2023-03-10 17:56:41.4557 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll +2023-03-10 17:56:41.4557 Info Copied Autofac.Extensions.DependencyInjection.dll +2023-03-10 17:56:41.4557 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll +2023-03-10 17:56:41.4575 Info Copied AutoMapper.dll +2023-03-10 17:56:41.4577 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll +2023-03-10 17:56:41.4577 Info Copied BencodeNET.dll +2023-03-10 17:56:41.4577 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll +2023-03-10 17:56:41.4595 Info Copied CommandLine.dll +2023-03-10 17:56:41.4597 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css +2023-03-10 17:56:41.4597 Info Copied animate.css +2023-03-10 17:56:41.4597 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png +2023-03-10 17:56:41.4610 Info Copied apple-touch-icon.png +2023-03-10 17:56:41.4610 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png +2023-03-10 17:56:41.4617 Info Copied binding_dark.png +2023-03-10 17:56:41.4617 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css +2023-03-10 17:56:41.4628 Info Copied bootstrap.min.css +2023-03-10 17:56:41.4628 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js +2023-03-10 17:56:41.4636 Info Copied bootstrap.min.js +2023-03-10 17:56:41.4636 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js +2023-03-10 17:56:41.4636 Info Copied common.js +2023-03-10 17:56:41.4636 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css +2023-03-10 17:56:41.4650 Info Copied bootstrap-multiselect.css +2023-03-10 17:56:41.4650 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css +2023-03-10 17:56:41.4657 Info Copied font-awesome.min.css +2023-03-10 17:56:41.4657 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css +2023-03-10 17:56:41.4657 Info Copied jquery.dataTables.min.css +2023-03-10 17:56:41.4657 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css +2023-03-10 17:56:41.4671 Info Copied tagify.css +2023-03-10 17:56:41.4671 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css +2023-03-10 17:56:41.4679 Info Copied custom_mobile.css +2023-03-10 17:56:41.4679 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css +2023-03-10 17:56:41.4679 Info Copied custom.css +2023-03-10 17:56:41.4688 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js +2023-03-10 17:56:41.4688 Info Copied custom.js +2023-03-10 17:56:41.4697 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico +2023-03-10 17:56:41.4697 Info Copied favicon.ico +2023-03-10 17:56:41.4707 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot +2023-03-10 17:56:41.4707 Info Copied fontawesome-webfont.eot +2023-03-10 17:56:41.4707 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg +2023-03-10 17:56:41.4728 Info Copied fontawesome-webfont.svg +2023-03-10 17:56:41.4728 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf +2023-03-10 17:56:41.4738 Info Copied fontawesome-webfont.ttf +2023-03-10 17:56:41.4738 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff +2023-03-10 17:56:41.4748 Info Copied fontawesome-webfont.woff +2023-03-10 17:56:41.4748 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 +2023-03-10 17:56:41.4756 Info Copied fontawesome-webfont.woff2 +2023-03-10 17:56:41.4756 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf +2023-03-10 17:56:41.4756 Info Copied FontAwesome.otf +2023-03-10 17:56:41.4768 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot +2023-03-10 17:56:41.4768 Info Copied glyphicons-halflings-regular.eot +2023-03-10 17:56:41.4776 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg +2023-03-10 17:56:41.4776 Info Copied glyphicons-halflings-regular.svg +2023-03-10 17:56:41.4787 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf +2023-03-10 17:56:41.4787 Info Copied glyphicons-halflings-regular.ttf +2023-03-10 17:56:41.4787 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff +2023-03-10 17:56:41.4801 Info Copied glyphicons-halflings-regular.woff +2023-03-10 17:56:41.4801 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 +2023-03-10 17:56:41.4809 Info Copied glyphicons-halflings-regular.woff2 +2023-03-10 17:56:41.4809 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png +2023-03-10 17:56:41.4809 Info Copied sort_asc_disabled.png +2023-03-10 17:56:41.4818 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png +2023-03-10 17:56:41.4818 Info Copied sort_asc.png +2023-03-10 17:56:41.4818 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png +2023-03-10 17:56:41.4831 Info Copied sort_both.png +2023-03-10 17:56:41.4831 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png +2023-03-10 17:56:41.4839 Info Copied sort_desc_disabled.png +2023-03-10 17:56:41.4839 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png +2023-03-10 17:56:41.4839 Info Copied sort_desc.png +2023-03-10 17:56:41.4848 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html +2023-03-10 17:56:41.4848 Info Copied index.html +2023-03-10 17:56:41.4857 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png +2023-03-10 17:56:41.4857 Info Copied jacket_medium.png +2023-03-10 17:56:41.4857 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js +2023-03-10 17:56:41.4870 Info Copied api.js +2023-03-10 17:56:41.4870 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js +2023-03-10 17:56:41.4878 Info Copied bootstrap-multiselect.js +2023-03-10 17:56:41.4878 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js +2023-03-10 17:56:41.4878 Info Copied bootstrap-notify.js +2023-03-10 17:56:41.4888 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js +2023-03-10 17:56:41.4888 Info Copied filesize.min.js +2023-03-10 17:56:41.4888 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js +2023-03-10 17:56:41.4902 Info Copied handlebars.min.js +2023-03-10 17:56:41.4902 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js +2023-03-10 17:56:41.4910 Info Copied handlebarsextend.js +2023-03-10 17:56:41.4910 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js +2023-03-10 17:56:41.4917 Info Copied handlebarsmoment.js +2023-03-10 17:56:41.4917 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js +2023-03-10 17:56:41.4917 Info Copied jquery.dataTables.min.js +2023-03-10 17:56:41.4928 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js +2023-03-10 17:56:41.4928 Info Copied jquery.min.js +2023-03-10 17:56:41.4937 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js +2023-03-10 17:56:41.4937 Info Copied jQuery.tagify.min.js +2023-03-10 17:56:41.4937 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js +2023-03-10 17:56:41.4952 Info Copied moment.min.js +2023-03-10 17:56:41.4952 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js +2023-03-10 17:56:41.4959 Info Copied tagify.min.js +2023-03-10 17:56:41.4959 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html +2023-03-10 17:56:41.4959 Info Copied login.html +2023-03-10 17:56:41.4968 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/createdump to destination: /app/Jackett/createdump +2023-03-10 17:56:41.4968 Info Copied createdump +2023-03-10 17:56:41.4977 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll +2023-03-10 17:56:41.4977 Info Copied DateTimeRoutines.dll +2023-03-10 17:56:41.4977 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb +2023-03-10 17:56:41.4990 Info Copied DateTimeRoutines.pdb +2023-03-10 17:56:41.4990 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml +2023-03-10 17:56:41.4997 Info Copied 0daykiev.yml +2023-03-10 17:56:41.4997 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml +2023-03-10 17:56:41.4997 Info Copied 0magnet.yml +2023-03-10 17:56:41.4997 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml +2023-03-10 17:56:41.5011 Info Copied 1337x.yml +2023-03-10 17:56:41.5011 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml +2023-03-10 17:56:41.5018 Info Copied 1ptbar.yml +2023-03-10 17:56:41.5018 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml +2023-03-10 17:56:41.5018 Info Copied 2fast4you.yml +2023-03-10 17:56:41.5028 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml +2023-03-10 17:56:41.5028 Info Copied 2xfree.yml +2023-03-10 17:56:41.5028 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml +2023-03-10 17:56:41.5040 Info Copied 3changtrai.yml +2023-03-10 17:56:41.5040 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml +2023-03-10 17:56:41.5047 Info Copied 3dtorrents.yml +2023-03-10 17:56:41.5047 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml +2023-03-10 17:56:41.5047 Info Copied 4thd.yml +2023-03-10 17:56:41.5057 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml +2023-03-10 17:56:41.5069 Info Copied 52pt.yml +2023-03-10 17:56:41.5080 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml +2023-03-10 17:56:41.5086 Info Copied abnormal.yml +2023-03-10 17:56:41.5086 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml +2023-03-10 17:56:41.5086 Info Copied abtorrents.yml +2023-03-10 17:56:41.5086 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml +2023-03-10 17:56:41.5101 Info Copied acervos-api.yml +2023-03-10 17:56:41.5101 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml +2023-03-10 17:56:41.5108 Info Copied acgrip.yml +2023-03-10 17:56:41.5108 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml +2023-03-10 17:56:41.5108 Info Copied acgsou.yml +2023-03-10 17:56:41.5117 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml +2023-03-10 17:56:41.5117 Info Copied acidlounge.yml +2023-03-10 17:56:41.5117 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml +2023-03-10 17:56:41.5129 Info Copied acrossthetasman.yml +2023-03-10 17:56:41.5129 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml +2023-03-10 17:56:41.5137 Info Copied aftershock.yml +2023-03-10 17:56:41.5137 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml +2023-03-10 17:56:41.5137 Info Copied aidoruonline.yml +2023-03-10 17:56:41.5137 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml +2023-03-10 17:56:41.5152 Info Copied aither-api.yml +2023-03-10 17:56:41.5152 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml +2023-03-10 17:56:41.5160 Info Copied amigosshare.yml +2023-03-10 17:56:41.5160 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml +2023-03-10 17:56:41.5167 Info Copied anilibria.yml +2023-03-10 17:56:41.5167 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml +2023-03-10 17:56:41.5167 Info Copied anime-free.yml +2023-03-10 17:56:41.5167 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml +2023-03-10 17:56:41.5181 Info Copied animelayer.yml +2023-03-10 17:56:41.5181 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml +2023-03-10 17:56:41.5189 Info Copied animetracker.yml +2023-03-10 17:56:41.5189 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml +2023-03-10 17:56:41.5197 Info Copied animeworld-api.yml +2023-03-10 17:56:41.5197 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml +2023-03-10 17:56:41.5197 Info Copied anirena.yml +2023-03-10 17:56:41.5197 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml +2023-03-10 17:56:41.5210 Info Copied anisource.yml +2023-03-10 17:56:41.5210 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml +2023-03-10 17:56:41.5218 Info Copied anthelion-api.yml +2023-03-10 17:56:41.5218 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml +2023-03-10 17:56:41.5226 Info Copied arabafenice.yml +2023-03-10 17:56:41.5226 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml +2023-03-10 17:56:41.5226 Info Copied arabp2p.yml +2023-03-10 17:56:41.5226 Info Attempting to copy arabtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/arabtorrents.yml to destination: /app/Jackett/Definitions/arabtorrents.yml +2023-03-10 17:56:41.5241 Info Copied arabtorrents.yml +2023-03-10 17:56:41.5241 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml +2023-03-10 17:56:41.5249 Info Copied arenabg.yml +2023-03-10 17:56:41.5249 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml +2023-03-10 17:56:41.5249 Info Copied asiancinema.yml +2023-03-10 17:56:41.5258 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml +2023-03-10 17:56:41.5258 Info Copied asiandvdclub.yml +2023-03-10 17:56:41.5258 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml +2023-03-10 17:56:41.5270 Info Copied audiences.yml +2023-03-10 17:56:41.5270 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml +2023-03-10 17:56:41.5279 Info Copied audionews.yml +2023-03-10 17:56:41.5279 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml +2023-03-10 17:56:41.5279 Info Copied aussierules.yml +2023-03-10 17:56:41.5288 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml +2023-03-10 17:56:41.5288 Info Copied backups.yml +2023-03-10 17:56:41.5288 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml +2023-03-10 17:56:41.5302 Info Copied badasstorrents.yml +2023-03-10 17:56:41.5302 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml +2023-03-10 17:56:41.5309 Info Copied bangumi-moe.yml +2023-03-10 17:56:41.5309 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml +2023-03-10 17:56:41.5317 Info Copied beitai.yml +2023-03-10 17:56:41.5317 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml +2023-03-10 17:56:41.5317 Info Copied bestcore.yml +2023-03-10 17:56:41.5317 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml +2023-03-10 17:56:41.5331 Info Copied beyond-hd.yml +2023-03-10 17:56:41.5331 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml +2023-03-10 17:56:41.5339 Info Copied bibliotik.yml +2023-03-10 17:56:41.5339 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml +2023-03-10 17:56:41.5347 Info Copied bigfangroup.yml +2023-03-10 17:56:41.5347 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml +2023-03-10 17:56:41.5347 Info Copied bitbazis.yml +2023-03-10 17:56:41.5347 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml +2023-03-10 17:56:41.5361 Info Copied bitded.yml +2023-03-10 17:56:41.5361 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml +2023-03-10 17:56:41.5369 Info Copied bithorlo.yml +2023-03-10 17:56:41.5369 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml +2023-03-10 17:56:41.5377 Info Copied bithumen.yml +2023-03-10 17:56:41.5377 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml +2023-03-10 17:56:41.5377 Info Copied bitnova.yml +2023-03-10 17:56:41.5388 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml +2023-03-10 17:56:41.5388 Info Copied bitofvalor.yml +2023-03-10 17:56:41.5388 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml +2023-03-10 17:56:41.5401 Info Copied bitru.yml +2023-03-10 17:56:41.5401 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml +2023-03-10 17:56:41.5409 Info Copied bitsearch.yml +2023-03-10 17:56:41.5409 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml +2023-03-10 17:56:41.5409 Info Copied bitsexy.yml +2023-03-10 17:56:41.5417 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml +2023-03-10 17:56:41.5417 Info Copied bitspyder.yml +2023-03-10 17:56:41.5417 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml +2023-03-10 17:56:41.5430 Info Copied Bittorrentfiles.yml +2023-03-10 17:56:41.5430 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml +2023-03-10 17:56:41.5438 Info Copied bitturk.yml +2023-03-10 17:56:41.5438 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml +2023-03-10 17:56:41.5438 Info Copied bluebird.yml +2023-03-10 17:56:41.5447 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml +2023-03-10 17:56:41.5447 Info Copied blutopia-api.yml +2023-03-10 17:56:41.5447 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml +2023-03-10 17:56:41.5459 Info Copied booktracker.yml +2023-03-10 17:56:41.5459 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml +2023-03-10 17:56:41.5467 Info Copied bootytape.yml +2023-03-10 17:56:41.5467 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml +2023-03-10 17:56:41.5467 Info Copied borgzelle.yml +2023-03-10 17:56:41.5467 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml +2023-03-10 17:56:41.5481 Info Copied boxingtorrents.yml +2023-03-10 17:56:41.5481 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml +2023-03-10 17:56:41.5489 Info Copied broadcity.yml +2023-03-10 17:56:41.5489 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml +2023-03-10 17:56:41.5497 Info Copied brsociety-api.yml +2023-03-10 17:56:41.5497 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml +2023-03-10 17:56:41.5497 Info Copied bt4g.yml +2023-03-10 17:56:41.5497 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml +2023-03-10 17:56:41.5511 Info Copied btdigg.yml +2023-03-10 17:56:41.5511 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml +2023-03-10 17:56:41.5519 Info Copied btetree.yml +2023-03-10 17:56:41.5519 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml +2023-03-10 17:56:41.5519 Info Copied btmet.yml +2023-03-10 17:56:41.5528 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml +2023-03-10 17:56:41.5528 Info Copied btnext.yml +2023-03-10 17:56:41.5528 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml +2023-03-10 17:56:41.5541 Info Copied btschool.yml +2023-03-10 17:56:41.5541 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml +2023-03-10 17:56:41.5548 Info Copied btsow.yml +2023-03-10 17:56:41.5548 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml +2023-03-10 17:56:41.5548 Info Copied bulltorrent.yml +2023-03-10 17:56:41.5557 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml +2023-03-10 17:56:41.5557 Info Copied bwtorrents.yml +2023-03-10 17:56:41.5557 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml +2023-03-10 17:56:41.5571 Info Copied byrbt.yml +2023-03-10 17:56:41.5571 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml +2023-03-10 17:56:41.5578 Info Copied byrutor.yml +2023-03-10 17:56:41.5578 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml +2023-03-10 17:56:41.5578 Info Copied carpathians.yml +2023-03-10 17:56:41.5587 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml +2023-03-10 17:56:41.5587 Info Copied carphunter.yml +2023-03-10 17:56:41.5587 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml +2023-03-10 17:56:41.5600 Info Copied carpt.yml +2023-03-10 17:56:41.5689 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml +2023-03-10 17:56:41.5689 Info Copied cartoonchaos.yml +2023-03-10 17:56:41.5697 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml +2023-03-10 17:56:41.5697 Info Copied cathoderaytube.yml +2023-03-10 17:56:41.5697 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml +2023-03-10 17:56:41.5709 Info Copied catorrent.yml +2023-03-10 17:56:41.5709 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml +2023-03-10 17:56:41.5717 Info Copied ccfbits.yml +2023-03-10 17:56:41.5717 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml +2023-03-10 17:56:41.5727 Info Copied ceskeforum.yml +2023-03-10 17:56:41.5727 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml +2023-03-10 17:56:41.5727 Info Copied chdbits.yml +2023-03-10 17:56:41.5737 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml +2023-03-10 17:56:41.5737 Info Copied chilebt.yml +2023-03-10 17:56:41.5737 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml +2023-03-10 17:56:41.5749 Info Copied cinemageddon.yml +2023-03-10 17:56:41.5749 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml +2023-03-10 17:56:41.5756 Info Copied cinemamovies.yml +2023-03-10 17:56:41.5756 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml +2023-03-10 17:56:41.5756 Info Copied cinematik.yml +2023-03-10 17:56:41.5756 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml +2023-03-10 17:56:41.5770 Info Copied classix.yml +2023-03-10 17:56:41.5770 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml +2023-03-10 17:56:41.5776 Info Copied coastalcrew.yml +2023-03-10 17:56:41.5776 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml +2023-03-10 17:56:41.5776 Info Copied comicat.yml +2023-03-10 17:56:41.5776 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml +2023-03-10 17:56:41.5790 Info Copied concen.yml +2023-03-10 17:56:41.5790 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml +2023-03-10 17:56:41.5798 Info Copied concertos.yml +2023-03-10 17:56:41.5798 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml +2023-03-10 17:56:41.5798 Info Copied cpabien.yml +2023-03-10 17:56:41.5808 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml +2023-03-10 17:56:41.5808 Info Copied cpasbienclone.yml +2023-03-10 17:56:41.5808 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml +2023-03-10 17:56:41.5819 Info Copied cpasbiensi.yml +2023-03-10 17:56:41.5819 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml +2023-03-10 17:56:41.5819 Info Copied crackingpatching.yml +2023-03-10 17:56:41.5828 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml +2023-03-10 17:56:41.5828 Info Copied crazyhd.yml +2023-03-10 17:56:41.5828 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml +2023-03-10 17:56:41.5838 Info Copied crazyspirits.yml +2023-03-10 17:56:41.5838 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml +2023-03-10 17:56:41.5847 Info Copied crnaberza.yml +2023-03-10 17:56:41.5847 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml +2023-03-10 17:56:41.5847 Info Copied crt2fa.yml +2023-03-10 17:56:41.5857 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml +2023-03-10 17:56:41.5857 Info Copied danishbytes-api.yml +2023-03-10 17:56:41.5857 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml +2023-03-10 17:56:41.5872 Info Copied dariustracker.yml +2023-03-10 17:56:41.5872 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml +2023-03-10 17:56:41.5880 Info Copied dark-shadow.yml +2023-03-10 17:56:41.5880 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml +2023-03-10 17:56:41.5888 Info Copied datascene-api.yml +2023-03-10 17:56:41.5888 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml +2023-03-10 17:56:41.5888 Info Copied datatalli.yml +2023-03-10 17:56:41.5898 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml +2023-03-10 17:56:41.5898 Info Copied deildu.yml +2023-03-10 17:56:41.5906 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml +2023-03-10 17:56:41.5906 Info Copied demonoid.yml +2023-03-10 17:56:41.5906 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml +2023-03-10 17:56:41.5920 Info Copied desitorrents-api.yml +2023-03-10 17:56:41.5920 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml +2023-03-10 17:56:41.5928 Info Copied devil-torrents.yml +2023-03-10 17:56:41.5928 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml +2023-03-10 17:56:41.5928 Info Copied diablotorrent.yml +2023-03-10 17:56:41.5938 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml +2023-03-10 17:56:41.5938 Info Copied digitalcore.yml +2023-03-10 17:56:41.5938 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml +2023-03-10 17:56:41.5951 Info Copied dimeadozen.yml +2023-03-10 17:56:41.5951 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml +2023-03-10 17:56:41.5959 Info Copied discfan.yml +2023-03-10 17:56:41.5959 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml +2023-03-10 17:56:41.5967 Info Copied divteam.yml +2023-03-10 17:56:41.5967 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml +2023-03-10 17:56:41.5967 Info Copied dmhy.yml +2023-03-10 17:56:41.5977 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml +2023-03-10 17:56:41.5977 Info Copied docspedia.yml +2023-03-10 17:56:41.5977 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml +2023-03-10 17:56:41.5990 Info Copied dodder.yml +2023-03-10 17:56:41.5990 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml +2023-03-10 17:56:41.5998 Info Copied dreamtracker.yml +2023-03-10 17:56:41.5998 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml +2023-03-10 17:56:41.5998 Info Copied dxp.yml +2023-03-10 17:56:41.6007 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml +2023-03-10 17:56:41.6007 Info Copied ebookbay.yml +2023-03-10 17:56:41.6007 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml +2023-03-10 17:56:41.6020 Info Copied ebooks-shares.yml +2023-03-10 17:56:41.6020 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml +2023-03-10 17:56:41.6028 Info Copied ehentai.yml +2023-03-10 17:56:41.6028 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml +2023-03-10 17:56:41.6028 Info Copied electro-torrent.yml +2023-03-10 17:56:41.6037 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml +2023-03-10 17:56:41.6037 Info Copied empornium.yml +2023-03-10 17:56:41.6037 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml +2023-03-10 17:56:41.6050 Info Copied empornium2fa.yml +2023-03-10 17:56:41.6050 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml +2023-03-10 17:56:41.6057 Info Copied eniahd.yml +2023-03-10 17:56:41.6057 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml +2023-03-10 17:56:41.6057 Info Copied esharenet.yml +2023-03-10 17:56:41.6057 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml +2023-03-10 17:56:41.6071 Info Copied estone.yml +2023-03-10 17:56:41.6071 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml +2023-03-10 17:56:41.6079 Info Copied exkinoray.yml +2023-03-10 17:56:41.6079 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml +2023-03-10 17:56:41.6087 Info Copied extratorrent-st.yml +2023-03-10 17:56:41.6087 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml +2023-03-10 17:56:41.6087 Info Copied extremebits.yml +2023-03-10 17:56:41.6087 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml +2023-03-10 17:56:41.6102 Info Copied extremetorrents.yml +2023-03-10 17:56:41.6102 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml +2023-03-10 17:56:41.6109 Info Copied extremlymtorrents.yml +2023-03-10 17:56:41.6109 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml +2023-03-10 17:56:41.6109 Info Copied exttorrents.yml +2023-03-10 17:56:41.6118 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml +2023-03-10 17:56:41.6118 Info Copied eztv.yml +2023-03-10 17:56:41.6118 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml +2023-03-10 17:56:41.6130 Info Copied falkonvisionteam.yml +2023-03-10 17:56:41.6130 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml +2023-03-10 17:56:41.6138 Info Copied fanoin.yml +2023-03-10 17:56:41.6138 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml +2023-03-10 17:56:41.6138 Info Copied fantasticheaven.yml +2023-03-10 17:56:41.6148 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml +2023-03-10 17:56:41.6148 Info Copied fantastiko.yml +2023-03-10 17:56:41.6148 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml +2023-03-10 17:56:41.6160 Info Copied femdomcult.yml +2023-03-10 17:56:41.6160 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml +2023-03-10 17:56:41.6168 Info Copied fenyarnyek-tracker.yml +2023-03-10 17:56:41.6168 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml +2023-03-10 17:56:41.6168 Info Copied file-tracker.yml +2023-03-10 17:56:41.6177 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml +2023-03-10 17:56:41.6177 Info Copied filelisting.yml +2023-03-10 17:56:41.6177 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml +2023-03-10 17:56:41.6191 Info Copied finelite.yml +2023-03-10 17:56:41.6191 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml +2023-03-10 17:56:41.6198 Info Copied finvip.yml +2023-03-10 17:56:41.6198 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml +2023-03-10 17:56:41.6198 Info Copied firebit.yml +2023-03-10 17:56:41.6207 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml +2023-03-10 17:56:41.6207 Info Copied fluxzone.yml +2023-03-10 17:56:41.6207 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml +2023-03-10 17:56:41.6220 Info Copied freshmeat.yml +2023-03-10 17:56:41.6220 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml +2023-03-10 17:56:41.6228 Info Copied frozenlayer.yml +2023-03-10 17:56:41.6228 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml +2023-03-10 17:56:41.6228 Info Copied ftuapps.yml +2023-03-10 17:56:41.6238 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml +2023-03-10 17:56:41.6238 Info Copied funkytorrents.yml +2023-03-10 17:56:41.6238 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml +2023-03-10 17:56:41.6251 Info Copied fuzer.yml +2023-03-10 17:56:41.6251 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml +2023-03-10 17:56:41.6259 Info Copied gainbound.yml +2023-03-10 17:56:41.6259 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml +2023-03-10 17:56:41.6267 Info Copied gamestorrents.yml +2023-03-10 17:56:41.6267 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml +2023-03-10 17:56:41.6267 Info Copied gay-torrents.yml +2023-03-10 17:56:41.6277 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml +2023-03-10 17:56:41.6277 Info Copied gay-torrentsorg.yml +2023-03-10 17:56:41.6277 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml +2023-03-10 17:56:41.6290 Info Copied gaytorrentru.yml +2023-03-10 17:56:41.6290 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml +2023-03-10 17:56:41.6297 Info Copied generationfree-api.yml +2023-03-10 17:56:41.6297 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml +2023-03-10 17:56:41.6297 Info Copied genesismovement.yml +2023-03-10 17:56:41.6307 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml +2023-03-10 17:56:41.6307 Info Copied gigatorrents.yml +2023-03-10 17:56:41.6307 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml +2023-03-10 17:56:41.6321 Info Copied gimmepeers.yml +2023-03-10 17:56:41.6321 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml +2023-03-10 17:56:41.6329 Info Copied girotorrent.yml +2023-03-10 17:56:41.6329 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml +2023-03-10 17:56:41.6329 Info Copied gktorrent.yml +2023-03-10 17:56:41.6338 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml +2023-03-10 17:56:41.6338 Info Copied glodls.yml +2023-03-10 17:56:41.6338 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml +2023-03-10 17:56:41.6351 Info Copied greekdiamond.yml +2023-03-10 17:56:41.6351 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml +2023-03-10 17:56:41.6358 Info Copied greekteam.yml +2023-03-10 17:56:41.6358 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml +2023-03-10 17:56:41.6358 Info Copied gtorrentpro.yml +2023-03-10 17:56:41.6367 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml +2023-03-10 17:56:41.6367 Info Copied haidan.yml +2023-03-10 17:56:41.6367 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml +2023-03-10 17:56:41.6380 Info Copied haitang.yml +2023-03-10 17:56:41.6380 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml +2023-03-10 17:56:41.6388 Info Copied happyfappy.yml +2023-03-10 17:56:41.6388 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml +2023-03-10 17:56:41.6388 Info Copied hawke-uno.yml +2023-03-10 17:56:41.6398 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml +2023-03-10 17:56:41.6398 Info Copied hd-unit3d-api.yml +2023-03-10 17:56:41.6398 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml +2023-03-10 17:56:41.6412 Info Copied hd4fans.yml +2023-03-10 17:56:41.6412 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml +2023-03-10 17:56:41.6420 Info Copied hdarea.yml +2023-03-10 17:56:41.6420 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml +2023-03-10 17:56:41.6427 Info Copied hdatmos.yml +2023-03-10 17:56:41.6427 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml +2023-03-10 17:56:41.6427 Info Copied hdc.yml +2023-03-10 17:56:41.6437 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml +2023-03-10 17:56:41.6437 Info Copied hdchina.yml +2023-03-10 17:56:41.6447 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml +2023-03-10 17:56:41.6447 Info Copied hdcztorrent.yml +2023-03-10 17:56:41.6457 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml +2023-03-10 17:56:41.6457 Info Copied hddolby.yml +2023-03-10 17:56:41.6468 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml +2023-03-10 17:56:41.6468 Info Copied hdfans.yml +2023-03-10 17:56:41.6480 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml +2023-03-10 17:56:41.6487 Info Copied hdforever.yml +2023-03-10 17:56:41.6487 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml +2023-03-10 17:56:41.6497 Info Copied hdgalaktik.yml +2023-03-10 17:56:41.6497 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml +2023-03-10 17:56:41.6497 Info Copied hdhome.yml +2023-03-10 17:56:41.6508 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml +2023-03-10 17:56:41.6508 Info Copied hdmayi.yml +2023-03-10 17:56:41.6508 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml +2023-03-10 17:56:41.6522 Info Copied hdmonkey.yml +2023-03-10 17:56:41.6522 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml +2023-03-10 17:56:41.6530 Info Copied hdolimpo-api.yml +2023-03-10 17:56:41.6530 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml +2023-03-10 17:56:41.6538 Info Copied hdonly.yml +2023-03-10 17:56:41.6538 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml +2023-03-10 17:56:41.6538 Info Copied hdroute.yml +2023-03-10 17:56:41.6548 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml +2023-03-10 17:56:41.6548 Info Copied hdsky.yml +2023-03-10 17:56:41.6548 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml +2023-03-10 17:56:41.6561 Info Copied hdtime.yml +2023-03-10 17:56:41.6561 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml +2023-03-10 17:56:41.6569 Info Copied hdtorrentsit.yml +2023-03-10 17:56:41.6569 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml +2023-03-10 17:56:41.6577 Info Copied hdturk.yml +2023-03-10 17:56:41.6577 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml +2023-03-10 17:56:41.6577 Info Copied hdu.yml +2023-03-10 17:56:41.6587 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml +2023-03-10 17:56:41.6587 Info Copied hdzone.yml +2023-03-10 17:56:41.6587 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml +2023-03-10 17:56:41.6600 Info Copied hebits.yml +2023-03-10 17:56:41.6600 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml +2023-03-10 17:56:41.6608 Info Copied hellashut.yml +2023-03-10 17:56:41.6608 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml +2023-03-10 17:56:41.6608 Info Copied hhanclub.yml +2023-03-10 17:56:41.6618 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml +2023-03-10 17:56:41.6618 Info Copied houseofdevil.yml +2023-03-10 17:56:41.6627 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml +2023-03-10 17:56:41.6627 Info Copied hqmusic.yml +2023-03-10 17:56:41.6627 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml +2023-03-10 17:56:41.6641 Info Copied huntorrent.yml +2023-03-10 17:56:41.6641 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml +2023-03-10 17:56:41.6649 Info Copied icc2022.yml +2023-03-10 17:56:41.6649 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml +2023-03-10 17:56:41.6656 Info Copied idope.yml +2023-03-10 17:56:41.6656 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml +2023-03-10 17:56:41.6656 Info Copied ihdbits.yml +2023-03-10 17:56:41.6667 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml +2023-03-10 17:56:41.6667 Info Copied ilcorsaroblu.yml +2023-03-10 17:56:41.6667 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml +2023-03-10 17:56:41.6681 Info Copied ilcorsaronero.yml +2023-03-10 17:56:41.6681 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml +2023-03-10 17:56:41.6688 Info Copied immortuos.yml +2023-03-10 17:56:41.6688 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml +2023-03-10 17:56:41.6688 Info Copied indietorrents.yml +2023-03-10 17:56:41.6699 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml +2023-03-10 17:56:41.6699 Info Copied insanetracker.yml +2023-03-10 17:56:41.6699 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml +2023-03-10 17:56:41.6710 Info Copied internetarchive.yml +2023-03-10 17:56:41.6710 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml +2023-03-10 17:56:41.6718 Info Copied isohunt2.yml +2023-03-10 17:56:41.6718 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml +2023-03-10 17:56:41.6718 Info Copied itorrent.yml +2023-03-10 17:56:41.6727 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml +2023-03-10 17:56:41.6727 Info Copied jav-torrent.yml +2023-03-10 17:56:41.6727 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml +2023-03-10 17:56:41.6742 Info Copied jme-reunit3d-api.yml +2023-03-10 17:56:41.6742 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml +2023-03-10 17:56:41.6751 Info Copied joyhd.yml +2023-03-10 17:56:41.6751 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml +2023-03-10 17:56:41.6758 Info Copied jpopsuki.yml +2023-03-10 17:56:41.6758 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml +2023-03-10 17:56:41.6758 Info Copied jptv.yml +2023-03-10 17:56:41.6768 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml +2023-03-10 17:56:41.6768 Info Copied karagarga.yml +2023-03-10 17:56:41.6768 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml +2023-03-10 17:56:41.6781 Info Copied keepfriends.yml +2023-03-10 17:56:41.6781 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml +2023-03-10 17:56:41.6789 Info Copied kickasstorrents-to.yml +2023-03-10 17:56:41.6789 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml +2023-03-10 17:56:41.6789 Info Copied kickasstorrents-ws.yml +2023-03-10 17:56:41.6798 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml +2023-03-10 17:56:41.6798 Info Copied kinorun.yml +2023-03-10 17:56:41.6798 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml +2023-03-10 17:56:41.6812 Info Copied kinozal.yml +2023-03-10 17:56:41.6812 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml +2023-03-10 17:56:41.6820 Info Copied knaben.yml +2023-03-10 17:56:41.6820 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml +2023-03-10 17:56:41.6829 Info Copied korsar.yml +2023-03-10 17:56:41.6829 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml +2023-03-10 17:56:41.6837 Info Copied krazyzone.yml +2023-03-10 17:56:41.6837 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml +2023-03-10 17:56:41.6837 Info Copied kufirc.yml +2023-03-10 17:56:41.6837 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml +2023-03-10 17:56:41.6852 Info Copied lastfiles.yml +2023-03-10 17:56:41.6852 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml +2023-03-10 17:56:41.6859 Info Copied lat-team-api.yml +2023-03-10 17:56:41.6859 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml +2023-03-10 17:56:41.6867 Info Copied learnbits.yml +2023-03-10 17:56:41.6867 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml +2023-03-10 17:56:41.6867 Info Copied learnflakes.yml +2023-03-10 17:56:41.6878 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml +2023-03-10 17:56:41.6878 Info Copied leech24.yml +2023-03-10 17:56:41.6878 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml +2023-03-10 17:56:41.6891 Info Copied lemonhd.yml +2023-03-10 17:56:41.6891 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml +2023-03-10 17:56:41.6899 Info Copied lepornoinfo.yml +2023-03-10 17:56:41.6899 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml +2023-03-10 17:56:41.6908 Info Copied les-cinephiles.yml +2023-03-10 17:56:41.6908 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml +2023-03-10 17:56:41.6908 Info Copied lesaloon.yml +2023-03-10 17:56:41.6917 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml +2023-03-10 17:56:41.6917 Info Copied libranet.yml +2023-03-10 17:56:41.6917 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml +2023-03-10 17:56:41.6930 Info Copied limetorrents.yml +2023-03-10 17:56:41.6930 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml +2023-03-10 17:56:41.6937 Info Copied limetorrentsclone.yml +2023-03-10 17:56:41.6937 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml +2023-03-10 17:56:41.6937 Info Copied linkomanija.yml +2023-03-10 17:56:41.6947 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml +2023-03-10 17:56:41.6947 Info Copied linuxtracker.yml +2023-03-10 17:56:41.6957 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml +2023-03-10 17:56:41.6957 Info Copied locadora.yml +2023-03-10 17:56:41.6957 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml +2023-03-10 17:56:41.6971 Info Copied losslessclub.yml +2023-03-10 17:56:41.6971 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml +2023-03-10 17:56:41.6978 Info Copied lst.yml +2023-03-10 17:56:41.6978 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml +2023-03-10 17:56:41.6978 Info Copied mactorrentsdownload.yml +2023-03-10 17:56:41.6988 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml +2023-03-10 17:56:41.6988 Info Copied madsrevolution.yml +2023-03-10 17:56:41.6988 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml +2023-03-10 17:56:41.7001 Info Copied magicheaven.yml +2023-03-10 17:56:41.7001 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml +2023-03-10 17:56:41.7008 Info Copied magico.yml +2023-03-10 17:56:41.7008 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml +2023-03-10 17:56:41.7008 Info Copied majomparade.yml +2023-03-10 17:56:41.7018 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml +2023-03-10 17:56:41.7018 Info Copied marinetracker.yml +2023-03-10 17:56:41.7018 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml +2023-03-10 17:56:41.7032 Info Copied mazepa.yml +2023-03-10 17:56:41.7032 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml +2023-03-10 17:56:41.7039 Info Copied megamixtracker.yml +2023-03-10 17:56:41.7039 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml +2023-03-10 17:56:41.7047 Info Copied megapeer.yml +2023-03-10 17:56:41.7047 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml +2023-03-10 17:56:41.7047 Info Copied mesevilag.yml +2023-03-10 17:56:41.7047 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml +2023-03-10 17:56:41.7061 Info Copied metaltracker.yml +2023-03-10 17:56:41.7061 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml +2023-03-10 17:56:41.7069 Info Copied mikan.yml +2023-03-10 17:56:41.7069 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml +2023-03-10 17:56:41.7077 Info Copied milkie.yml +2023-03-10 17:56:41.7077 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml +2023-03-10 17:56:41.7077 Info Copied miobt.yml +2023-03-10 17:56:41.7077 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml +2023-03-10 17:56:41.7092 Info Copied mircrew.yml +2023-03-10 17:56:41.7092 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml +2023-03-10 17:56:41.7100 Info Copied mixtapetorrent.yml +2023-03-10 17:56:41.7100 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml +2023-03-10 17:56:41.7107 Info Copied mma-torrents.yml +2023-03-10 17:56:41.7107 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml +2023-03-10 17:56:41.7107 Info Copied mnv.yml +2023-03-10 17:56:41.7117 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml +2023-03-10 17:56:41.7117 Info Copied mojblink.yml +2023-03-10 17:56:41.7117 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml +2023-03-10 17:56:41.7129 Info Copied mousebits.yml +2023-03-10 17:56:41.7129 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml +2023-03-10 17:56:41.7137 Info Copied moviesdvdr.yml +2023-03-10 17:56:41.7137 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml +2023-03-10 17:56:41.7137 Info Copied moviesite.yml +2023-03-10 17:56:41.7137 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml +2023-03-10 17:56:41.7152 Info Copied movietorrent.yml +2023-03-10 17:56:41.7152 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml +2023-03-10 17:56:41.7159 Info Copied movietorrentz.yml +2023-03-10 17:56:41.7159 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml +2023-03-10 17:56:41.7168 Info Copied mteamtp.yml +2023-03-10 17:56:41.7168 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml +2023-03-10 17:56:41.7168 Info Copied mteamtp2fa.yml +2023-03-10 17:56:41.7178 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml +2023-03-10 17:56:41.7178 Info Copied muziekfabriek.yml +2023-03-10 17:56:41.7178 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml +2023-03-10 17:56:41.7191 Info Copied mvgroupforum.yml +2023-03-10 17:56:41.7191 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml +2023-03-10 17:56:41.7199 Info Copied mvgroupmain.yml +2023-03-10 17:56:41.7199 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml +2023-03-10 17:56:41.7199 Info Copied mypornclub.yml +2023-03-10 17:56:41.7208 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml +2023-03-10 17:56:41.7208 Info Copied myspleen.yml +2023-03-10 17:56:41.7208 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml +2023-03-10 17:56:41.7222 Info Copied nethd.yml +2023-03-10 17:56:41.7222 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml +2023-03-10 17:56:41.7230 Info Copied newretro.yml +2023-03-10 17:56:41.7230 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml +2023-03-10 17:56:41.7245 Info Copied newstudio.yml +2023-03-10 17:56:41.7245 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml +2023-03-10 17:56:41.7245 Info Copied newstudiol.yml +2023-03-10 17:56:41.7245 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml +2023-03-10 17:56:41.7259 Info Copied nicept.yml +2023-03-10 17:56:41.7259 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml +2023-03-10 17:56:41.7268 Info Copied nipponsei.yml +2023-03-10 17:56:41.7268 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml +2023-03-10 17:56:41.7268 Info Copied nntt.yml +2023-03-10 17:56:41.7278 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml +2023-03-10 17:56:41.7278 Info Copied noname-club.yml +2023-03-10 17:56:41.7278 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml +2023-03-10 17:56:41.7292 Info Copied noname-clubl.yml +2023-03-10 17:56:41.7292 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml +2023-03-10 17:56:41.7299 Info Copied nyaasi.yml +2023-03-10 17:56:41.7299 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml +2023-03-10 17:56:41.7307 Info Copied oldtoonsworld.yml +2023-03-10 17:56:41.7307 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml +2023-03-10 17:56:41.7307 Info Copied onejav.yml +2023-03-10 17:56:41.7307 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml +2023-03-10 17:56:41.7322 Info Copied opencd.yml +2023-03-10 17:56:41.7322 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml +2023-03-10 17:56:41.7330 Info Copied oshenpt.yml +2023-03-10 17:56:41.7330 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml +2023-03-10 17:56:41.7338 Info Copied ourbits.yml +2023-03-10 17:56:41.7338 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml +2023-03-10 17:56:41.7347 Info Copied p2pbg.yml +2023-03-10 17:56:41.7347 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml +2023-03-10 17:56:41.7347 Info Copied parnuxi.yml +2023-03-10 17:56:41.7347 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml +2023-03-10 17:56:41.7361 Info Copied partis.yml +2023-03-10 17:56:41.7361 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml +2023-03-10 17:56:41.7369 Info Copied pctorrent.yml +2023-03-10 17:56:41.7369 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml +2023-03-10 17:56:41.7369 Info Copied peeratiko.yml +2023-03-10 17:56:41.7378 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml +2023-03-10 17:56:41.7420 Info Copied peersfm.yml +2023-03-10 17:56:41.7420 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml +2023-03-10 17:56:41.7420 Info Copied pier720.yml +2023-03-10 17:56:41.7427 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml +2023-03-10 17:56:41.7427 Info Copied pignetwork.yml +2023-03-10 17:56:41.7427 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml +2023-03-10 17:56:41.7439 Info Copied piratbit.yml +2023-03-10 17:56:41.7439 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml +2023-03-10 17:56:41.7439 Info Copied piratbitl.yml +2023-03-10 17:56:41.7447 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml +2023-03-10 17:56:41.7447 Info Copied pixelcove.yml +2023-03-10 17:56:41.7447 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml +2023-03-10 17:56:41.7457 Info Copied pixelcove2fa.yml +2023-03-10 17:56:41.7457 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml +2023-03-10 17:56:41.7457 Info Copied polishsource.yml +2023-03-10 17:56:41.7457 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml +2023-03-10 17:56:41.7469 Info Copied polishtracker-api.yml +2023-03-10 17:56:41.7469 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml +2023-03-10 17:56:41.7469 Info Copied pornbay.yml +2023-03-10 17:56:41.7469 Info Attempting to copy pornforall.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pornforall.yml to destination: /app/Jackett/Definitions/pornforall.yml +2023-03-10 17:56:41.7480 Info Copied pornforall.yml +2023-03-10 17:56:41.7480 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml +2023-03-10 17:56:41.7480 Info Copied pornoslab.yml +2023-03-10 17:56:41.7487 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml +2023-03-10 17:56:41.7487 Info Copied pornotorrent.yml +2023-03-10 17:56:41.7487 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml +2023-03-10 17:56:41.7496 Info Copied portugas-api.yml +2023-03-10 17:56:41.7496 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml +2023-03-10 17:56:41.7496 Info Copied potuk.yml +2023-03-10 17:56:41.7496 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml +2023-03-10 17:56:41.7507 Info Copied proaudiotorrents.yml +2023-03-10 17:56:41.7507 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml +2023-03-10 17:56:41.7507 Info Copied proporno.yml +2023-03-10 17:56:41.7507 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml +2023-03-10 17:56:41.7519 Info Copied ptchina.yml +2023-03-10 17:56:41.7519 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml +2023-03-10 17:56:41.7519 Info Copied pterclub.yml +2023-03-10 17:56:41.7526 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml +2023-03-10 17:56:41.7526 Info Copied ptfiles.yml +2023-03-10 17:56:41.7526 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml +2023-03-10 17:56:41.7526 Info Copied pthome.yml +2023-03-10 17:56:41.7537 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml +2023-03-10 17:56:41.7537 Info Copied ptmsg.yml +2023-03-10 17:56:41.7537 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml +2023-03-10 17:56:41.7547 Info Copied ptsbao.yml +2023-03-10 17:56:41.7547 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml +2023-03-10 17:56:41.7547 Info Copied pttime.yml +2023-03-10 17:56:41.7547 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml +2023-03-10 17:56:41.7558 Info Copied punkshorror.yml +2023-03-10 17:56:41.7558 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml +2023-03-10 17:56:41.7558 Info Copied puntotorrent.yml +2023-03-10 17:56:41.7558 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml +2023-03-10 17:56:41.7569 Info Copied pussytorrents.yml +2023-03-10 17:56:41.7569 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml +2023-03-10 17:56:41.7569 Info Copied putao.yml +2023-03-10 17:56:41.7569 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml +2023-03-10 17:56:41.7580 Info Copied puurhollands.yml +2023-03-10 17:56:41.7580 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml +2023-03-10 17:56:41.7580 Info Copied pwtorrents.yml +2023-03-10 17:56:41.7587 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml +2023-03-10 17:56:41.7587 Info Copied r3vwtf.yml +2023-03-10 17:56:41.7587 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml +2023-03-10 17:56:41.7597 Info Copied racing4everyone-api.yml +2023-03-10 17:56:41.7597 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml +2023-03-10 17:56:41.7597 Info Copied racingforme.yml +2023-03-10 17:56:41.7597 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml +2023-03-10 17:56:41.7608 Info Copied rainbowtracker.yml +2023-03-10 17:56:41.7608 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml +2023-03-10 17:56:41.7608 Info Copied rapidzona.yml +2023-03-10 17:56:41.7608 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml +2023-03-10 17:56:41.7619 Info Copied redbits-api.yml +2023-03-10 17:56:41.7619 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml +2023-03-10 17:56:41.7619 Info Copied redstartorrent.yml +2023-03-10 17:56:41.7619 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml +2023-03-10 17:56:41.7630 Info Copied reelflix-api.yml +2023-03-10 17:56:41.7630 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml +2023-03-10 17:56:41.7630 Info Copied resurrectthenet.yml +2023-03-10 17:56:41.7637 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml +2023-03-10 17:56:41.7637 Info Copied rgfootball.yml +2023-03-10 17:56:41.7637 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml +2023-03-10 17:56:41.7647 Info Copied rintor.yml +2023-03-10 17:56:41.7647 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml +2023-03-10 17:56:41.7647 Info Copied rintornet.yml +2023-03-10 17:56:41.7647 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml +2023-03-10 17:56:41.7659 Info Copied riperam.yml +2023-03-10 17:56:41.7659 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml +2023-03-10 17:56:41.7659 Info Copied rockbox.yml +2023-03-10 17:56:41.7659 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml +2023-03-10 17:56:41.7670 Info Copied romanianmetaltorrents.yml +2023-03-10 17:56:41.7670 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml +2023-03-10 17:56:41.7670 Info Copied rptorrents.yml +2023-03-10 17:56:41.7677 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml +2023-03-10 17:56:41.7677 Info Copied rudub.yml +2023-03-10 17:56:41.7677 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml +2023-03-10 17:56:41.7687 Info Copied rus-media.yml +2023-03-10 17:56:41.7687 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml +2023-03-10 17:56:41.7687 Info Copied rustorka.yml +2023-03-10 17:56:41.7687 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml +2023-03-10 17:56:41.7699 Info Copied rutor.yml +2023-03-10 17:56:41.7699 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml +2023-03-10 17:56:41.7699 Info Copied rutracker-ru.yml +2023-03-10 17:56:41.7707 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml +2023-03-10 17:56:41.7707 Info Copied satclubbing.yml +2023-03-10 17:56:41.7707 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml +2023-03-10 17:56:41.7717 Info Copied scenerush.yml +2023-03-10 17:56:41.7717 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml +2023-03-10 17:56:41.7717 Info Copied sdbits.yml +2023-03-10 17:56:41.7717 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml +2023-03-10 17:56:41.7728 Info Copied seedfile.yml +2023-03-10 17:56:41.7728 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml +2023-03-10 17:56:41.7728 Info Copied seedoff.yml +2023-03-10 17:56:41.7728 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml +2023-03-10 17:56:41.7739 Info Copied selezen.yml +2023-03-10 17:56:41.7739 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml +2023-03-10 17:56:41.7739 Info Copied sexypics.yml +2023-03-10 17:56:41.7739 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml +2023-03-10 17:56:41.7750 Info Copied shanaproject.yml +2023-03-10 17:56:41.7750 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml +2023-03-10 17:56:41.7750 Info Copied shareisland-api.yml +2023-03-10 17:56:41.7757 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml +2023-03-10 17:56:41.7757 Info Copied sharewood.yml +2023-03-10 17:56:41.7757 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml +2023-03-10 17:56:41.7767 Info Copied sharkpt.yml +2023-03-10 17:56:41.7767 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml +2023-03-10 17:56:41.7767 Info Copied showrss.yml +2023-03-10 17:56:41.7767 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml +2023-03-10 17:56:41.7778 Info Copied siambit.yml +2023-03-10 17:56:41.7778 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml +2023-03-10 17:56:41.7778 Info Copied skipthecommercials-api.yml +2023-03-10 17:56:41.7778 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml +2023-03-10 17:56:41.7789 Info Copied skipthetrailers.yml +2023-03-10 17:56:41.7789 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml +2023-03-10 17:56:41.7789 Info Copied sktorrent-org.yml +2023-03-10 17:56:41.7797 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml +2023-03-10 17:56:41.7797 Info Copied sktorrent.yml +2023-03-10 17:56:41.7797 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml +2023-03-10 17:56:41.7797 Info Copied slosoul.yml +2023-03-10 17:56:41.7808 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml +2023-03-10 17:56:41.7808 Info Copied snowpt.yml +2023-03-10 17:56:41.7808 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml +2023-03-10 17:56:41.7817 Info Copied solidtorrents.yml +2023-03-10 17:56:41.7817 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml +2023-03-10 17:56:41.7817 Info Copied sosulki.yml +2023-03-10 17:56:41.7817 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml +2023-03-10 17:56:41.7828 Info Copied soulvoice.yml +2023-03-10 17:56:41.7828 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml +2023-03-10 17:56:41.7828 Info Copied speedmasterhd.yml +2023-03-10 17:56:41.7828 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml +2023-03-10 17:56:41.7839 Info Copied speedtorrentreloaded.yml +2023-03-10 17:56:41.7839 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml +2023-03-10 17:56:41.7839 Info Copied spidertk.yml +2023-03-10 17:56:41.7846 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml +2023-03-10 17:56:41.7846 Info Copied spiritofrevolution.yml +2023-03-10 17:56:41.7846 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml +2023-03-10 17:56:41.7846 Info Copied sporthd.yml +2023-03-10 17:56:41.7858 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml +2023-03-10 17:56:41.7858 Info Copied sportscult.yml +2023-03-10 17:56:41.7858 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml +2023-03-10 17:56:41.7867 Info Copied springsunday.yml +2023-03-10 17:56:41.7867 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml +2023-03-10 17:56:41.7867 Info Copied sugoimusic.yml +2023-03-10 17:56:41.7867 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml +2023-03-10 17:56:41.7878 Info Copied sukebeinyaasi.yml +2023-03-10 17:56:41.7878 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml +2023-03-10 17:56:41.7878 Info Copied superbits.yml +2023-03-10 17:56:41.7878 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml +2023-03-10 17:56:41.7889 Info Copied swarmazon-api.yml +2023-03-10 17:56:41.7889 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml +2023-03-10 17:56:41.7889 Info Copied tapochek.yml +2023-03-10 17:56:41.7897 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml +2023-03-10 17:56:41.7897 Info Copied tasmanit.yml +2023-03-10 17:56:41.7897 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml +2023-03-10 17:56:41.7907 Info Copied teamctgame.yml +2023-03-10 17:56:41.7907 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml +2023-03-10 17:56:41.7907 Info Copied teamhd.yml +2023-03-10 17:56:41.7907 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml +2023-03-10 17:56:41.7918 Info Copied teamos.yml +2023-03-10 17:56:41.7918 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml +2023-03-10 17:56:41.7918 Info Copied tekno3d.yml +2023-03-10 17:56:41.7918 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml +2023-03-10 17:56:41.7929 Info Copied tellytorrent-api.yml +2023-03-10 17:56:41.7929 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml +2023-03-10 17:56:41.7929 Info Copied teracod.yml +2023-03-10 17:56:41.7929 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml +2023-03-10 17:56:41.7940 Info Copied the-crazy-ones.yml +2023-03-10 17:56:41.7940 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml +2023-03-10 17:56:41.7940 Info Copied thedarkcommunity-api.yml +2023-03-10 17:56:41.7948 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml +2023-03-10 17:56:41.7948 Info Copied theempire.yml +2023-03-10 17:56:41.7948 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml +2023-03-10 17:56:41.7957 Info Copied thefallingangels.yml +2023-03-10 17:56:41.7957 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml +2023-03-10 17:56:41.7957 Info Copied thegeeks.yml +2023-03-10 17:56:41.7957 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml +2023-03-10 17:56:41.7969 Info Copied theleachzone.yml +2023-03-10 17:56:41.7969 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml +2023-03-10 17:56:41.7969 Info Copied themixingbowl.yml +2023-03-10 17:56:41.7978 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml +2023-03-10 17:56:41.7978 Info Copied thenewfun.yml +2023-03-10 17:56:41.7978 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml +2023-03-10 17:56:41.7988 Info Copied theoccult.yml +2023-03-10 17:56:41.7988 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml +2023-03-10 17:56:41.7988 Info Copied theoldschool-api.yml +2023-03-10 17:56:41.7988 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml +2023-03-10 17:56:41.7999 Info Copied thepiratebay.yml +2023-03-10 17:56:41.7999 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml +2023-03-10 17:56:41.7999 Info Copied theplace.yml +2023-03-10 17:56:41.8006 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml +2023-03-10 17:56:41.8006 Info Copied thesceneplace.yml +2023-03-10 17:56:41.8006 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml +2023-03-10 17:56:41.8016 Info Copied theshinning-api.yml +2023-03-10 17:56:41.8016 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml +2023-03-10 17:56:41.8016 Info Copied theshow.yml +2023-03-10 17:56:41.8016 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml +2023-03-10 17:56:41.8028 Info Copied thevault.yml +2023-03-10 17:56:41.8028 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml +2023-03-10 17:56:41.8028 Info Copied tjupt.yml +2023-03-10 17:56:41.8028 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml +2023-03-10 17:56:41.8039 Info Copied tlfbits.yml +2023-03-10 17:56:41.8039 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml +2023-03-10 17:56:41.8039 Info Copied tmghub.yml +2023-03-10 17:56:41.8039 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml +2023-03-10 17:56:41.8050 Info Copied tokyotosho.yml +2023-03-10 17:56:41.8050 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml +2023-03-10 17:56:41.8050 Info Copied torlock.yml +2023-03-10 17:56:41.8057 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml +2023-03-10 17:56:41.8057 Info Copied tornado.yml +2023-03-10 17:56:41.8057 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml +2023-03-10 17:56:41.8067 Info Copied torrent-explosiv.yml +2023-03-10 17:56:41.8067 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml +2023-03-10 17:56:41.8067 Info Copied torrent-pirat.yml +2023-03-10 17:56:41.8067 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml +2023-03-10 17:56:41.8078 Info Copied torrent-turk.yml +2023-03-10 17:56:41.8078 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml +2023-03-10 17:56:41.8078 Info Copied torrent9.yml +2023-03-10 17:56:41.8078 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml +2023-03-10 17:56:41.8089 Info Copied torrent911.yml +2023-03-10 17:56:41.8089 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml +2023-03-10 17:56:41.8089 Info Copied torrent9clone.yml +2023-03-10 17:56:41.8089 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml +2023-03-10 17:56:41.8100 Info Copied torrentbd.yml +2023-03-10 17:56:41.8100 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml +2023-03-10 17:56:41.8100 Info Copied torrentby.yml +2023-03-10 17:56:41.8107 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml +2023-03-10 17:56:41.8107 Info Copied torrentccf.yml +2023-03-10 17:56:41.8107 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml +2023-03-10 17:56:41.8117 Info Copied torrentcore.yml +2023-03-10 17:56:41.8117 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml +2023-03-10 17:56:41.8117 Info Copied torrentdownload.yml +2023-03-10 17:56:41.8117 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml +2023-03-10 17:56:41.8128 Info Copied torrentdownloads.yml +2023-03-10 17:56:41.8128 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml +2023-03-10 17:56:41.8128 Info Copied torrentfunk.yml +2023-03-10 17:56:41.8128 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml +2023-03-10 17:56:41.8138 Info Copied torrentgalaxy.yml +2023-03-10 17:56:41.8138 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml +2023-03-10 17:56:41.8138 Info Copied torrenthr.yml +2023-03-10 17:56:41.8138 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml +2023-03-10 17:56:41.8150 Info Copied torrenting.yml +2023-03-10 17:56:41.8150 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml +2023-03-10 17:56:41.8150 Info Copied torrentkitty.yml +2023-03-10 17:56:41.8157 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml +2023-03-10 17:56:41.8157 Info Copied torrentland.yml +2023-03-10 17:56:41.8157 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml +2023-03-10 17:56:41.8166 Info Copied torrentleech-pl.yml +2023-03-10 17:56:41.8166 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml +2023-03-10 17:56:41.8166 Info Copied torrentleech.yml +2023-03-10 17:56:41.8166 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml +2023-03-10 17:56:41.8177 Info Copied torrentlt.yml +2023-03-10 17:56:41.8177 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml +2023-03-10 17:56:41.8177 Info Copied torrentmasters.yml +2023-03-10 17:56:41.8177 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml +2023-03-10 17:56:41.8188 Info Copied torrentoyunindir.yml +2023-03-10 17:56:41.8188 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml +2023-03-10 17:56:41.8188 Info Copied torrentproject2.yml +2023-03-10 17:56:41.8188 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml +2023-03-10 17:56:41.8199 Info Copied torrentqq.yml +2023-03-10 17:56:41.8199 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml +2023-03-10 17:56:41.8199 Info Copied torrentsectorcrew.yml +2023-03-10 17:56:41.8207 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml +2023-03-10 17:56:41.8207 Info Copied torrentseeds-api.yml +2023-03-10 17:56:41.8207 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml +2023-03-10 17:56:41.8207 Info Copied torrentsir.yml +2023-03-10 17:56:41.8218 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml +2023-03-10 17:56:41.8218 Info Copied torrentslocal.yml +2023-03-10 17:56:41.8218 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml +2023-03-10 17:56:41.8228 Info Copied torrentv.yml +2023-03-10 17:56:41.8228 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml +2023-03-10 17:56:41.8228 Info Copied torrentview.yml +2023-03-10 17:56:41.8228 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml +2023-03-10 17:56:41.8239 Info Copied torrentwhiz.yml +2023-03-10 17:56:41.8239 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml +2023-03-10 17:56:41.8239 Info Copied torrentz2eu.yml +2023-03-10 17:56:41.8239 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml +2023-03-10 17:56:41.8250 Info Copied torrentz2nz.yml +2023-03-10 17:56:41.8250 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml +2023-03-10 17:56:41.8250 Info Copied totallykids.yml +2023-03-10 17:56:41.8257 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml +2023-03-10 17:56:41.8257 Info Copied totheglory.yml +2023-03-10 17:56:41.8257 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml +2023-03-10 17:56:41.8266 Info Copied totheglorycookie.yml +2023-03-10 17:56:41.8266 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml +2023-03-10 17:56:41.8266 Info Copied traht.yml +2023-03-10 17:56:41.8266 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml +2023-03-10 17:56:41.8277 Info Copied trancetraffic.yml +2023-03-10 17:56:41.8277 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml +2023-03-10 17:56:41.8277 Info Copied trezzor.yml +2023-03-10 17:56:41.8277 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml +2023-03-10 17:56:41.8289 Info Copied tribalmixes.yml +2023-03-10 17:56:41.8289 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml +2023-03-10 17:56:41.8289 Info Copied trupornolabs.yml +2023-03-10 17:56:41.8289 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml +2023-03-10 17:56:41.8300 Info Copied turkseed.yml +2023-03-10 17:56:41.8300 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml +2023-03-10 17:56:41.8300 Info Copied turktorrent.yml +2023-03-10 17:56:41.8307 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml +2023-03-10 17:56:41.8307 Info Copied tvchaosuk.yml +2023-03-10 17:56:41.8307 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml +2023-03-10 17:56:41.8317 Info Copied tvroad.yml +2023-03-10 17:56:41.8317 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml +2023-03-10 17:56:41.8317 Info Copied twilight.yml +2023-03-10 17:56:41.8317 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml +2023-03-10 17:56:41.8328 Info Copied u2.yml +2023-03-10 17:56:41.8328 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml +2023-03-10 17:56:41.8328 Info Copied uhdbits.yml +2023-03-10 17:56:41.8328 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml +2023-03-10 17:56:41.8348 Info Copied uniondht.yml +2023-03-10 17:56:41.8348 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml +2023-03-10 17:56:41.8348 Info Copied unionfansub.yml +2023-03-10 17:56:41.8348 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml +2023-03-10 17:56:41.8359 Info Copied uniongang.yml +2023-03-10 17:56:41.8359 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml +2023-03-10 17:56:41.8359 Info Copied unleashthecartoons.yml +2023-03-10 17:56:41.8359 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml +2023-03-10 17:56:41.8370 Info Copied unlimitz.yml +2023-03-10 17:56:41.8370 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml +2023-03-10 17:56:41.8370 Info Copied vsthouse.yml +2023-03-10 17:56:41.8377 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml +2023-03-10 17:56:41.8377 Info Copied vsttorrents.yml +2023-03-10 17:56:41.8377 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml +2023-03-10 17:56:41.8387 Info Copied vtorrent.yml +2023-03-10 17:56:41.8387 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml +2023-03-10 17:56:41.8387 Info Copied whiteangel.yml +2023-03-10 17:56:41.8387 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml +2023-03-10 17:56:41.8398 Info Copied wihd.yml +2023-03-10 17:56:41.8398 Info Attempting to copy woot.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/woot.yml to destination: /app/Jackett/Definitions/woot.yml +2023-03-10 17:56:41.8398 Info Copied woot.yml +2023-03-10 17:56:41.8398 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml +2023-03-10 17:56:41.8409 Info Copied world-of-tomorrow.yml +2023-03-10 17:56:41.8409 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml +2023-03-10 17:56:41.8409 Info Copied x-ite.me.yml +2023-03-10 17:56:41.8417 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml +2023-03-10 17:56:41.8417 Info Copied xbytes2.yml +2023-03-10 17:56:41.8417 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml +2023-03-10 17:56:41.8427 Info Copied xthor-api.yml +2023-03-10 17:56:41.8427 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml +2023-03-10 17:56:41.8427 Info Copied xtorrenty.yml +2023-03-10 17:56:41.8427 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml +2023-03-10 17:56:41.8438 Info Copied xtremebytes.yml +2023-03-10 17:56:41.8438 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml +2023-03-10 17:56:41.8438 Info Copied xwtclassics.yml +2023-03-10 17:56:41.8438 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml +2023-03-10 17:56:41.8449 Info Copied xwtorrents.yml +2023-03-10 17:56:41.8449 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml +2023-03-10 17:56:41.8449 Info Copied xxxadulttorrent.yml +2023-03-10 17:56:41.8449 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml +2023-03-10 17:56:41.8460 Info Copied xxxtor.yml +2023-03-10 17:56:41.8460 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml +2023-03-10 17:56:41.8460 Info Copied xxxtorrents.yml +2023-03-10 17:56:41.8467 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml +2023-03-10 17:56:41.8467 Info Copied ydypt.yml +2023-03-10 17:56:41.8467 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml +2023-03-10 17:56:41.8477 Info Copied yggcookie.yml +2023-03-10 17:56:41.8477 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml +2023-03-10 17:56:41.8477 Info Copied yggtorrent.yml +2023-03-10 17:56:41.8477 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml +2023-03-10 17:56:41.8488 Info Copied yourbittorrent.yml +2023-03-10 17:56:41.8488 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml +2023-03-10 17:56:41.8488 Info Copied yts.yml +2023-03-10 17:56:41.8488 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml +2023-03-10 17:56:41.8500 Info Copied zamundanet.yml +2023-03-10 17:56:41.8500 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml +2023-03-10 17:56:41.8500 Info Copied zelkaorg.yml +2023-03-10 17:56:41.8507 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml +2023-03-10 17:56:41.8507 Info Copied zetorrents.yml +2023-03-10 17:56:41.8507 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml +2023-03-10 17:56:41.8516 Info Copied zmpt.yml +2023-03-10 17:56:41.8516 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml +2023-03-10 17:56:41.8516 Info Copied zomb.yml +2023-03-10 17:56:41.8516 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml +2023-03-10 17:56:41.8527 Info Copied ztracker.yml +2023-03-10 17:56:41.8527 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll +2023-03-10 17:56:41.8527 Info Copied FlareSolverrSharp.dll +2023-03-10 17:56:41.8527 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll +2023-03-10 17:56:41.8543 Info Copied ICSharpCode.SharpZipLib.dll +2023-03-10 17:56:41.8543 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh +2023-03-10 17:56:41.8548 Info Copied install_service_systemd.sh +2023-03-10 17:56:41.8548 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/jackett to destination: /app/Jackett/jackett +2023-03-10 17:56:41.8548 Info Copied jackett +2023-03-10 17:56:41.8557 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh +2023-03-10 17:56:41.8557 Info Copied jackett_launcher.sh +2023-03-10 17:56:41.8557 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll +2023-03-10 17:56:41.8592 Info Copied Jackett.Common.dll +2023-03-10 17:56:41.8592 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb +2023-03-10 17:56:41.8601 Info Copied Jackett.Common.pdb +2023-03-10 17:56:41.8601 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json +2023-03-10 17:56:41.8609 Info Copied jackett.deps.json +2023-03-10 17:56:41.8609 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll +2023-03-10 17:56:41.8622 Info Copied jackett.dll +2023-03-10 17:56:41.8622 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb +2023-03-10 17:56:41.8628 Info Copied jackett.pdb +2023-03-10 17:56:41.8628 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json +2023-03-10 17:56:41.8628 Info Copied jackett.runtimeconfig.json +2023-03-10 17:56:41.8628 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater +2023-03-10 17:56:41.8641 Info Copied JackettUpdater +2023-03-10 17:56:41.8641 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json +2023-03-10 17:56:41.8647 Info Copied JackettUpdater.deps.json +2023-03-10 17:56:41.8647 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll +2023-03-10 17:56:41.8658 Info Copied JackettUpdater.dll +2023-03-10 17:56:41.8658 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb +2023-03-10 17:56:41.8658 Info Copied JackettUpdater.pdb +2023-03-10 17:56:41.8658 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json +2023-03-10 17:56:41.8669 Info Copied JackettUpdater.runtimeconfig.json +2023-03-10 17:56:41.8669 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so +2023-03-10 17:56:41.8718 Info Copied libclrjit.so +2023-03-10 17:56:41.8718 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so +2023-03-10 17:56:41.8876 Info Copied libcoreclr.so +2023-03-10 17:56:41.8879 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so +2023-03-10 17:56:41.8916 Info Copied libcoreclrtraceptprovider.so +2023-03-10 17:56:41.8916 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so +2023-03-10 17:56:41.8938 Info Copied libdbgshim.so +2023-03-10 17:56:41.8938 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so +2023-03-10 17:56:41.8949 Info Copied libhostfxr.so +2023-03-10 17:56:41.8949 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so +2023-03-10 17:56:41.8960 Info Copied libhostpolicy.so +2023-03-10 17:56:41.8960 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so +2023-03-10 17:56:41.8968 Info Copied libMono.Unix.so +2023-03-10 17:56:41.8968 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so +2023-03-10 17:56:41.9018 Info Copied libmscordaccore.so +2023-03-10 17:56:41.9018 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so +2023-03-10 17:56:41.9077 Info Copied libmscordbi.so +2023-03-10 17:56:41.9077 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so +2023-03-10 17:56:41.9087 Info Copied libSystem.Globalization.Native.so +2023-03-10 17:56:41.9087 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so +2023-03-10 17:56:41.9110 Info Copied libSystem.IO.Compression.Native.so +2023-03-10 17:56:41.9110 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so +2023-03-10 17:56:41.9117 Info Copied libSystem.Native.so +2023-03-10 17:56:41.9117 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so +2023-03-10 17:56:41.9117 Info Copied libSystem.Net.Security.Native.so +2023-03-10 17:56:41.9117 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so +2023-03-10 17:56:41.9132 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so +2023-03-10 17:56:41.9132 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/LICENSE to destination: /app/Jackett/LICENSE +2023-03-10 17:56:41.9138 Info Copied LICENSE +2023-03-10 17:56:41.9138 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll +2023-03-10 17:56:41.9147 Info Copied Microsoft.AspNetCore.Antiforgery.dll +2023-03-10 17:56:41.9147 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-03-10 17:56:41.9147 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-03-10 17:56:41.9147 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll +2023-03-10 17:56:41.9161 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll +2023-03-10 17:56:41.9161 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll +2023-03-10 17:56:41.9169 Info Copied Microsoft.AspNetCore.Authentication.Core.dll +2023-03-10 17:56:41.9169 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll +2023-03-10 17:56:41.9177 Info Copied Microsoft.AspNetCore.Authentication.dll +2023-03-10 17:56:41.9177 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll +2023-03-10 17:56:41.9177 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll +2023-03-10 17:56:41.9187 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll +2023-03-10 17:56:41.9187 Info Copied Microsoft.AspNetCore.Authorization.dll +2023-03-10 17:56:41.9198 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll +2023-03-10 17:56:41.9207 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll +2023-03-10 17:56:41.9207 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll +2023-03-10 17:56:41.9207 Info Copied Microsoft.AspNetCore.Components.Authorization.dll +2023-03-10 17:56:41.9218 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll +2023-03-10 17:56:41.9241 Info Copied Microsoft.AspNetCore.Components.dll +2023-03-10 17:56:41.9241 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll +2023-03-10 17:56:41.9248 Info Copied Microsoft.AspNetCore.Components.Forms.dll +2023-03-10 17:56:41.9248 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll +2023-03-10 17:56:41.9265 Info Copied Microsoft.AspNetCore.Components.Server.dll +2023-03-10 17:56:41.9267 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll +2023-03-10 17:56:41.9267 Info Copied Microsoft.AspNetCore.Components.Web.dll +2023-03-10 17:56:41.9277 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll +2023-03-10 17:56:41.9277 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll +2023-03-10 17:56:41.9277 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll +2023-03-10 17:56:41.9290 Info Copied Microsoft.AspNetCore.CookiePolicy.dll +2023-03-10 17:56:41.9290 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll +2023-03-10 17:56:41.9297 Info Copied Microsoft.AspNetCore.Cors.dll +2023-03-10 17:56:41.9297 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll +2023-03-10 17:56:41.9297 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll +2023-03-10 17:56:41.9297 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-03-10 17:56:41.9311 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-03-10 17:56:41.9311 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-03-10 17:56:41.9317 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-03-10 17:56:41.9317 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll +2023-03-10 17:56:41.9330 Info Copied Microsoft.AspNetCore.DataProtection.dll +2023-03-10 17:56:41.9330 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-03-10 17:56:41.9337 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-03-10 17:56:41.9337 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-03-10 17:56:41.9337 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-03-10 17:56:41.9337 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll +2023-03-10 17:56:41.9356 Info Copied Microsoft.AspNetCore.Diagnostics.dll +2023-03-10 17:56:41.9357 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-03-10 17:56:41.9357 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-03-10 17:56:41.9357 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll +2023-03-10 17:56:41.9370 Info Copied Microsoft.AspNetCore.dll +2023-03-10 17:56:41.9370 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll +2023-03-10 17:56:41.9370 Info Copied Microsoft.AspNetCore.HostFiltering.dll +2023-03-10 17:56:41.9378 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-03-10 17:56:41.9378 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-03-10 17:56:41.9378 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll +2023-03-10 17:56:41.9394 Info Copied Microsoft.AspNetCore.Hosting.dll +2023-03-10 17:56:41.9394 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-03-10 17:56:41.9400 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-03-10 17:56:41.9400 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll +2023-03-10 17:56:41.9407 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll +2023-03-10 17:56:41.9407 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll +2023-03-10 17:56:41.9416 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll +2023-03-10 17:56:41.9416 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll +2023-03-10 17:56:41.9416 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll +2023-03-10 17:56:41.9416 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll +2023-03-10 17:56:41.9435 Info Copied Microsoft.AspNetCore.Http.Connections.dll +2023-03-10 17:56:41.9437 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll +2023-03-10 17:56:41.9437 Info Copied Microsoft.AspNetCore.Http.dll +2023-03-10 17:56:41.9447 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll +2023-03-10 17:56:41.9457 Info Copied Microsoft.AspNetCore.Http.Extensions.dll +2023-03-10 17:56:41.9457 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll +2023-03-10 17:56:41.9457 Info Copied Microsoft.AspNetCore.Http.Features.dll +2023-03-10 17:56:41.9457 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll +2023-03-10 17:56:41.9472 Info Copied Microsoft.AspNetCore.Http.Results.dll +2023-03-10 17:56:41.9472 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll +2023-03-10 17:56:41.9480 Info Copied Microsoft.AspNetCore.HttpLogging.dll +2023-03-10 17:56:41.9480 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll +2023-03-10 17:56:41.9487 Info Copied Microsoft.AspNetCore.HttpOverrides.dll +2023-03-10 17:56:41.9487 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll +2023-03-10 17:56:41.9487 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll +2023-03-10 17:56:41.9487 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll +2023-03-10 17:56:41.9502 Info Copied Microsoft.AspNetCore.Identity.dll +2023-03-10 17:56:41.9502 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll +2023-03-10 17:56:41.9509 Info Copied Microsoft.AspNetCore.JsonPatch.dll +2023-03-10 17:56:41.9509 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll +2023-03-10 17:56:41.9509 Info Copied Microsoft.AspNetCore.Localization.dll +2023-03-10 17:56:41.9517 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll +2023-03-10 17:56:41.9517 Info Copied Microsoft.AspNetCore.Localization.Routing.dll +2023-03-10 17:56:41.9517 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll +2023-03-10 17:56:41.9528 Info Copied Microsoft.AspNetCore.Metadata.dll +2023-03-10 17:56:41.9528 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-03-10 17:56:41.9538 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-03-10 17:56:41.9538 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-03-10 17:56:41.9538 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-03-10 17:56:41.9547 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll +2023-03-10 17:56:41.9592 Info Copied Microsoft.AspNetCore.Mvc.Core.dll +2023-03-10 17:56:41.9592 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll +2023-03-10 17:56:41.9600 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll +2023-03-10 17:56:41.9600 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-03-10 17:56:41.9608 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-03-10 17:56:41.9608 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll +2023-03-10 17:56:41.9608 Info Copied Microsoft.AspNetCore.Mvc.dll +2023-03-10 17:56:41.9608 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-03-10 17:56:41.9621 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-03-10 17:56:41.9621 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-03-10 17:56:41.9629 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-03-10 17:56:41.9629 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll +2023-03-10 17:56:41.9629 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll +2023-03-10 17:56:41.9637 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-03-10 17:56:41.9637 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-03-10 17:56:41.9637 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll +2023-03-10 17:56:41.9652 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll +2023-03-10 17:56:41.9652 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-03-10 17:56:41.9666 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-03-10 17:56:41.9668 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-03-10 17:56:41.9676 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-03-10 17:56:41.9676 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-03-10 17:56:41.9695 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-03-10 17:56:41.9696 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll +2023-03-10 17:56:41.9696 Info Copied Microsoft.AspNetCore.Razor.dll +2023-03-10 17:56:41.9696 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll +2023-03-10 17:56:41.9709 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll +2023-03-10 17:56:41.9709 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-03-10 17:56:41.9709 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-03-10 17:56:41.9709 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll +2023-03-10 17:56:41.9724 Info Copied Microsoft.AspNetCore.ResponseCaching.dll +2023-03-10 17:56:41.9724 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll +2023-03-10 17:56:41.9731 Info Copied Microsoft.AspNetCore.ResponseCompression.dll +2023-03-10 17:56:41.9731 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll +2023-03-10 17:56:41.9740 Info Copied Microsoft.AspNetCore.Rewrite.dll +2023-03-10 17:56:41.9740 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll +2023-03-10 17:56:41.9747 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll +2023-03-10 17:56:41.9747 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll +2023-03-10 17:56:41.9763 Info Copied Microsoft.AspNetCore.Routing.dll +2023-03-10 17:56:41.9763 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll +2023-03-10 17:56:41.9778 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll +2023-03-10 17:56:41.9778 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll +2023-03-10 17:56:41.9793 Info Copied Microsoft.AspNetCore.Server.IIS.dll +2023-03-10 17:56:41.9793 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll +2023-03-10 17:56:41.9800 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll +2023-03-10 17:56:41.9800 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-03-10 17:56:41.9857 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-03-10 17:56:41.9857 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll +2023-03-10 17:56:41.9857 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll +2023-03-10 17:56:41.9867 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-03-10 17:56:41.9867 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-03-10 17:56:41.9878 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-03-10 17:56:41.9878 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-03-10 17:56:41.9878 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll +2023-03-10 17:56:41.9892 Info Copied Microsoft.AspNetCore.Session.dll +2023-03-10 17:56:41.9892 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll +2023-03-10 17:56:41.9899 Info Copied Microsoft.AspNetCore.SignalR.Common.dll +2023-03-10 17:56:41.9899 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll +2023-03-10 17:56:41.9911 Info Copied Microsoft.AspNetCore.SignalR.Core.dll +2023-03-10 17:56:41.9911 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll +2023-03-10 17:56:41.9918 Info Copied Microsoft.AspNetCore.SignalR.dll +2023-03-10 17:56:41.9918 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-03-10 17:56:41.9918 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-03-10 17:56:41.9918 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll +2023-03-10 17:56:41.9933 Info Copied Microsoft.AspNetCore.StaticFiles.dll +2023-03-10 17:56:41.9933 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll +2023-03-10 17:56:41.9940 Info Copied Microsoft.AspNetCore.WebSockets.dll +2023-03-10 17:56:41.9940 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll +2023-03-10 17:56:41.9950 Info Copied Microsoft.AspNetCore.WebUtilities.dll +2023-03-10 17:56:41.9950 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll +2023-03-10 17:56:41.9981 Info Copied Microsoft.CSharp.dll +2023-03-10 17:56:41.9981 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll +2023-03-10 17:56:41.9989 Info Copied Microsoft.Extensions.Caching.Abstractions.dll +2023-03-10 17:56:41.9989 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll +2023-03-10 17:56:41.9996 Info Copied Microsoft.Extensions.Caching.Memory.dll +2023-03-10 17:56:41.9996 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll +2023-03-10 17:56:41.9996 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll +2023-03-10 17:56:41.9996 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll +2023-03-10 17:56:42.0010 Info Copied Microsoft.Extensions.Configuration.Binder.dll +2023-03-10 17:56:42.0010 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll +2023-03-10 17:56:42.0017 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll +2023-03-10 17:56:42.0017 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll +2023-03-10 17:56:42.0017 Info Copied Microsoft.Extensions.Configuration.dll +2023-03-10 17:56:42.0017 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-03-10 17:56:42.0030 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-03-10 17:56:42.0030 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll +2023-03-10 17:56:42.0036 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll +2023-03-10 17:56:42.0036 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll +2023-03-10 17:56:42.0036 Info Copied Microsoft.Extensions.Configuration.Ini.dll +2023-03-10 17:56:42.0036 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll +2023-03-10 17:56:42.0049 Info Copied Microsoft.Extensions.Configuration.Json.dll +2023-03-10 17:56:42.0049 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-03-10 17:56:42.0049 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-03-10 17:56:42.0057 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll +2023-03-10 17:56:42.0057 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll +2023-03-10 17:56:42.0057 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll +2023-03-10 17:56:42.0069 Info Copied Microsoft.Extensions.Configuration.Xml.dll +2023-03-10 17:56:42.0069 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-03-10 17:56:42.1157 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-03-10 17:56:42.1157 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll +2023-03-10 17:56:42.1178 Info Copied Microsoft.Extensions.DependencyInjection.dll +2023-03-10 17:56:42.1178 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-03-10 17:56:42.1178 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-03-10 17:56:42.1187 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-03-10 17:56:42.1187 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-03-10 17:56:42.1187 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll +2023-03-10 17:56:42.1203 Info Copied Microsoft.Extensions.Features.dll +2023-03-10 17:56:42.1203 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll +2023-03-10 17:56:42.1221 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll +2023-03-10 17:56:42.1221 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll +2023-03-10 17:56:42.1227 Info Copied Microsoft.Extensions.FileProviders.Composite.dll +2023-03-10 17:56:42.1227 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll +2023-03-10 17:56:42.1227 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll +2023-03-10 17:56:42.1227 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll +2023-03-10 17:56:42.1258 Info Copied Microsoft.Extensions.FileProviders.Physical.dll +2023-03-10 17:56:42.1258 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll +2023-03-10 17:56:42.1272 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll +2023-03-10 17:56:42.1272 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll +2023-03-10 17:56:42.1279 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll +2023-03-10 17:56:42.1279 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll +2023-03-10 17:56:42.1279 Info Copied Microsoft.Extensions.Hosting.dll +2023-03-10 17:56:42.1288 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll +2023-03-10 17:56:42.1288 Info Copied Microsoft.Extensions.Http.dll +2023-03-10 17:56:42.1288 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll +2023-03-10 17:56:42.1307 Info Copied Microsoft.Extensions.Identity.Core.dll +2023-03-10 17:56:42.1307 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll +2023-03-10 17:56:42.1307 Info Copied Microsoft.Extensions.Identity.Stores.dll +2023-03-10 17:56:42.1307 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll +2023-03-10 17:56:42.1321 Info Copied Microsoft.Extensions.Localization.Abstractions.dll +2023-03-10 17:56:42.1321 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll +2023-03-10 17:56:42.1327 Info Copied Microsoft.Extensions.Localization.dll +2023-03-10 17:56:42.1327 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll +2023-03-10 17:56:42.1337 Info Copied Microsoft.Extensions.Logging.Abstractions.dll +2023-03-10 17:56:42.1337 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll +2023-03-10 17:56:42.1647 Info Copied Microsoft.Extensions.Logging.Configuration.dll +2023-03-10 17:56:42.1647 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll +2023-03-10 17:56:42.1658 Info Copied Microsoft.Extensions.Logging.Console.dll +2023-03-10 17:56:42.1658 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll +2023-03-10 17:56:42.1658 Info Copied Microsoft.Extensions.Logging.Debug.dll +2023-03-10 17:56:42.1666 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll +2023-03-10 17:56:42.1666 Info Copied Microsoft.Extensions.Logging.dll +2023-03-10 17:56:42.1666 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll +2023-03-10 17:56:42.1680 Info Copied Microsoft.Extensions.Logging.EventLog.dll +2023-03-10 17:56:42.1680 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll +2023-03-10 17:56:42.1680 Info Copied Microsoft.Extensions.Logging.EventSource.dll +2023-03-10 17:56:42.1680 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll +2023-03-10 17:56:42.1680 Info Copied Microsoft.Extensions.Logging.TraceSource.dll +2023-03-10 17:56:42.1680 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll +2023-03-10 17:56:42.1701 Info Copied Microsoft.Extensions.ObjectPool.dll +2023-03-10 17:56:42.1701 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-03-10 17:56:42.1708 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-03-10 17:56:42.1708 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll +2023-03-10 17:56:42.1708 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll +2023-03-10 17:56:42.1717 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll +2023-03-10 17:56:42.1717 Info Copied Microsoft.Extensions.Options.dll +2023-03-10 17:56:42.1717 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll +2023-03-10 17:56:42.1733 Info Copied Microsoft.Extensions.Primitives.dll +2023-03-10 17:56:42.1733 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll +2023-03-10 17:56:42.1740 Info Copied Microsoft.Extensions.WebEncoders.dll +2023-03-10 17:56:42.1740 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll +2023-03-10 17:56:42.1749 Info Copied Microsoft.JSInterop.dll +2023-03-10 17:56:42.1749 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll +2023-03-10 17:56:42.1761 Info Copied Microsoft.Net.Http.Headers.dll +2023-03-10 17:56:42.1761 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll +2023-03-10 17:56:42.1818 Info Copied Microsoft.VisualBasic.Core.dll +2023-03-10 17:56:42.1818 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll +2023-03-10 17:56:42.1827 Info Copied Microsoft.VisualBasic.dll +2023-03-10 17:56:42.1827 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll +2023-03-10 17:56:42.1827 Info Copied Microsoft.Win32.Primitives.dll +2023-03-10 17:56:42.1838 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll +2023-03-10 17:56:42.1838 Info Copied Microsoft.Win32.Registry.dll +2023-03-10 17:56:42.1838 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll +2023-03-10 17:56:42.2012 Info Copied MimeMapping.dll +2023-03-10 17:56:42.2017 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll +2023-03-10 17:56:42.2017 Info Copied Mono.Posix.dll +2023-03-10 17:56:42.2017 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll +2023-03-10 17:56:42.2033 Info Copied Mono.Unix.dll +2023-03-10 17:56:42.2033 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll +2023-03-10 17:56:42.2042 Info Copied mscorlib.dll +2023-03-10 17:56:42.2042 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll +2023-03-10 17:56:42.2051 Info Copied netstandard.dll +2023-03-10 17:56:42.2051 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll +2023-03-10 17:56:42.2060 Info Copied Newtonsoft.Json.Bson.dll +2023-03-10 17:56:42.2060 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll +2023-03-10 17:56:42.2077 Info Copied Newtonsoft.Json.dll +2023-03-10 17:56:42.2077 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll +2023-03-10 17:56:42.2097 Info Copied NLog.dll +2023-03-10 17:56:42.2097 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll +2023-03-10 17:56:42.2097 Info Copied NLog.Extensions.Logging.dll +2023-03-10 17:56:42.2107 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll +2023-03-10 17:56:42.2107 Info Copied NLog.Web.AspNetCore.dll +2023-03-10 17:56:42.2107 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll +2023-03-10 17:56:42.2121 Info Copied Org.Mentalis.dll +2023-03-10 17:56:42.2121 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll +2023-03-10 17:56:42.2133 Info Copied Polly.dll +2023-03-10 17:56:42.2133 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/README.md to destination: /app/Jackett/README.md +2023-03-10 17:56:42.2141 Info Copied README.md +2023-03-10 17:56:42.2141 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll +2023-03-10 17:56:42.2148 Info Copied SocksWebProxy.dll +2023-03-10 17:56:42.2148 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll +2023-03-10 17:56:42.2148 Info Copied System.AppContext.dll +2023-03-10 17:56:42.2157 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll +2023-03-10 17:56:42.2157 Info Copied System.Buffers.dll +2023-03-10 17:56:42.2157 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll +2023-03-10 17:56:42.2174 Info Copied System.Collections.Concurrent.dll +2023-03-10 17:56:42.2174 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll +2023-03-10 17:56:42.2187 Info Copied System.Collections.dll +2023-03-10 17:56:42.2187 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll +2023-03-10 17:56:42.2205 Info Copied System.Collections.Immutable.dll +2023-03-10 17:56:42.2207 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll +2023-03-10 17:56:42.2736 Info Copied System.Collections.NonGeneric.dll +2023-03-10 17:56:42.2740 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll +2023-03-10 17:56:42.2749 Info Copied System.Collections.Specialized.dll +2023-03-10 17:56:42.2749 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll +2023-03-10 17:56:42.2760 Info Copied System.ComponentModel.Annotations.dll +2023-03-10 17:56:42.2790 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll +2023-03-10 17:56:42.2790 Info Copied System.ComponentModel.DataAnnotations.dll +2023-03-10 17:56:42.2797 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll +2023-03-10 17:56:42.2797 Info Copied System.ComponentModel.dll +2023-03-10 17:56:42.2808 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll +2023-03-10 17:56:42.2808 Info Copied System.ComponentModel.EventBasedAsync.dll +2023-03-10 17:56:42.2808 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll +2023-03-10 17:56:42.2822 Info Copied System.ComponentModel.Primitives.dll +2023-03-10 17:56:42.2822 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll +2023-03-10 17:56:42.2841 Info Copied System.ComponentModel.TypeConverter.dll +2023-03-10 17:56:42.2841 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll +2023-03-10 17:56:42.2847 Info Copied System.Configuration.dll +2023-03-10 17:56:42.2847 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll +2023-03-10 17:56:42.2858 Info Copied System.Console.dll +2023-03-10 17:56:42.2858 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll +2023-03-10 17:56:42.2858 Info Copied System.Core.dll +2023-03-10 17:56:42.2858 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll +2023-03-10 17:56:42.3578 Info Copied System.Data.Common.dll +2023-03-10 17:56:42.3578 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll +2023-03-10 17:56:42.3587 Info Copied System.Data.DataSetExtensions.dll +2023-03-10 17:56:42.3587 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll +2023-03-10 17:56:42.3587 Info Copied System.Data.dll +2023-03-10 17:56:42.3587 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll +2023-03-10 17:56:42.3600 Info Copied System.Diagnostics.Contracts.dll +2023-03-10 17:56:42.3600 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll +2023-03-10 17:56:42.3600 Info Copied System.Diagnostics.Debug.dll +2023-03-10 17:56:42.3609 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll +2023-03-10 17:56:42.3620 Info Copied System.Diagnostics.DiagnosticSource.dll +2023-03-10 17:56:42.3620 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll +2023-03-10 17:56:42.3627 Info Copied System.Diagnostics.EventLog.dll +2023-03-10 17:56:42.3627 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll +2023-03-10 17:56:42.3627 Info Copied System.Diagnostics.FileVersionInfo.dll +2023-03-10 17:56:42.3627 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll +2023-03-10 17:56:42.3644 Info Copied System.Diagnostics.Process.dll +2023-03-10 17:56:42.3644 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll +2023-03-10 17:56:42.3651 Info Copied System.Diagnostics.StackTrace.dll +2023-03-10 17:56:42.3651 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll +2023-03-10 17:56:42.3657 Info Copied System.Diagnostics.TextWriterTraceListener.dll +2023-03-10 17:56:42.3657 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll +2023-03-10 17:56:42.3657 Info Copied System.Diagnostics.Tools.dll +2023-03-10 17:56:42.3657 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll +2023-03-10 17:56:42.3672 Info Copied System.Diagnostics.TraceSource.dll +2023-03-10 17:56:42.3672 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll +2023-03-10 17:56:42.3678 Info Copied System.Diagnostics.Tracing.dll +2023-03-10 17:56:42.3678 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.dll to destination: /app/Jackett/System.dll +2023-03-10 17:56:42.3678 Info Copied System.dll +2023-03-10 17:56:42.3687 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll +2023-03-10 17:56:42.3687 Info Copied System.Drawing.dll +2023-03-10 17:56:42.3687 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll +2023-03-10 17:56:42.3699 Info Copied System.Drawing.Primitives.dll +2023-03-10 17:56:42.3699 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll +2023-03-10 17:56:42.3699 Info Copied System.Dynamic.Runtime.dll +2023-03-10 17:56:42.3707 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll +2023-03-10 17:56:42.3707 Info Copied System.Formats.Asn1.dll +2023-03-10 17:56:42.3716 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll +2023-03-10 17:56:42.3716 Info Copied System.Globalization.Calendars.dll +2023-03-10 17:56:42.3716 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll +2023-03-10 17:56:42.3728 Info Copied System.Globalization.dll +2023-03-10 17:56:42.3728 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll +2023-03-10 17:56:42.3728 Info Copied System.Globalization.Extensions.dll +2023-03-10 17:56:42.3728 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll +2023-03-10 17:56:42.3741 Info Copied System.IO.Compression.Brotli.dll +2023-03-10 17:56:42.3741 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll +2023-03-10 17:56:42.3751 Info Copied System.IO.Compression.dll +2023-03-10 17:56:42.3751 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll +2023-03-10 17:56:42.3757 Info Copied System.IO.Compression.FileSystem.dll +2023-03-10 17:56:42.3757 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll +2023-03-10 17:56:42.3757 Info Copied System.IO.Compression.ZipFile.dll +2023-03-10 17:56:42.3757 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll +2023-03-10 17:56:42.3770 Info Copied System.IO.dll +2023-03-10 17:56:42.3770 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll +2023-03-10 17:56:42.4231 Info Copied System.IO.FileSystem.AccessControl.dll +2023-03-10 17:56:42.4231 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll +2023-03-10 17:56:42.4238 Info Copied System.IO.FileSystem.dll +2023-03-10 17:56:42.4238 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll +2023-03-10 17:56:42.4238 Info Copied System.IO.FileSystem.DriveInfo.dll +2023-03-10 17:56:42.4248 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll +2023-03-10 17:56:42.4248 Info Copied System.IO.FileSystem.Primitives.dll +2023-03-10 17:56:42.4248 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll +2023-03-10 17:56:42.4261 Info Copied System.IO.FileSystem.Watcher.dll +2023-03-10 17:56:42.4261 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll +2023-03-10 17:56:42.4269 Info Copied System.IO.IsolatedStorage.dll +2023-03-10 17:56:42.4269 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll +2023-03-10 17:56:42.4278 Info Copied System.IO.MemoryMappedFiles.dll +2023-03-10 17:56:42.4278 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll +2023-03-10 17:56:42.4278 Info Copied System.IO.Pipelines.dll +2023-03-10 17:56:42.4288 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll +2023-03-10 17:56:42.4288 Info Copied System.IO.Pipes.AccessControl.dll +2023-03-10 17:56:42.4288 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll +2023-03-10 17:56:42.4301 Info Copied System.IO.Pipes.dll +2023-03-10 17:56:42.4301 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll +2023-03-10 17:56:42.4307 Info Copied System.IO.UnmanagedMemoryStream.dll +2023-03-10 17:56:42.4307 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll +2023-03-10 17:56:42.4322 Info Copied System.Linq.dll +2023-03-10 17:56:42.4322 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll +2023-03-10 17:56:42.4394 Info Copied System.Linq.Expressions.dll +2023-03-10 17:56:42.4396 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll +2023-03-10 17:56:42.4415 Info Copied System.Linq.Parallel.dll +2023-03-10 17:56:42.4417 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll +2023-03-10 17:56:42.4417 Info Copied System.Linq.Queryable.dll +2023-03-10 17:56:42.4428 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll +2023-03-10 17:56:42.5231 Info Copied System.Memory.dll +2023-03-10 17:56:42.5231 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll +2023-03-10 17:56:42.5239 Info Copied System.Net.dll +2023-03-10 17:56:42.5239 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll +2023-03-10 17:56:42.5274 Info Copied System.Net.Http.dll +2023-03-10 17:56:42.5274 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll +2023-03-10 17:56:42.5282 Info Copied System.Net.Http.Json.dll +2023-03-10 17:56:42.5282 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll +2023-03-10 17:56:42.5294 Info Copied System.Net.HttpListener.dll +2023-03-10 17:56:42.5294 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll +2023-03-10 17:56:42.5310 Info Copied System.Net.Mail.dll +2023-03-10 17:56:42.5310 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll +2023-03-10 17:56:42.5318 Info Copied System.Net.NameResolution.dll +2023-03-10 17:56:42.5318 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll +2023-03-10 17:56:42.5328 Info Copied System.Net.NetworkInformation.dll +2023-03-10 17:56:42.5328 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll +2023-03-10 17:56:42.5328 Info Copied System.Net.Ping.dll +2023-03-10 17:56:42.5337 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll +2023-03-10 17:56:42.5347 Info Copied System.Net.Primitives.dll +2023-03-10 17:56:42.5347 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll +2023-03-10 17:56:42.5359 Info Copied System.Net.Quic.dll +2023-03-10 17:56:42.5359 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll +2023-03-10 17:56:42.5371 Info Copied System.Net.Requests.dll +2023-03-10 17:56:42.5371 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll +2023-03-10 17:56:42.5388 Info Copied System.Net.Security.dll +2023-03-10 17:56:42.5388 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll +2023-03-10 17:56:42.5388 Info Copied System.Net.ServicePoint.dll +2023-03-10 17:56:42.5397 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll +2023-03-10 17:56:42.5411 Info Copied System.Net.Sockets.dll +2023-03-10 17:56:42.5411 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll +2023-03-10 17:56:42.5421 Info Copied System.Net.WebClient.dll +2023-03-10 17:56:42.5421 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll +2023-03-10 17:56:42.5428 Info Copied System.Net.WebHeaderCollection.dll +2023-03-10 17:56:42.5428 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll +2023-03-10 17:56:42.6013 Info Copied System.Net.WebProxy.dll +2023-03-10 17:56:42.6020 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll +2023-03-10 17:56:42.6035 Info Copied System.Net.WebSockets.Client.dll +2023-03-10 17:56:42.6039 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll +2023-03-10 17:56:42.6056 Info Copied System.Net.WebSockets.dll +2023-03-10 17:56:42.6060 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll +2023-03-10 17:56:42.6071 Info Copied System.Numerics.dll +2023-03-10 17:56:42.6071 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll +2023-03-10 17:56:42.6085 Info Copied System.Numerics.Vectors.dll +2023-03-10 17:56:42.6088 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll +2023-03-10 17:56:42.6104 Info Copied System.ObjectModel.dll +2023-03-10 17:56:42.6108 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll +2023-03-10 17:56:42.6580 Info Copied System.Private.CoreLib.dll +2023-03-10 17:56:42.6580 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll +2023-03-10 17:56:42.6637 Info Copied System.Private.DataContractSerialization.dll +2023-03-10 17:56:42.6637 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll +2023-03-10 17:56:42.6648 Info Copied System.Private.Uri.dll +2023-03-10 17:56:42.6648 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll +2023-03-10 17:56:42.8885 Info Copied System.Private.Xml.dll +2023-03-10 17:56:42.8892 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll +2023-03-10 17:56:42.8920 Info Copied System.Private.Xml.Linq.dll +2023-03-10 17:56:42.8920 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll +2023-03-10 17:56:42.8941 Info Copied System.Reflection.DispatchProxy.dll +2023-03-10 17:56:42.8941 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll +2023-03-10 17:56:42.8958 Info Copied System.Reflection.dll +2023-03-10 17:56:42.8958 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll +2023-03-10 17:56:42.8974 Info Copied System.Reflection.Emit.dll +2023-03-10 17:56:42.8977 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll +2023-03-10 17:56:42.8991 Info Copied System.Reflection.Emit.ILGeneration.dll +2023-03-10 17:56:42.8991 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll +2023-03-10 17:56:42.9011 Info Copied System.Reflection.Emit.Lightweight.dll +2023-03-10 17:56:42.9011 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll +2023-03-10 17:56:42.9029 Info Copied System.Reflection.Extensions.dll +2023-03-10 17:56:42.9029 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll +2023-03-10 17:56:42.9904 Info Copied System.Reflection.Metadata.dll +2023-03-10 17:56:42.9909 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll +2023-03-10 17:56:42.9920 Info Copied System.Reflection.Primitives.dll +2023-03-10 17:56:42.9920 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll +2023-03-10 17:56:42.9931 Info Copied System.Reflection.TypeExtensions.dll +2023-03-10 17:56:42.9931 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll +2023-03-10 17:56:42.9942 Info Copied System.Resources.Reader.dll +2023-03-10 17:56:42.9942 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll +2023-03-10 17:56:42.9953 Info Copied System.Resources.ResourceManager.dll +2023-03-10 17:56:42.9953 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll +2023-03-10 17:56:42.9965 Info Copied System.Resources.Writer.dll +2023-03-10 17:56:42.9967 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll +2023-03-10 17:56:42.9977 Info Copied System.Runtime.CompilerServices.Unsafe.dll +2023-03-10 17:56:42.9977 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll +2023-03-10 17:56:42.9989 Info Copied System.Runtime.CompilerServices.VisualC.dll +2023-03-10 17:56:42.9989 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll +2023-03-10 17:56:43.0001 Info Copied System.Runtime.dll +2023-03-10 17:56:43.0001 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll +2023-03-10 17:56:43.0012 Info Copied System.Runtime.Extensions.dll +2023-03-10 17:56:43.0012 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll +2023-03-10 17:56:43.0022 Info Copied System.Runtime.Handles.dll +2023-03-10 17:56:43.0022 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll +2023-03-10 17:56:43.0034 Info Copied System.Runtime.InteropServices.dll +2023-03-10 17:56:43.0037 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll +2023-03-10 17:56:43.0037 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll +2023-03-10 17:56:43.0048 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll +2023-03-10 17:56:43.0057 Info Copied System.Runtime.Intrinsics.dll +2023-03-10 17:56:43.0057 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll +2023-03-10 17:56:43.0068 Info Copied System.Runtime.Loader.dll +2023-03-10 17:56:43.0068 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll +2023-03-10 17:56:43.0086 Info Copied System.Runtime.Numerics.dll +2023-03-10 17:56:43.0089 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll +2023-03-10 17:56:43.0098 Info Copied System.Runtime.Serialization.dll +2023-03-10 17:56:43.0098 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll +2023-03-10 17:56:43.0350 Info Copied System.Runtime.Serialization.Formatters.dll +2023-03-10 17:56:43.0350 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll +2023-03-10 17:56:43.0362 Info Copied System.Runtime.Serialization.Json.dll +2023-03-10 17:56:43.0362 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll +2023-03-10 17:56:43.0373 Info Copied System.Runtime.Serialization.Primitives.dll +2023-03-10 17:56:43.0373 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll +2023-03-10 17:56:43.0384 Info Copied System.Runtime.Serialization.Xml.dll +2023-03-10 17:56:43.0388 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll +2023-03-10 17:56:43.0397 Info Copied System.Security.AccessControl.dll +2023-03-10 17:56:43.0397 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll +2023-03-10 17:56:43.0411 Info Copied System.Security.Claims.dll +2023-03-10 17:56:43.0411 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll +2023-03-10 17:56:43.0445 Info Copied System.Security.Cryptography.Algorithms.dll +2023-03-10 17:56:43.0448 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll +2023-03-10 17:56:43.0457 Info Copied System.Security.Cryptography.Cng.dll +2023-03-10 17:56:43.0457 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll +2023-03-10 17:56:43.0471 Info Copied System.Security.Cryptography.Csp.dll +2023-03-10 17:56:43.0471 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll +2023-03-10 17:56:43.0484 Info Copied System.Security.Cryptography.Encoding.dll +2023-03-10 17:56:43.0487 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll +2023-03-10 17:56:43.0502 Info Copied System.Security.Cryptography.OpenSsl.dll +2023-03-10 17:56:43.0502 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll +2023-03-10 17:56:43.0534 Info Copied System.Security.Cryptography.Pkcs.dll +2023-03-10 17:56:43.0537 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll +2023-03-10 17:56:43.1568 Info Copied System.Security.Cryptography.Primitives.dll +2023-03-10 17:56:43.1568 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll +2023-03-10 17:56:43.1588 Info Copied System.Security.Cryptography.ProtectedData.dll +2023-03-10 17:56:43.1588 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll +2023-03-10 17:56:43.1633 Info Copied System.Security.Cryptography.X509Certificates.dll +2023-03-10 17:56:43.1637 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll +2023-03-10 17:56:43.1666 Info Copied System.Security.Cryptography.Xml.dll +2023-03-10 17:56:43.1670 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll +2023-03-10 17:56:43.1680 Info Copied System.Security.dll +2023-03-10 17:56:43.1680 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll +2023-03-10 17:56:43.1694 Info Copied System.Security.Principal.dll +2023-03-10 17:56:43.1698 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll +2023-03-10 17:56:43.1710 Info Copied System.Security.Principal.Windows.dll +2023-03-10 17:56:43.1710 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll +2023-03-10 17:56:43.1724 Info Copied System.Security.SecureString.dll +2023-03-10 17:56:43.1728 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll +2023-03-10 17:56:43.1740 Info Copied System.ServiceModel.Web.dll +2023-03-10 17:56:43.1740 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll +2023-03-10 17:56:43.1754 Info Copied System.ServiceProcess.dll +2023-03-10 17:56:43.1758 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll +2023-03-10 17:56:43.1769 Info Copied System.ServiceProcess.ServiceController.dll +2023-03-10 17:56:43.1769 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll +2023-03-10 17:56:43.2092 Info Copied System.Text.Encoding.CodePages.dll +2023-03-10 17:56:43.2098 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll +2023-03-10 17:56:43.2110 Info Copied System.Text.Encoding.dll +2023-03-10 17:56:43.2110 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll +2023-03-10 17:56:43.2124 Info Copied System.Text.Encoding.Extensions.dll +2023-03-10 17:56:43.2127 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll +2023-03-10 17:56:43.2144 Info Copied System.Text.Encodings.Web.dll +2023-03-10 17:56:43.2148 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll +2023-03-10 17:56:43.2209 Info Copied System.Text.Json.dll +2023-03-10 17:56:43.2209 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll +2023-03-10 17:56:43.2252 Info Copied System.Text.RegularExpressions.dll +2023-03-10 17:56:43.2252 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll +2023-03-10 17:56:43.2271 Info Copied System.Threading.Channels.dll +2023-03-10 17:56:43.2271 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll +2023-03-10 17:56:43.2287 Info Copied System.Threading.dll +2023-03-10 17:56:43.2287 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll +2023-03-10 17:56:43.2641 Info Copied System.Threading.Overlapped.dll +2023-03-10 17:56:43.2641 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll +2023-03-10 17:56:43.2672 Info Copied System.Threading.Tasks.Dataflow.dll +2023-03-10 17:56:43.2672 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll +2023-03-10 17:56:43.2686 Info Copied System.Threading.Tasks.dll +2023-03-10 17:56:43.2690 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll +2023-03-10 17:56:43.2700 Info Copied System.Threading.Tasks.Extensions.dll +2023-03-10 17:56:43.2700 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll +2023-03-10 17:56:43.2719 Info Copied System.Threading.Tasks.Parallel.dll +2023-03-10 17:56:43.2719 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll +2023-03-10 17:56:43.2733 Info Copied System.Threading.Thread.dll +2023-03-10 17:56:43.2733 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll +2023-03-10 17:56:43.2747 Info Copied System.Threading.ThreadPool.dll +2023-03-10 17:56:43.2747 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll +2023-03-10 17:56:43.2761 Info Copied System.Threading.Timer.dll +2023-03-10 17:56:43.2761 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll +2023-03-10 17:56:43.2775 Info Copied System.Transactions.dll +2023-03-10 17:56:43.2779 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll +2023-03-10 17:56:43.2802 Info Copied System.Transactions.Local.dll +2023-03-10 17:56:43.2802 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll +2023-03-10 17:56:43.2815 Info Copied System.ValueTuple.dll +2023-03-10 17:56:43.2818 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll +2023-03-10 17:56:43.2829 Info Copied System.Web.dll +2023-03-10 17:56:43.2829 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll +2023-03-10 17:56:43.2843 Info Copied System.Web.HttpUtility.dll +2023-03-10 17:56:43.2843 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll +2023-03-10 17:56:43.3229 Info Copied System.Windows.dll +2023-03-10 17:56:43.3229 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll +2023-03-10 17:56:43.3245 Info Copied System.Xml.dll +2023-03-10 17:56:43.3249 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll +2023-03-10 17:56:43.3259 Info Copied System.Xml.Linq.dll +2023-03-10 17:56:43.3259 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll +2023-03-10 17:56:43.3273 Info Copied System.Xml.ReaderWriter.dll +2023-03-10 17:56:43.3277 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll +2023-03-10 17:56:43.3287 Info Copied System.Xml.Serialization.dll +2023-03-10 17:56:43.3287 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll +2023-03-10 17:56:43.3301 Info Copied System.Xml.XDocument.dll +2023-03-10 17:56:43.3301 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll +2023-03-10 17:56:43.3314 Info Copied System.Xml.XmlDocument.dll +2023-03-10 17:56:43.3318 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll +2023-03-10 17:56:43.3329 Info Copied System.Xml.XmlSerializer.dll +2023-03-10 17:56:43.3329 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll +2023-03-10 17:56:43.3342 Info Copied System.Xml.XPath.dll +2023-03-10 17:56:43.3342 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll +2023-03-10 17:56:43.3356 Info Copied System.Xml.XPath.XDocument.dll +2023-03-10 17:56:43.3360 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll +2023-03-10 17:56:43.3371 Info Copied WindowsBase.dll +2023-03-10 17:56:43.3371 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll +2023-03-10 17:56:43.3394 Info Copied YamlDotNet.dll +2023-03-10 17:56:43.3398 Info File copying complete +2023-03-10 17:56:43.3452 Info Deleting file /app/Jackett/Definitions/pornleech.yml +2023-03-10 17:56:43.3720 Info Killing process 133 +2023-03-10 17:56:46.4497 Info Process 133 didn't exit within 2 seconds after a SIGTERM +2023-03-13 16:21:20.2342 Info Jackett Updater v0.20.3593 +2023-03-13 16:21:20.4545 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "133" "--NoRestart" +2023-03-13 16:21:20.4642 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-13 16:21:20.9378 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb +2023-03-13 16:21:20.9389 Info Deleted /app/Jackett/DateTimeRoutines.pdb +2023-03-13 16:21:20.9389 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb +2023-03-13 16:21:20.9402 Info Deleted /app/Jackett/Jackett.Common.pdb +2023-03-13 16:21:20.9402 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb +2023-03-13 16:21:20.9413 Info Deleted /app/Jackett/JackettUpdater.pdb +2023-03-13 16:21:20.9417 Info Attempting to remove: /app/Jackett/jackett.pdb +2023-03-13 16:21:20.9417 Info Deleted /app/Jackett/jackett.pdb +2023-03-13 16:21:20.9429 Info Attempting to remove: /app/Jackett/jackett +2023-03-13 16:21:20.9429 Info Deleted /app/Jackett/jackett +2023-03-13 16:21:20.9439 Info Finding files in: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/ +2023-03-13 16:21:20.9557 Info 890 update files found +2023-03-13 16:21:20.9580 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll +2023-03-13 16:21:20.9645 Info Copied AngleSharp.dll +2023-03-13 16:21:20.9650 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll +2023-03-13 16:21:20.9664 Info Copied AngleSharp.Xml.dll +2023-03-13 16:21:20.9668 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll +2023-03-13 16:21:20.9692 Info Copied Autofac.dll +2023-03-13 16:21:20.9697 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll +2023-03-13 16:21:20.9711 Info Copied Autofac.Extensions.DependencyInjection.dll +2023-03-13 16:21:20.9711 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll +2023-03-13 16:21:20.9736 Info Copied AutoMapper.dll +2023-03-13 16:21:20.9741 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll +2023-03-13 16:21:20.9754 Info Copied BencodeNET.dll +2023-03-13 16:21:20.9758 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll +2023-03-13 16:21:20.9777 Info Copied CommandLine.dll +2023-03-13 16:21:20.9777 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css +2023-03-13 16:21:20.9795 Info Copied animate.css +2023-03-13 16:21:20.9799 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png +2023-03-13 16:21:20.9809 Info Copied apple-touch-icon.png +2023-03-13 16:21:20.9809 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png +2023-03-13 16:21:20.9823 Info Copied binding_dark.png +2023-03-13 16:21:20.9828 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css +2023-03-13 16:21:20.9842 Info Copied bootstrap.min.css +2023-03-13 16:21:20.9847 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js +2023-03-13 16:21:20.9858 Info Copied bootstrap.min.js +2023-03-13 16:21:20.9858 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js +2023-03-13 16:21:20.9872 Info Copied common.js +2023-03-13 16:21:20.9872 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css +2023-03-13 16:21:20.9885 Info Copied bootstrap-multiselect.css +2023-03-13 16:21:20.9890 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css +2023-03-13 16:21:20.9900 Info Copied font-awesome.min.css +2023-03-13 16:21:20.9900 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css +2023-03-13 16:21:20.9916 Info Copied jquery.dataTables.min.css +2023-03-13 16:21:20.9920 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css +2023-03-13 16:21:20.9931 Info Copied tagify.css +2023-03-13 16:21:20.9931 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css +2023-03-13 16:21:20.9946 Info Copied custom_mobile.css +2023-03-13 16:21:20.9950 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css +2023-03-13 16:21:20.9960 Info Copied custom.css +2023-03-13 16:21:20.9960 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js +2023-03-13 16:21:20.9977 Info Copied custom.js +2023-03-13 16:21:20.9977 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico +2023-03-13 16:21:20.9996 Info Copied favicon.ico +2023-03-13 16:21:21.0002 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot +2023-03-13 16:21:21.0014 Info Copied fontawesome-webfont.eot +2023-03-13 16:21:21.0019 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg +2023-03-13 16:21:21.0042 Info Copied fontawesome-webfont.svg +2023-03-13 16:21:21.0047 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf +2023-03-13 16:21:21.0063 Info Copied fontawesome-webfont.ttf +2023-03-13 16:21:21.0068 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff +2023-03-13 16:21:21.0082 Info Copied fontawesome-webfont.woff +2023-03-13 16:21:21.0082 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 +2023-03-13 16:21:21.0111 Info Copied fontawesome-webfont.woff2 +2023-03-13 16:21:21.0111 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf +2023-03-13 16:21:21.0130 Info Copied FontAwesome.otf +2023-03-13 16:21:21.0130 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot +2023-03-13 16:21:21.0146 Info Copied glyphicons-halflings-regular.eot +2023-03-13 16:21:21.0150 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg +2023-03-13 16:21:21.0166 Info Copied glyphicons-halflings-regular.svg +2023-03-13 16:21:21.0170 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf +2023-03-13 16:21:21.0182 Info Copied glyphicons-halflings-regular.ttf +2023-03-13 16:21:21.0187 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff +2023-03-13 16:21:21.0199 Info Copied glyphicons-halflings-regular.woff +2023-03-13 16:21:21.0199 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 +2023-03-13 16:21:21.0213 Info Copied glyphicons-halflings-regular.woff2 +2023-03-13 16:21:21.0218 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png +2023-03-13 16:21:21.0229 Info Copied sort_asc_disabled.png +2023-03-13 16:21:21.0229 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png +2023-03-13 16:21:21.0242 Info Copied sort_asc.png +2023-03-13 16:21:21.0247 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png +2023-03-13 16:21:21.0257 Info Copied sort_both.png +2023-03-13 16:21:21.0257 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png +2023-03-13 16:21:21.0271 Info Copied sort_desc_disabled.png +2023-03-13 16:21:21.0271 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png +2023-03-13 16:21:21.0285 Info Copied sort_desc.png +2023-03-13 16:21:21.0291 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html +2023-03-13 16:21:21.0303 Info Copied index.html +2023-03-13 16:21:21.0308 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png +2023-03-13 16:21:21.0318 Info Copied jacket_medium.png +2023-03-13 16:21:21.0318 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js +2023-03-13 16:21:21.0332 Info Copied api.js +2023-03-13 16:21:21.0332 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js +2023-03-13 16:21:21.0349 Info Copied bootstrap-multiselect.js +2023-03-13 16:21:21.0349 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js +2023-03-13 16:21:21.0364 Info Copied bootstrap-notify.js +2023-03-13 16:21:21.0369 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js +2023-03-13 16:21:21.0379 Info Copied filesize.min.js +2023-03-13 16:21:21.0379 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js +2023-03-13 16:21:21.0397 Info Copied handlebars.min.js +2023-03-13 16:21:21.0397 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js +2023-03-13 16:21:21.0412 Info Copied handlebarsextend.js +2023-03-13 16:21:21.0412 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js +2023-03-13 16:21:21.0427 Info Copied handlebarsmoment.js +2023-03-13 16:21:21.0427 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js +2023-03-13 16:21:21.0445 Info Copied jquery.dataTables.min.js +2023-03-13 16:21:21.0450 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js +2023-03-13 16:21:21.0464 Info Copied jquery.min.js +2023-03-13 16:21:21.0468 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js +2023-03-13 16:21:21.0481 Info Copied jQuery.tagify.min.js +2023-03-13 16:21:21.0481 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js +2023-03-13 16:21:21.0497 Info Copied moment.min.js +2023-03-13 16:21:21.0497 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js +2023-03-13 16:21:21.0513 Info Copied tagify.min.js +2023-03-13 16:21:21.0518 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html +2023-03-13 16:21:21.0528 Info Copied login.html +2023-03-13 16:21:21.0528 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/createdump to destination: /app/Jackett/createdump +2023-03-13 16:21:21.0547 Info Copied createdump +2023-03-13 16:21:21.0547 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll +2023-03-13 16:21:21.0561 Info Copied DateTimeRoutines.dll +2023-03-13 16:21:21.0561 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb +2023-03-13 16:21:21.0577 Info Copied DateTimeRoutines.pdb +2023-03-13 16:21:21.0577 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml +2023-03-13 16:21:21.0591 Info Copied 0daykiev.yml +2023-03-13 16:21:21.0591 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml +2023-03-13 16:21:21.0606 Info Copied 0magnet.yml +2023-03-13 16:21:21.0610 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml +2023-03-13 16:21:21.0621 Info Copied 1337x.yml +2023-03-13 16:21:21.0621 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml +2023-03-13 16:21:21.0635 Info Copied 1ptbar.yml +2023-03-13 16:21:21.0640 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml +2023-03-13 16:21:21.0650 Info Copied 2fast4you.yml +2023-03-13 16:21:21.0650 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml +2023-03-13 16:21:21.0665 Info Copied 2xfree.yml +2023-03-13 16:21:21.0670 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml +2023-03-13 16:21:21.0680 Info Copied 3changtrai.yml +2023-03-13 16:21:21.0680 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml +2023-03-13 16:21:21.0693 Info Copied 3dtorrents.yml +2023-03-13 16:21:21.0698 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml +2023-03-13 16:21:21.0708 Info Copied 4thd.yml +2023-03-13 16:21:21.0708 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml +2023-03-13 16:21:21.0725 Info Copied 52pt.yml +2023-03-13 16:21:21.0731 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml +2023-03-13 16:21:21.0744 Info Copied abnormal.yml +2023-03-13 16:21:21.0749 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml +2023-03-13 16:21:21.0762 Info Copied abtorrents.yml +2023-03-13 16:21:21.0767 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml +2023-03-13 16:21:21.0780 Info Copied acervos-api.yml +2023-03-13 16:21:21.0780 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml +2023-03-13 16:21:21.0798 Info Copied acgrip.yml +2023-03-13 16:21:21.0798 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml +2023-03-13 16:21:21.0815 Info Copied acgsou.yml +2023-03-13 16:21:21.0821 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml +2023-03-13 16:21:21.0834 Info Copied acidlounge.yml +2023-03-13 16:21:21.0839 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml +2023-03-13 16:21:21.0852 Info Copied acrossthetasman.yml +2023-03-13 16:21:21.0857 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml +2023-03-13 16:21:21.0870 Info Copied aftershock.yml +2023-03-13 16:21:21.0870 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml +2023-03-13 16:21:21.0888 Info Copied aidoruonline.yml +2023-03-13 16:21:21.0888 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml +2023-03-13 16:21:21.0905 Info Copied aither-api.yml +2023-03-13 16:21:21.0923 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml +2023-03-13 16:21:21.1009 Info Copied amigosshare.yml +2023-03-13 16:21:21.1009 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml +2023-03-13 16:21:21.1031 Info Copied anilibria.yml +2023-03-13 16:21:21.1031 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml +2023-03-13 16:21:21.1050 Info Copied anime-free.yml +2023-03-13 16:21:21.1050 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml +2023-03-13 16:21:21.1071 Info Copied animelayer.yml +2023-03-13 16:21:21.1077 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml +2023-03-13 16:21:21.1091 Info Copied animetracker.yml +2023-03-13 16:21:21.1097 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml +2023-03-13 16:21:21.1112 Info Copied animeworld-api.yml +2023-03-13 16:21:21.1121 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml +2023-03-13 16:21:21.1135 Info Copied anirena.yml +2023-03-13 16:21:21.1141 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml +2023-03-13 16:21:21.1156 Info Copied anisource.yml +2023-03-13 16:21:21.1162 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml +2023-03-13 16:21:21.1180 Info Copied anthelion-api.yml +2023-03-13 16:21:21.1180 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml +2023-03-13 16:21:21.1202 Info Copied arabafenice.yml +2023-03-13 16:21:21.1208 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml +2023-03-13 16:21:21.1221 Info Copied arabp2p.yml +2023-03-13 16:21:21.1227 Info Attempting to copy arabtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/arabtorrents.yml to destination: /app/Jackett/Definitions/arabtorrents.yml +2023-03-13 16:21:21.1240 Info Copied arabtorrents.yml +2023-03-13 16:21:21.1240 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml +2023-03-13 16:21:21.1260 Info Copied arenabg.yml +2023-03-13 16:21:21.1260 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml +2023-03-13 16:21:21.1279 Info Copied asiancinema.yml +2023-03-13 16:21:21.1279 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml +2023-03-13 16:21:21.1297 Info Copied asiandvdclub.yml +2023-03-13 16:21:21.1297 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml +2023-03-13 16:21:21.1319 Info Copied audiences.yml +2023-03-13 16:21:21.1319 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml +2023-03-13 16:21:21.1338 Info Copied audionews.yml +2023-03-13 16:21:21.1338 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml +2023-03-13 16:21:21.1357 Info Copied aussierules.yml +2023-03-13 16:21:21.1357 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml +2023-03-13 16:21:21.1377 Info Copied backups.yml +2023-03-13 16:21:21.1377 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml +2023-03-13 16:21:21.1394 Info Copied badasstorrents.yml +2023-03-13 16:21:21.1400 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml +2023-03-13 16:21:21.1412 Info Copied bangumi-moe.yml +2023-03-13 16:21:21.1417 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml +2023-03-13 16:21:21.1431 Info Copied beitai.yml +2023-03-13 16:21:21.1431 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml +2023-03-13 16:21:21.1450 Info Copied bestcore.yml +2023-03-13 16:21:21.1450 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml +2023-03-13 16:21:21.1469 Info Copied beyond-hd.yml +2023-03-13 16:21:21.1469 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml +2023-03-13 16:21:21.1488 Info Copied bibliotik.yml +2023-03-13 16:21:21.1488 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml +2023-03-13 16:21:21.1508 Info Copied bigfangroup.yml +2023-03-13 16:21:21.1508 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml +2023-03-13 16:21:21.1524 Info Copied bitbazis.yml +2023-03-13 16:21:21.1527 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml +2023-03-13 16:21:21.1527 Info Copied bitded.yml +2023-03-13 16:21:21.1527 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml +2023-03-13 16:21:21.1540 Info Copied bithorlo.yml +2023-03-13 16:21:21.1540 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml +2023-03-13 16:21:21.1548 Info Copied bithumen.yml +2023-03-13 16:21:21.1548 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml +2023-03-13 16:21:21.1557 Info Copied bitnova.yml +2023-03-13 16:21:21.1557 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml +2023-03-13 16:21:21.1557 Info Copied bitofvalor.yml +2023-03-13 16:21:21.1566 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml +2023-03-13 16:21:21.1566 Info Copied bitru.yml +2023-03-13 16:21:21.1566 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml +2023-03-13 16:21:21.1580 Info Copied bitsearch.yml +2023-03-13 16:21:21.1580 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml +2023-03-13 16:21:21.1587 Info Copied bitsexy.yml +2023-03-13 16:21:21.1587 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml +2023-03-13 16:21:21.1587 Info Copied bitspyder.yml +2023-03-13 16:21:21.1597 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml +2023-03-13 16:21:21.1597 Info Copied Bittorrentfiles.yml +2023-03-13 16:21:21.1597 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml +2023-03-13 16:21:21.1610 Info Copied bitturk.yml +2023-03-13 16:21:21.1610 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml +2023-03-13 16:21:21.1618 Info Copied bluebird.yml +2023-03-13 16:21:21.1618 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml +2023-03-13 16:21:21.1618 Info Copied blutopia-api.yml +2023-03-13 16:21:21.1627 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml +2023-03-13 16:21:21.1627 Info Copied booktracker.yml +2023-03-13 16:21:21.1627 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml +2023-03-13 16:21:21.1641 Info Copied bootytape.yml +2023-03-13 16:21:21.1641 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml +2023-03-13 16:21:21.1648 Info Copied borgzelle.yml +2023-03-13 16:21:21.1648 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml +2023-03-13 16:21:21.1648 Info Copied boxingtorrents.yml +2023-03-13 16:21:21.1658 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml +2023-03-13 16:21:21.1658 Info Copied broadcity.yml +2023-03-13 16:21:21.1658 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml +2023-03-13 16:21:21.1671 Info Copied brsociety-api.yml +2023-03-13 16:21:21.1671 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml +2023-03-13 16:21:21.1678 Info Copied bt4g.yml +2023-03-13 16:21:21.1678 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml +2023-03-13 16:21:21.1678 Info Copied btdigg.yml +2023-03-13 16:21:21.1688 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml +2023-03-13 16:21:21.1688 Info Copied btetree.yml +2023-03-13 16:21:21.1688 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml +2023-03-13 16:21:21.1701 Info Copied btmet.yml +2023-03-13 16:21:21.1701 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml +2023-03-13 16:21:21.1708 Info Copied btnext.yml +2023-03-13 16:21:21.1708 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml +2023-03-13 16:21:21.1708 Info Copied btschool.yml +2023-03-13 16:21:21.1717 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml +2023-03-13 16:21:21.1717 Info Copied btsow.yml +2023-03-13 16:21:21.1717 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml +2023-03-13 16:21:21.1731 Info Copied bulltorrent.yml +2023-03-13 16:21:21.1731 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml +2023-03-13 16:21:21.1738 Info Copied bwtorrents.yml +2023-03-13 16:21:21.1738 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml +2023-03-13 16:21:21.1746 Info Copied byrbt.yml +2023-03-13 16:21:21.1746 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml +2023-03-13 16:21:21.1746 Info Copied byrutor.yml +2023-03-13 16:21:21.1746 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml +2023-03-13 16:21:21.1761 Info Copied carpathians.yml +2023-03-13 16:21:21.1761 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml +2023-03-13 16:21:21.1768 Info Copied carphunter.yml +2023-03-13 16:21:21.1768 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml +2023-03-13 16:21:21.1768 Info Copied carpt.yml +2023-03-13 16:21:21.1778 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml +2023-03-13 16:21:21.1778 Info Copied cartoonchaos.yml +2023-03-13 16:21:21.1778 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml +2023-03-13 16:21:21.1791 Info Copied cathoderaytube.yml +2023-03-13 16:21:21.1791 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml +2023-03-13 16:21:21.1799 Info Copied catorrent.yml +2023-03-13 16:21:21.1799 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml +2023-03-13 16:21:21.1809 Info Copied ccfbits.yml +2023-03-13 16:21:21.1809 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml +2023-03-13 16:21:21.1818 Info Copied ceskeforum.yml +2023-03-13 16:21:21.1818 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml +2023-03-13 16:21:21.1827 Info Copied chdbits.yml +2023-03-13 16:21:21.1827 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml +2023-03-13 16:21:21.1827 Info Copied chilebt.yml +2023-03-13 16:21:21.1838 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml +2023-03-13 16:21:21.1838 Info Copied cinemageddon.yml +2023-03-13 16:21:21.1847 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml +2023-03-13 16:21:21.1847 Info Copied cinemamovies.yml +2023-03-13 16:21:21.1847 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml +2023-03-13 16:21:21.1862 Info Copied cinematik.yml +2023-03-13 16:21:21.1862 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml +2023-03-13 16:21:21.1871 Info Copied classix.yml +2023-03-13 16:21:21.1871 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml +2023-03-13 16:21:21.1880 Info Copied coastalcrew.yml +2023-03-13 16:21:21.1880 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml +2023-03-13 16:21:21.1889 Info Copied comicat.yml +2023-03-13 16:21:21.1889 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml +2023-03-13 16:21:21.1898 Info Copied concen.yml +2023-03-13 16:21:21.1898 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml +2023-03-13 16:21:21.1907 Info Copied concertos.yml +2023-03-13 16:21:21.1907 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml +2023-03-13 16:21:21.1907 Info Copied cpabien.yml +2023-03-13 16:21:21.1917 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml +2023-03-13 16:21:21.1917 Info Copied cpasbienclone.yml +2023-03-13 16:21:21.1917 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml +2023-03-13 16:21:21.1930 Info Copied cpasbiensi.yml +2023-03-13 16:21:21.1930 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml +2023-03-13 16:21:21.1937 Info Copied crackingpatching.yml +2023-03-13 16:21:21.1937 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml +2023-03-13 16:21:21.1937 Info Copied crazyhd.yml +2023-03-13 16:21:21.1947 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml +2023-03-13 16:21:21.1947 Info Copied crazyspirits.yml +2023-03-13 16:21:21.1947 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml +2023-03-13 16:21:21.1960 Info Copied crnaberza.yml +2023-03-13 16:21:21.1960 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml +2023-03-13 16:21:21.1968 Info Copied crt2fa.yml +2023-03-13 16:21:21.1968 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml +2023-03-13 16:21:21.1968 Info Copied danishbytes-api.yml +2023-03-13 16:21:21.1977 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml +2023-03-13 16:21:21.1977 Info Copied dariustracker.yml +2023-03-13 16:21:21.1977 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml +2023-03-13 16:21:21.1990 Info Copied dark-shadow.yml +2023-03-13 16:21:21.1990 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml +2023-03-13 16:21:21.1998 Info Copied datascene-api.yml +2023-03-13 16:21:21.1998 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml +2023-03-13 16:21:21.1998 Info Copied datatalli.yml +2023-03-13 16:21:21.2008 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml +2023-03-13 16:21:21.2008 Info Copied deildu.yml +2023-03-13 16:21:21.2008 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml +2023-03-13 16:21:21.2021 Info Copied demonoid.yml +2023-03-13 16:21:21.2021 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml +2023-03-13 16:21:21.2028 Info Copied desitorrents-api.yml +2023-03-13 16:21:21.2028 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml +2023-03-13 16:21:21.2028 Info Copied devil-torrents.yml +2023-03-13 16:21:21.2038 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml +2023-03-13 16:21:21.2038 Info Copied diablotorrent.yml +2023-03-13 16:21:21.2038 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml +2023-03-13 16:21:21.2050 Info Copied digitalcore.yml +2023-03-13 16:21:21.2050 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml +2023-03-13 16:21:21.2058 Info Copied dimeadozen.yml +2023-03-13 16:21:21.2058 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml +2023-03-13 16:21:21.2058 Info Copied discfan.yml +2023-03-13 16:21:21.2075 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml +2023-03-13 16:21:21.2081 Info Copied divteam.yml +2023-03-13 16:21:21.2081 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml +2023-03-13 16:21:21.2088 Info Copied dmhy.yml +2023-03-13 16:21:21.2088 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml +2023-03-13 16:21:21.2088 Info Copied docspedia.yml +2023-03-13 16:21:21.2097 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml +2023-03-13 16:21:21.2097 Info Copied dodder.yml +2023-03-13 16:21:21.2097 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml +2023-03-13 16:21:21.2110 Info Copied dreamtracker.yml +2023-03-13 16:21:21.2110 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml +2023-03-13 16:21:21.2118 Info Copied dxp.yml +2023-03-13 16:21:21.2118 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml +2023-03-13 16:21:21.2118 Info Copied ebookbay.yml +2023-03-13 16:21:21.2127 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml +2023-03-13 16:21:21.2127 Info Copied ebooks-shares.yml +2023-03-13 16:21:21.2127 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml +2023-03-13 16:21:21.2140 Info Copied ehentai.yml +2023-03-13 16:21:21.2140 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml +2023-03-13 16:21:21.2149 Info Copied electro-torrent.yml +2023-03-13 16:21:21.2149 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml +2023-03-13 16:21:21.2149 Info Copied empornium.yml +2023-03-13 16:21:21.2157 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml +2023-03-13 16:21:21.2157 Info Copied empornium2fa.yml +2023-03-13 16:21:21.2157 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml +2023-03-13 16:21:21.2168 Info Copied eniahd.yml +2023-03-13 16:21:21.2168 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml +2023-03-13 16:21:21.2168 Info Copied esharenet.yml +2023-03-13 16:21:21.2168 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml +2023-03-13 16:21:21.2180 Info Copied estone.yml +2023-03-13 16:21:21.2180 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml +2023-03-13 16:21:21.2187 Info Copied exkinoray.yml +2023-03-13 16:21:21.2187 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml +2023-03-13 16:21:21.2187 Info Copied extratorrent-st.yml +2023-03-13 16:21:21.2187 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml +2023-03-13 16:21:21.2200 Info Copied extremebits.yml +2023-03-13 16:21:21.2200 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml +2023-03-13 16:21:21.2206 Info Copied extremetorrents.yml +2023-03-13 16:21:21.2206 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml +2023-03-13 16:21:21.2206 Info Copied extremlymtorrents.yml +2023-03-13 16:21:21.2206 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml +2023-03-13 16:21:21.2219 Info Copied exttorrents.yml +2023-03-13 16:21:21.2219 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml +2023-03-13 16:21:21.2219 Info Copied eztv.yml +2023-03-13 16:21:21.2227 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml +2023-03-13 16:21:21.2227 Info Copied falkonvisionteam.yml +2023-03-13 16:21:21.2227 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml +2023-03-13 16:21:21.2239 Info Copied fanoin.yml +2023-03-13 16:21:21.2239 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml +2023-03-13 16:21:21.2239 Info Copied fantasticheaven.yml +2023-03-13 16:21:21.2247 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml +2023-03-13 16:21:21.2247 Info Copied fantastiko.yml +2023-03-13 16:21:21.2247 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml +2023-03-13 16:21:21.2258 Info Copied femdomcult.yml +2023-03-13 16:21:21.2258 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml +2023-03-13 16:21:21.2258 Info Copied fenyarnyek-tracker.yml +2023-03-13 16:21:21.2258 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml +2023-03-13 16:21:21.2271 Info Copied file-tracker.yml +2023-03-13 16:21:21.2271 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml +2023-03-13 16:21:21.2278 Info Copied filelisting.yml +2023-03-13 16:21:21.2278 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml +2023-03-13 16:21:21.2278 Info Copied finelite.yml +2023-03-13 16:21:21.2278 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml +2023-03-13 16:21:21.2291 Info Copied finvip.yml +2023-03-13 16:21:21.2291 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml +2023-03-13 16:21:21.2297 Info Copied firebit.yml +2023-03-13 16:21:21.2297 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml +2023-03-13 16:21:21.2297 Info Copied fluxzone.yml +2023-03-13 16:21:21.2297 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml +2023-03-13 16:21:21.2310 Info Copied freshmeat.yml +2023-03-13 16:21:21.2310 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml +2023-03-13 16:21:21.2317 Info Copied frozenlayer.yml +2023-03-13 16:21:21.2317 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml +2023-03-13 16:21:21.2317 Info Copied ftuapps.yml +2023-03-13 16:21:21.2317 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml +2023-03-13 16:21:21.2329 Info Copied funkytorrents.yml +2023-03-13 16:21:21.2329 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml +2023-03-13 16:21:21.2329 Info Copied fuzer.yml +2023-03-13 16:21:21.2337 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml +2023-03-13 16:21:21.2337 Info Copied gainbound.yml +2023-03-13 16:21:21.2337 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml +2023-03-13 16:21:21.2348 Info Copied gamestorrents.yml +2023-03-13 16:21:21.2348 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml +2023-03-13 16:21:21.2348 Info Copied gay-torrents.yml +2023-03-13 16:21:21.2348 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml +2023-03-13 16:21:21.2360 Info Copied gay-torrentsorg.yml +2023-03-13 16:21:21.2360 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml +2023-03-13 16:21:21.2366 Info Copied gaytorrentru.yml +2023-03-13 16:21:21.2366 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml +2023-03-13 16:21:21.2366 Info Copied generationfree-api.yml +2023-03-13 16:21:21.2366 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml +2023-03-13 16:21:21.2378 Info Copied genesismovement.yml +2023-03-13 16:21:21.2378 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml +2023-03-13 16:21:21.2378 Info Copied gigatorrents.yml +2023-03-13 16:21:21.2387 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml +2023-03-13 16:21:21.2387 Info Copied gimmepeers.yml +2023-03-13 16:21:21.2387 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml +2023-03-13 16:21:21.2398 Info Copied girotorrent.yml +2023-03-13 16:21:21.2398 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml +2023-03-13 16:21:21.2398 Info Copied gktorrent.yml +2023-03-13 16:21:21.2398 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml +2023-03-13 16:21:21.2410 Info Copied glodls.yml +2023-03-13 16:21:21.2410 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml +2023-03-13 16:21:21.2410 Info Copied greekdiamond.yml +2023-03-13 16:21:21.2418 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml +2023-03-13 16:21:21.2418 Info Copied greekteam.yml +2023-03-13 16:21:21.2418 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml +2023-03-13 16:21:21.2428 Info Copied gtorrentpro.yml +2023-03-13 16:21:21.2428 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml +2023-03-13 16:21:21.2428 Info Copied haidan.yml +2023-03-13 16:21:21.2436 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml +2023-03-13 16:21:21.2436 Info Copied haitang.yml +2023-03-13 16:21:21.2436 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml +2023-03-13 16:21:21.2447 Info Copied happyfappy.yml +2023-03-13 16:21:21.2447 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml +2023-03-13 16:21:21.2447 Info Copied hawke-uno.yml +2023-03-13 16:21:21.2447 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml +2023-03-13 16:21:21.2460 Info Copied hd-unit3d-api.yml +2023-03-13 16:21:21.2460 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml +2023-03-13 16:21:21.2460 Info Copied hd4fans.yml +2023-03-13 16:21:21.2468 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml +2023-03-13 16:21:21.2468 Info Copied hdarea.yml +2023-03-13 16:21:21.2468 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml +2023-03-13 16:21:21.2479 Info Copied hdatmos.yml +2023-03-13 16:21:21.2479 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml +2023-03-13 16:21:21.2479 Info Copied hdc.yml +2023-03-13 16:21:21.2487 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml +2023-03-13 16:21:21.2487 Info Copied hdchina.yml +2023-03-13 16:21:21.2487 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml +2023-03-13 16:21:21.2498 Info Copied hdcztorrent.yml +2023-03-13 16:21:21.2498 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml +2023-03-13 16:21:21.2498 Info Copied hddolby.yml +2023-03-13 16:21:21.2507 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml +2023-03-13 16:21:21.2507 Info Copied hdfans.yml +2023-03-13 16:21:21.2507 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml +2023-03-13 16:21:21.2517 Info Copied hdforever.yml +2023-03-13 16:21:21.2517 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml +2023-03-13 16:21:21.2517 Info Copied hdgalaktik.yml +2023-03-13 16:21:21.2517 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml +2023-03-13 16:21:21.2530 Info Copied hdhome.yml +2023-03-13 16:21:21.2530 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml +2023-03-13 16:21:21.2530 Info Copied hdmayi.yml +2023-03-13 16:21:21.2538 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml +2023-03-13 16:21:21.2538 Info Copied hdmonkey.yml +2023-03-13 16:21:21.2538 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml +2023-03-13 16:21:21.2549 Info Copied hdolimpo-api.yml +2023-03-13 16:21:21.2549 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml +2023-03-13 16:21:21.2549 Info Copied hdonly.yml +2023-03-13 16:21:21.2557 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml +2023-03-13 16:21:21.2557 Info Copied hdroute.yml +2023-03-13 16:21:21.2557 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml +2023-03-13 16:21:21.2568 Info Copied hdsky.yml +2023-03-13 16:21:21.2568 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml +2023-03-13 16:21:21.2568 Info Copied hdtime.yml +2023-03-13 16:21:21.2568 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml +2023-03-13 16:21:21.2580 Info Copied hdtorrentsit.yml +2023-03-13 16:21:21.2580 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml +2023-03-13 16:21:21.2587 Info Copied hdturk.yml +2023-03-13 16:21:21.2587 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml +2023-03-13 16:21:21.2587 Info Copied hdu.yml +2023-03-13 16:21:21.2587 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml +2023-03-13 16:21:21.2599 Info Copied hdzone.yml +2023-03-13 16:21:21.2599 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml +2023-03-13 16:21:21.2599 Info Copied hebits.yml +2023-03-13 16:21:21.2607 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml +2023-03-13 16:21:21.2607 Info Copied hellashut.yml +2023-03-13 16:21:21.2607 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml +2023-03-13 16:21:21.2617 Info Copied hhanclub.yml +2023-03-13 16:21:21.2617 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml +2023-03-13 16:21:21.2617 Info Copied houseofdevil.yml +2023-03-13 16:21:21.2617 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml +2023-03-13 16:21:21.2630 Info Copied hqmusic.yml +2023-03-13 16:21:21.2630 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml +2023-03-13 16:21:21.2636 Info Copied huntorrent.yml +2023-03-13 16:21:21.2636 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml +2023-03-13 16:21:21.2636 Info Copied icc2022.yml +2023-03-13 16:21:21.2636 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml +2023-03-13 16:21:21.2648 Info Copied idope.yml +2023-03-13 16:21:21.2648 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml +2023-03-13 16:21:21.2648 Info Copied ihdbits.yml +2023-03-13 16:21:21.2656 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml +2023-03-13 16:21:21.2656 Info Copied ilcorsaroblu.yml +2023-03-13 16:21:21.2656 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml +2023-03-13 16:21:21.2667 Info Copied ilcorsaronero.yml +2023-03-13 16:21:21.2667 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml +2023-03-13 16:21:21.2667 Info Copied immortuos.yml +2023-03-13 16:21:21.2667 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml +2023-03-13 16:21:21.2680 Info Copied indietorrents.yml +2023-03-13 16:21:21.2680 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml +2023-03-13 16:21:21.2686 Info Copied insanetracker.yml +2023-03-13 16:21:21.2686 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml +2023-03-13 16:21:21.2686 Info Copied internetarchive.yml +2023-03-13 16:21:21.2686 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml +2023-03-13 16:21:21.2699 Info Copied isohunt2.yml +2023-03-13 16:21:21.2699 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml +2023-03-13 16:21:21.2699 Info Copied itorrent.yml +2023-03-13 16:21:21.2707 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml +2023-03-13 16:21:21.2707 Info Copied jav-torrent.yml +2023-03-13 16:21:21.2707 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml +2023-03-13 16:21:21.2718 Info Copied jme-reunit3d-api.yml +2023-03-13 16:21:21.2718 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml +2023-03-13 16:21:21.2718 Info Copied joyhd.yml +2023-03-13 16:21:21.2718 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml +2023-03-13 16:21:21.2730 Info Copied jpopsuki.yml +2023-03-13 16:21:21.2730 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml +2023-03-13 16:21:21.2737 Info Copied jptv.yml +2023-03-13 16:21:21.2737 Info Attempting to copy kamept.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/kamept.yml to destination: /app/Jackett/Definitions/kamept.yml +2023-03-13 16:21:21.2737 Info Copied kamept.yml +2023-03-13 16:21:21.2737 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml +2023-03-13 16:21:21.2749 Info Copied karagarga.yml +2023-03-13 16:21:21.2749 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml +2023-03-13 16:21:21.2749 Info Copied keepfriends.yml +2023-03-13 16:21:21.2758 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml +2023-03-13 16:21:21.2758 Info Copied kickasstorrents-to.yml +2023-03-13 16:21:21.2758 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml +2023-03-13 16:21:21.2768 Info Copied kickasstorrents-ws.yml +2023-03-13 16:21:21.2768 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml +2023-03-13 16:21:21.2768 Info Copied kinorun.yml +2023-03-13 16:21:21.2776 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml +2023-03-13 16:21:21.2776 Info Copied kinozal.yml +2023-03-13 16:21:21.2776 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml +2023-03-13 16:21:21.2787 Info Copied knaben.yml +2023-03-13 16:21:21.2787 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml +2023-03-13 16:21:21.2787 Info Copied korsar.yml +2023-03-13 16:21:21.2787 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml +2023-03-13 16:21:21.2800 Info Copied krazyzone.yml +2023-03-13 16:21:21.2800 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml +2023-03-13 16:21:21.2807 Info Copied kufirc.yml +2023-03-13 16:21:21.2807 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml +2023-03-13 16:21:21.2807 Info Copied lastfiles.yml +2023-03-13 16:21:21.2807 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml +2023-03-13 16:21:21.2820 Info Copied lat-team-api.yml +2023-03-13 16:21:21.2820 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml +2023-03-13 16:21:21.2827 Info Copied learnbits.yml +2023-03-13 16:21:21.2827 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml +2023-03-13 16:21:21.2827 Info Copied learnflakes.yml +2023-03-13 16:21:21.2827 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml +2023-03-13 16:21:21.2840 Info Copied leech24.yml +2023-03-13 16:21:21.2840 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml +2023-03-13 16:21:21.2846 Info Copied lemonhd.yml +2023-03-13 16:21:21.2846 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml +2023-03-13 16:21:21.2846 Info Copied lepornoinfo.yml +2023-03-13 16:21:21.2846 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml +2023-03-13 16:21:21.2859 Info Copied les-cinephiles.yml +2023-03-13 16:21:21.2859 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml +2023-03-13 16:21:21.2859 Info Copied lesaloon.yml +2023-03-13 16:21:21.2867 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml +2023-03-13 16:21:21.2867 Info Copied libranet.yml +2023-03-13 16:21:21.2867 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml +2023-03-13 16:21:21.2878 Info Copied limetorrents.yml +2023-03-13 16:21:21.2878 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml +2023-03-13 16:21:21.2878 Info Copied limetorrentsclone.yml +2023-03-13 16:21:21.2886 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml +2023-03-13 16:21:21.2886 Info Copied linkomanija.yml +2023-03-13 16:21:21.2886 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml +2023-03-13 16:21:21.2898 Info Copied linuxtracker.yml +2023-03-13 16:21:21.2898 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml +2023-03-13 16:21:21.2898 Info Copied locadora.yml +2023-03-13 16:21:21.2907 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml +2023-03-13 16:21:21.2907 Info Copied losslessclub.yml +2023-03-13 16:21:21.2907 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml +2023-03-13 16:21:21.2918 Info Copied lst.yml +2023-03-13 16:21:21.2918 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml +2023-03-13 16:21:21.2918 Info Copied mactorrentsdownload.yml +2023-03-13 16:21:21.2918 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml +2023-03-13 16:21:21.2931 Info Copied madsrevolution.yml +2023-03-13 16:21:21.2931 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml +2023-03-13 16:21:21.2937 Info Copied magicheaven.yml +2023-03-13 16:21:21.2937 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml +2023-03-13 16:21:21.2937 Info Copied magico.yml +2023-03-13 16:21:21.2937 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml +2023-03-13 16:21:21.2951 Info Copied majomparade.yml +2023-03-13 16:21:21.2951 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml +2023-03-13 16:21:21.2958 Info Copied marinetracker.yml +2023-03-13 16:21:21.2958 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml +2023-03-13 16:21:21.2958 Info Copied mazepa.yml +2023-03-13 16:21:21.2966 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml +2023-03-13 16:21:21.2966 Info Copied megamixtracker.yml +2023-03-13 16:21:21.2966 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml +2023-03-13 16:21:21.2977 Info Copied megapeer.yml +2023-03-13 16:21:21.2977 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml +2023-03-13 16:21:21.2977 Info Copied mesevilag.yml +2023-03-13 16:21:21.2977 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml +2023-03-13 16:21:21.2991 Info Copied metaltracker.yml +2023-03-13 16:21:21.2991 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml +2023-03-13 16:21:21.2997 Info Copied mikan.yml +2023-03-13 16:21:21.2997 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml +2023-03-13 16:21:21.2997 Info Copied milkie.yml +2023-03-13 16:21:21.2997 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml +2023-03-13 16:21:21.3009 Info Copied miobt.yml +2023-03-13 16:21:21.3009 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml +2023-03-13 16:21:21.3009 Info Copied mircrew.yml +2023-03-13 16:21:21.3017 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml +2023-03-13 16:21:21.3017 Info Copied mixtapetorrent.yml +2023-03-13 16:21:21.3017 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml +2023-03-13 16:21:21.3028 Info Copied mma-torrents.yml +2023-03-13 16:21:21.3028 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml +2023-03-13 16:21:21.3028 Info Copied mnv.yml +2023-03-13 16:21:21.3037 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml +2023-03-13 16:21:21.3037 Info Copied mojblink.yml +2023-03-13 16:21:21.3037 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml +2023-03-13 16:21:21.3047 Info Copied mousebits.yml +2023-03-13 16:21:21.3047 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml +2023-03-13 16:21:21.3047 Info Copied moviesdvdr.yml +2023-03-13 16:21:21.3047 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml +2023-03-13 16:21:21.3059 Info Copied moviesite.yml +2023-03-13 16:21:21.3059 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml +2023-03-13 16:21:21.3059 Info Copied movietorrent.yml +2023-03-13 16:21:21.3067 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml +2023-03-13 16:21:21.3067 Info Copied movietorrentz.yml +2023-03-13 16:21:21.3067 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml +2023-03-13 16:21:21.3078 Info Copied mteamtp.yml +2023-03-13 16:21:21.3078 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml +2023-03-13 16:21:21.3078 Info Copied mteamtp2fa.yml +2023-03-13 16:21:21.3078 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml +2023-03-13 16:21:21.3091 Info Copied muziekfabriek.yml +2023-03-13 16:21:21.3091 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml +2023-03-13 16:21:21.3097 Info Copied mvgroupforum.yml +2023-03-13 16:21:21.3097 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml +2023-03-13 16:21:21.3097 Info Copied mvgroupmain.yml +2023-03-13 16:21:21.3097 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml +2023-03-13 16:21:21.3109 Info Copied mypornclub.yml +2023-03-13 16:21:21.3109 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml +2023-03-13 16:21:21.3109 Info Copied myspleen.yml +2023-03-13 16:21:21.3118 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml +2023-03-13 16:21:21.3118 Info Copied nethd.yml +2023-03-13 16:21:21.3118 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml +2023-03-13 16:21:21.3129 Info Copied newretro.yml +2023-03-13 16:21:21.3129 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml +2023-03-13 16:21:21.3129 Info Copied newstudio.yml +2023-03-13 16:21:21.3137 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml +2023-03-13 16:21:21.3137 Info Copied newstudiol.yml +2023-03-13 16:21:21.3137 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml +2023-03-13 16:21:21.3147 Info Copied nicept.yml +2023-03-13 16:21:21.3147 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml +2023-03-13 16:21:21.3147 Info Copied nipponsei.yml +2023-03-13 16:21:21.3147 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml +2023-03-13 16:21:21.3160 Info Copied nntt.yml +2023-03-13 16:21:21.3160 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml +2023-03-13 16:21:21.3168 Info Copied noname-club.yml +2023-03-13 16:21:21.3168 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml +2023-03-13 16:21:21.3168 Info Copied noname-clubl.yml +2023-03-13 16:21:21.3177 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml +2023-03-13 16:21:21.3177 Info Copied nyaasi.yml +2023-03-13 16:21:21.3190 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml +2023-03-13 16:21:21.3190 Info Copied oldtoonsworld.yml +2023-03-13 16:21:21.3197 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml +2023-03-13 16:21:21.3197 Info Copied onejav.yml +2023-03-13 16:21:21.3197 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml +2023-03-13 16:21:21.3207 Info Copied opencd.yml +2023-03-13 16:21:21.3207 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml +2023-03-13 16:21:21.3207 Info Copied oshenpt.yml +2023-03-13 16:21:21.3207 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml +2023-03-13 16:21:21.3220 Info Copied ourbits.yml +2023-03-13 16:21:21.3220 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml +2023-03-13 16:21:21.3226 Info Copied p2pbg.yml +2023-03-13 16:21:21.3226 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml +2023-03-13 16:21:21.3226 Info Copied parnuxi.yml +2023-03-13 16:21:21.3226 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml +2023-03-13 16:21:21.3238 Info Copied partis.yml +2023-03-13 16:21:21.3238 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml +2023-03-13 16:21:21.3238 Info Copied pctorrent.yml +2023-03-13 16:21:21.3279 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml +2023-03-13 16:21:21.3279 Info Copied peeratiko.yml +2023-03-13 16:21:21.3279 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml +2023-03-13 16:21:21.3289 Info Copied peersfm.yml +2023-03-13 16:21:21.3289 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml +2023-03-13 16:21:21.3289 Info Copied pier720.yml +2023-03-13 16:21:21.3297 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml +2023-03-13 16:21:21.3297 Info Copied pignetwork.yml +2023-03-13 16:21:21.3297 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml +2023-03-13 16:21:21.3308 Info Copied piratbit.yml +2023-03-13 16:21:21.3308 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml +2023-03-13 16:21:21.3322 Info Copied piratbitl.yml +2023-03-13 16:21:21.3322 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml +2023-03-13 16:21:21.3328 Info Copied pixelcove.yml +2023-03-13 16:21:21.3328 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml +2023-03-13 16:21:21.3328 Info Copied pixelcove2fa.yml +2023-03-13 16:21:21.3328 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml +2023-03-13 16:21:21.3340 Info Copied polishsource.yml +2023-03-13 16:21:21.3340 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml +2023-03-13 16:21:21.3340 Info Copied polishtracker-api.yml +2023-03-13 16:21:21.3347 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml +2023-03-13 16:21:21.3347 Info Copied pornbay.yml +2023-03-13 16:21:21.3347 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml +2023-03-13 16:21:21.3357 Info Copied pornoslab.yml +2023-03-13 16:21:21.3357 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml +2023-03-13 16:21:21.3357 Info Copied pornotorrent.yml +2023-03-13 16:21:21.3357 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml +2023-03-13 16:21:21.3368 Info Copied portugas-api.yml +2023-03-13 16:21:21.3368 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml +2023-03-13 16:21:21.3368 Info Copied potuk.yml +2023-03-13 16:21:21.3368 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml +2023-03-13 16:21:21.3379 Info Copied proaudiotorrents.yml +2023-03-13 16:21:21.3379 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml +2023-03-13 16:21:21.3379 Info Copied proporno.yml +2023-03-13 16:21:21.3379 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml +2023-03-13 16:21:21.3390 Info Copied ptchina.yml +2023-03-13 16:21:21.3390 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml +2023-03-13 16:21:21.3390 Info Copied pterclub.yml +2023-03-13 16:21:21.3398 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml +2023-03-13 16:21:21.3398 Info Copied ptfiles.yml +2023-03-13 16:21:21.3398 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml +2023-03-13 16:21:21.3408 Info Copied pthome.yml +2023-03-13 16:21:21.3408 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml +2023-03-13 16:21:21.3408 Info Copied ptmsg.yml +2023-03-13 16:21:21.3408 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml +2023-03-13 16:21:21.3419 Info Copied ptsbao.yml +2023-03-13 16:21:21.3419 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml +2023-03-13 16:21:21.3419 Info Copied pttime.yml +2023-03-13 16:21:21.3427 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml +2023-03-13 16:21:21.3427 Info Copied punkshorror.yml +2023-03-13 16:21:21.3427 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml +2023-03-13 16:21:21.3437 Info Copied puntotorrent.yml +2023-03-13 16:21:21.3437 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml +2023-03-13 16:21:21.3437 Info Copied pussytorrents.yml +2023-03-13 16:21:21.3437 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml +2023-03-13 16:21:21.3448 Info Copied putao.yml +2023-03-13 16:21:21.3448 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml +2023-03-13 16:21:21.3448 Info Copied puurhollands.yml +2023-03-13 16:21:21.3448 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml +2023-03-13 16:21:21.3459 Info Copied pwtorrents.yml +2023-03-13 16:21:21.3459 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml +2023-03-13 16:21:21.3459 Info Copied r3vwtf.yml +2023-03-13 16:21:21.3467 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml +2023-03-13 16:21:21.3467 Info Copied racing4everyone-api.yml +2023-03-13 16:21:21.3467 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml +2023-03-13 16:21:21.3477 Info Copied racingforme.yml +2023-03-13 16:21:21.3477 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml +2023-03-13 16:21:21.3477 Info Copied rainbowtracker.yml +2023-03-13 16:21:21.3477 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml +2023-03-13 16:21:21.3488 Info Copied rapidzona.yml +2023-03-13 16:21:21.3488 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml +2023-03-13 16:21:21.3488 Info Copied redbits-api.yml +2023-03-13 16:21:21.3488 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml +2023-03-13 16:21:21.3499 Info Copied redstartorrent.yml +2023-03-13 16:21:21.3499 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml +2023-03-13 16:21:21.3499 Info Copied reelflix-api.yml +2023-03-13 16:21:21.3507 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml +2023-03-13 16:21:21.3507 Info Copied resurrectthenet.yml +2023-03-13 16:21:21.3507 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml +2023-03-13 16:21:21.3517 Info Copied rgfootball.yml +2023-03-13 16:21:21.3517 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml +2023-03-13 16:21:21.3517 Info Copied rintor.yml +2023-03-13 16:21:21.3517 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml +2023-03-13 16:21:21.3528 Info Copied rintornet.yml +2023-03-13 16:21:21.3528 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml +2023-03-13 16:21:21.3528 Info Copied riperam.yml +2023-03-13 16:21:21.3536 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml +2023-03-13 16:21:21.3536 Info Copied rockbox.yml +2023-03-13 16:21:21.3536 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml +2023-03-13 16:21:21.3548 Info Copied romanianmetaltorrents.yml +2023-03-13 16:21:21.3548 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml +2023-03-13 16:21:21.3548 Info Copied rptorrents.yml +2023-03-13 16:21:21.3548 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml +2023-03-13 16:21:21.3559 Info Copied rudub.yml +2023-03-13 16:21:21.3559 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml +2023-03-13 16:21:21.3559 Info Copied rus-media.yml +2023-03-13 16:21:21.3566 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml +2023-03-13 16:21:21.3566 Info Copied rustorka.yml +2023-03-13 16:21:21.3566 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml +2023-03-13 16:21:21.3577 Info Copied rutor.yml +2023-03-13 16:21:21.3577 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml +2023-03-13 16:21:21.3577 Info Copied rutracker-ru.yml +2023-03-13 16:21:21.3577 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml +2023-03-13 16:21:21.3589 Info Copied satclubbing.yml +2023-03-13 16:21:21.3589 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml +2023-03-13 16:21:21.3589 Info Copied scenerush.yml +2023-03-13 16:21:21.3597 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml +2023-03-13 16:21:21.3597 Info Copied sdbits.yml +2023-03-13 16:21:21.3597 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml +2023-03-13 16:21:21.3597 Info Copied seedfile.yml +2023-03-13 16:21:21.3608 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml +2023-03-13 16:21:21.3608 Info Copied seedoff.yml +2023-03-13 16:21:21.3608 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml +2023-03-13 16:21:21.3618 Info Copied selezen.yml +2023-03-13 16:21:21.3618 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml +2023-03-13 16:21:21.3618 Info Copied sexypics.yml +2023-03-13 16:21:21.3618 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml +2023-03-13 16:21:21.3629 Info Copied shanaproject.yml +2023-03-13 16:21:21.3629 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml +2023-03-13 16:21:21.3629 Info Copied shareisland-api.yml +2023-03-13 16:21:21.3637 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml +2023-03-13 16:21:21.3637 Info Copied sharewood.yml +2023-03-13 16:21:21.3637 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml +2023-03-13 16:21:21.3647 Info Copied sharkpt.yml +2023-03-13 16:21:21.3647 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml +2023-03-13 16:21:21.3647 Info Copied showrss.yml +2023-03-13 16:21:21.3647 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml +2023-03-13 16:21:21.3658 Info Copied siambit.yml +2023-03-13 16:21:21.3658 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml +2023-03-13 16:21:21.3658 Info Copied skipthecommercials-api.yml +2023-03-13 16:21:21.3658 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml +2023-03-13 16:21:21.3670 Info Copied skipthetrailers.yml +2023-03-13 16:21:21.3670 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml +2023-03-13 16:21:21.3670 Info Copied sktorrent-org.yml +2023-03-13 16:21:21.3678 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml +2023-03-13 16:21:21.3678 Info Copied sktorrent.yml +2023-03-13 16:21:21.3678 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml +2023-03-13 16:21:21.3688 Info Copied slosoul.yml +2023-03-13 16:21:21.3688 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml +2023-03-13 16:21:21.3688 Info Copied snowpt.yml +2023-03-13 16:21:21.3688 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml +2023-03-13 16:21:21.3699 Info Copied solidtorrents.yml +2023-03-13 16:21:21.3699 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml +2023-03-13 16:21:21.3699 Info Copied sosulki.yml +2023-03-13 16:21:21.3699 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml +2023-03-13 16:21:21.3710 Info Copied soulvoice.yml +2023-03-13 16:21:21.3710 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml +2023-03-13 16:21:21.3710 Info Copied speedmasterhd.yml +2023-03-13 16:21:21.3718 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml +2023-03-13 16:21:21.3718 Info Copied speedtorrentreloaded.yml +2023-03-13 16:21:21.3718 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml +2023-03-13 16:21:21.3727 Info Copied spidertk.yml +2023-03-13 16:21:21.3727 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml +2023-03-13 16:21:21.3727 Info Copied spiritofrevolution.yml +2023-03-13 16:21:21.3727 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml +2023-03-13 16:21:21.3739 Info Copied sporthd.yml +2023-03-13 16:21:21.3739 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml +2023-03-13 16:21:21.3739 Info Copied sportscult.yml +2023-03-13 16:21:21.3739 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml +2023-03-13 16:21:21.3750 Info Copied springsunday.yml +2023-03-13 16:21:21.3750 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml +2023-03-13 16:21:21.3750 Info Copied sugoimusic.yml +2023-03-13 16:21:21.3758 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml +2023-03-13 16:21:21.3758 Info Copied sukebeinyaasi.yml +2023-03-13 16:21:21.3758 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml +2023-03-13 16:21:21.3767 Info Copied superbits.yml +2023-03-13 16:21:21.3767 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml +2023-03-13 16:21:21.3767 Info Copied swarmazon-api.yml +2023-03-13 16:21:21.3767 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml +2023-03-13 16:21:21.3779 Info Copied tapochek.yml +2023-03-13 16:21:21.3779 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml +2023-03-13 16:21:21.3779 Info Copied tasmanit.yml +2023-03-13 16:21:21.3787 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml +2023-03-13 16:21:21.3787 Info Copied teamctgame.yml +2023-03-13 16:21:21.3787 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml +2023-03-13 16:21:21.3797 Info Copied teamhd.yml +2023-03-13 16:21:21.3797 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml +2023-03-13 16:21:21.3797 Info Copied teamos.yml +2023-03-13 16:21:21.3797 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml +2023-03-13 16:21:21.3808 Info Copied tekno3d.yml +2023-03-13 16:21:21.3808 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml +2023-03-13 16:21:21.3808 Info Copied tellytorrent-api.yml +2023-03-13 16:21:21.3808 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml +2023-03-13 16:21:21.3820 Info Copied teracod.yml +2023-03-13 16:21:21.3820 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml +2023-03-13 16:21:21.3820 Info Copied the-crazy-ones.yml +2023-03-13 16:21:21.3828 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml +2023-03-13 16:21:21.3828 Info Copied thedarkcommunity-api.yml +2023-03-13 16:21:21.3828 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml +2023-03-13 16:21:21.3838 Info Copied theempire.yml +2023-03-13 16:21:21.3838 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml +2023-03-13 16:21:21.3838 Info Copied thefallingangels.yml +2023-03-13 16:21:21.3838 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml +2023-03-13 16:21:21.3849 Info Copied thegeeks.yml +2023-03-13 16:21:21.3849 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml +2023-03-13 16:21:21.3849 Info Copied theleachzone.yml +2023-03-13 16:21:21.3857 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml +2023-03-13 16:21:21.3857 Info Copied themixingbowl.yml +2023-03-13 16:21:21.3857 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml +2023-03-13 16:21:21.3867 Info Copied thenewfun.yml +2023-03-13 16:21:21.3867 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml +2023-03-13 16:21:21.3867 Info Copied theoccult.yml +2023-03-13 16:21:21.3867 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml +2023-03-13 16:21:21.3878 Info Copied theoldschool-api.yml +2023-03-13 16:21:21.3878 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml +2023-03-13 16:21:21.3878 Info Copied thepiratebay.yml +2023-03-13 16:21:21.3878 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml +2023-03-13 16:21:21.3890 Info Copied theplace.yml +2023-03-13 16:21:21.3890 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml +2023-03-13 16:21:21.3890 Info Copied thesceneplace.yml +2023-03-13 16:21:21.3897 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml +2023-03-13 16:21:21.3897 Info Copied theshinning-api.yml +2023-03-13 16:21:21.3897 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml +2023-03-13 16:21:21.3907 Info Copied theshow.yml +2023-03-13 16:21:21.3907 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml +2023-03-13 16:21:21.3907 Info Copied thevault.yml +2023-03-13 16:21:21.3907 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml +2023-03-13 16:21:21.3918 Info Copied tjupt.yml +2023-03-13 16:21:21.3918 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml +2023-03-13 16:21:21.3918 Info Copied tlfbits.yml +2023-03-13 16:21:21.3918 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml +2023-03-13 16:21:21.3930 Info Copied tmghub.yml +2023-03-13 16:21:21.3930 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml +2023-03-13 16:21:21.3930 Info Copied tokyotosho.yml +2023-03-13 16:21:21.3938 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml +2023-03-13 16:21:21.3938 Info Copied torlock.yml +2023-03-13 16:21:21.3938 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml +2023-03-13 16:21:21.3948 Info Copied tornado.yml +2023-03-13 16:21:21.3948 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml +2023-03-13 16:21:21.3948 Info Copied torrent-explosiv.yml +2023-03-13 16:21:21.3948 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml +2023-03-13 16:21:21.3959 Info Copied torrent-pirat.yml +2023-03-13 16:21:21.3959 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml +2023-03-13 16:21:21.3959 Info Copied torrent-turk.yml +2023-03-13 16:21:21.3967 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml +2023-03-13 16:21:21.3967 Info Copied torrent9.yml +2023-03-13 16:21:21.3967 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml +2023-03-13 16:21:21.3977 Info Copied torrent911.yml +2023-03-13 16:21:21.3977 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml +2023-03-13 16:21:21.3977 Info Copied torrent9clone.yml +2023-03-13 16:21:21.3977 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml +2023-03-13 16:21:21.3989 Info Copied torrentbd.yml +2023-03-13 16:21:21.3989 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml +2023-03-13 16:21:21.3989 Info Copied torrentby.yml +2023-03-13 16:21:21.3989 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml +2023-03-13 16:21:21.4000 Info Copied torrentccf.yml +2023-03-13 16:21:21.4000 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml +2023-03-13 16:21:21.4000 Info Copied torrentcore.yml +2023-03-13 16:21:21.4007 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml +2023-03-13 16:21:21.4007 Info Copied torrentdownload.yml +2023-03-13 16:21:21.4007 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml +2023-03-13 16:21:21.4017 Info Copied torrentdownloads.yml +2023-03-13 16:21:21.4017 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml +2023-03-13 16:21:21.4017 Info Copied torrentfunk.yml +2023-03-13 16:21:21.4017 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml +2023-03-13 16:21:21.4029 Info Copied torrentgalaxy.yml +2023-03-13 16:21:21.4029 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml +2023-03-13 16:21:21.4029 Info Copied torrenthr.yml +2023-03-13 16:21:21.4029 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml +2023-03-13 16:21:21.4040 Info Copied torrenting.yml +2023-03-13 16:21:21.4040 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml +2023-03-13 16:21:21.4040 Info Copied torrentkitty.yml +2023-03-13 16:21:21.4048 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml +2023-03-13 16:21:21.4048 Info Copied torrentland.yml +2023-03-13 16:21:21.4048 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml +2023-03-13 16:21:21.4058 Info Copied torrentleech-pl.yml +2023-03-13 16:21:21.4058 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml +2023-03-13 16:21:21.4058 Info Copied torrentleech.yml +2023-03-13 16:21:21.4058 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml +2023-03-13 16:21:21.4069 Info Copied torrentlt.yml +2023-03-13 16:21:21.4069 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml +2023-03-13 16:21:21.4069 Info Copied torrentmasters.yml +2023-03-13 16:21:21.4077 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml +2023-03-13 16:21:21.4077 Info Copied torrentoyunindir.yml +2023-03-13 16:21:21.4077 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml +2023-03-13 16:21:21.4086 Info Copied torrentproject2.yml +2023-03-13 16:21:21.4086 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml +2023-03-13 16:21:21.4086 Info Copied torrentqq.yml +2023-03-13 16:21:21.4086 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml +2023-03-13 16:21:21.4098 Info Copied torrentsectorcrew.yml +2023-03-13 16:21:21.4098 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml +2023-03-13 16:21:21.4098 Info Copied torrentseeds-api.yml +2023-03-13 16:21:21.4098 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml +2023-03-13 16:21:21.4110 Info Copied torrentsir.yml +2023-03-13 16:21:21.4110 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml +2023-03-13 16:21:21.4110 Info Copied torrentslocal.yml +2023-03-13 16:21:21.4117 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml +2023-03-13 16:21:21.4117 Info Copied torrentv.yml +2023-03-13 16:21:21.4117 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml +2023-03-13 16:21:21.4127 Info Copied torrentview.yml +2023-03-13 16:21:21.4127 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml +2023-03-13 16:21:21.4127 Info Copied torrentwhiz.yml +2023-03-13 16:21:21.4127 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml +2023-03-13 16:21:21.4138 Info Copied torrentz2eu.yml +2023-03-13 16:21:21.4138 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml +2023-03-13 16:21:21.4138 Info Copied torrentz2nz.yml +2023-03-13 16:21:21.4138 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml +2023-03-13 16:21:21.4149 Info Copied totallykids.yml +2023-03-13 16:21:21.4149 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml +2023-03-13 16:21:21.4149 Info Copied totheglory.yml +2023-03-13 16:21:21.4157 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml +2023-03-13 16:21:21.4157 Info Copied totheglorycookie.yml +2023-03-13 16:21:21.4157 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml +2023-03-13 16:21:21.4157 Info Copied traht.yml +2023-03-13 16:21:21.4168 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml +2023-03-13 16:21:21.4168 Info Copied trancetraffic.yml +2023-03-13 16:21:21.4168 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml +2023-03-13 16:21:21.4177 Info Copied trezzor.yml +2023-03-13 16:21:21.4177 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml +2023-03-13 16:21:21.4177 Info Copied tribalmixes.yml +2023-03-13 16:21:21.4177 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml +2023-03-13 16:21:21.4189 Info Copied trupornolabs.yml +2023-03-13 16:21:21.4189 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml +2023-03-13 16:21:21.4189 Info Copied turkseed.yml +2023-03-13 16:21:21.4189 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml +2023-03-13 16:21:21.4200 Info Copied turktorrent.yml +2023-03-13 16:21:21.4200 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml +2023-03-13 16:21:21.4200 Info Copied tvchaosuk.yml +2023-03-13 16:21:21.4207 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml +2023-03-13 16:21:21.4207 Info Copied tvroad.yml +2023-03-13 16:21:21.4207 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml +2023-03-13 16:21:21.4217 Info Copied twilight.yml +2023-03-13 16:21:21.4217 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml +2023-03-13 16:21:21.4217 Info Copied u2.yml +2023-03-13 16:21:21.4217 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml +2023-03-13 16:21:21.4229 Info Copied uhdbits.yml +2023-03-13 16:21:21.4229 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml +2023-03-13 16:21:21.4229 Info Copied uniondht.yml +2023-03-13 16:21:21.4237 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml +2023-03-13 16:21:21.4237 Info Copied unionfansub.yml +2023-03-13 16:21:21.4237 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml +2023-03-13 16:21:21.4246 Info Copied uniongang.yml +2023-03-13 16:21:21.4246 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml +2023-03-13 16:21:21.4246 Info Copied unleashthecartoons.yml +2023-03-13 16:21:21.4246 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml +2023-03-13 16:21:21.4258 Info Copied unlimitz.yml +2023-03-13 16:21:21.4258 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml +2023-03-13 16:21:21.4258 Info Copied vsthouse.yml +2023-03-13 16:21:21.4258 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml +2023-03-13 16:21:21.4270 Info Copied vsttorrents.yml +2023-03-13 16:21:21.4270 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml +2023-03-13 16:21:21.4270 Info Copied vtorrent.yml +2023-03-13 16:21:21.4277 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml +2023-03-13 16:21:21.4277 Info Copied whiteangel.yml +2023-03-13 16:21:21.4277 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml +2023-03-13 16:21:21.4287 Info Copied wihd.yml +2023-03-13 16:21:21.4287 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml +2023-03-13 16:21:21.4287 Info Copied world-of-tomorrow.yml +2023-03-13 16:21:21.4287 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml +2023-03-13 16:21:21.4299 Info Copied x-ite.me.yml +2023-03-13 16:21:21.4299 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml +2023-03-13 16:21:21.4299 Info Copied xbytes2.yml +2023-03-13 16:21:21.4299 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml +2023-03-13 16:21:21.4310 Info Copied xthor-api.yml +2023-03-13 16:21:21.4310 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml +2023-03-13 16:21:21.4317 Info Copied xtorrenty.yml +2023-03-13 16:21:21.4317 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml +2023-03-13 16:21:21.4317 Info Copied xtremebytes.yml +2023-03-13 16:21:21.4317 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml +2023-03-13 16:21:21.4328 Info Copied xwtclassics.yml +2023-03-13 16:21:21.4328 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml +2023-03-13 16:21:21.4328 Info Copied xwtorrents.yml +2023-03-13 16:21:21.4328 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml +2023-03-13 16:21:21.4340 Info Copied xxxadulttorrent.yml +2023-03-13 16:21:21.4340 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml +2023-03-13 16:21:21.4340 Info Copied xxxtor.yml +2023-03-13 16:21:21.4347 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml +2023-03-13 16:21:21.4347 Info Copied xxxtorrents.yml +2023-03-13 16:21:21.4347 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml +2023-03-13 16:21:21.4357 Info Copied ydypt.yml +2023-03-13 16:21:21.4357 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml +2023-03-13 16:21:21.4357 Info Copied yggcookie.yml +2023-03-13 16:21:21.4357 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml +2023-03-13 16:21:21.4369 Info Copied yggtorrent.yml +2023-03-13 16:21:21.4369 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml +2023-03-13 16:21:21.4369 Info Copied yourbittorrent.yml +2023-03-13 16:21:21.4369 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml +2023-03-13 16:21:21.4380 Info Copied yts.yml +2023-03-13 16:21:21.4380 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml +2023-03-13 16:21:21.4386 Info Copied zamundanet.yml +2023-03-13 16:21:21.4386 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml +2023-03-13 16:21:21.4386 Info Copied zelkaorg.yml +2023-03-13 16:21:21.4386 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml +2023-03-13 16:21:21.4398 Info Copied zetorrents.yml +2023-03-13 16:21:21.4398 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml +2023-03-13 16:21:21.4398 Info Copied zmpt.yml +2023-03-13 16:21:21.4398 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml +2023-03-13 16:21:21.4409 Info Copied zomb.yml +2023-03-13 16:21:21.4409 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml +2023-03-13 16:21:21.4409 Info Copied ztracker.yml +2023-03-13 16:21:21.4409 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll +2023-03-13 16:21:21.4420 Info Copied FlareSolverrSharp.dll +2023-03-13 16:21:21.4420 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll +2023-03-13 16:21:21.4430 Info Copied ICSharpCode.SharpZipLib.dll +2023-03-13 16:21:21.4430 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh +2023-03-13 16:21:21.4430 Info Copied install_service_systemd.sh +2023-03-13 16:21:21.4437 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/jackett to destination: /app/Jackett/jackett +2023-03-13 16:21:21.4437 Info Copied jackett +2023-03-13 16:21:21.4437 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh +2023-03-13 16:21:21.4449 Info Copied jackett_launcher.sh +2023-03-13 16:21:21.4449 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll +2023-03-13 16:21:21.4473 Info Copied Jackett.Common.dll +2023-03-13 16:21:21.4473 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb +2023-03-13 16:21:21.4491 Info Copied Jackett.Common.pdb +2023-03-13 16:21:21.4491 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json +2023-03-13 16:21:21.4499 Info Copied jackett.deps.json +2023-03-13 16:21:21.4499 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll +2023-03-13 16:21:21.4512 Info Copied jackett.dll +2023-03-13 16:21:21.4512 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb +2023-03-13 16:21:21.4518 Info Copied jackett.pdb +2023-03-13 16:21:21.4518 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json +2023-03-13 16:21:21.4518 Info Copied jackett.runtimeconfig.json +2023-03-13 16:21:21.4518 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater +2023-03-13 16:21:21.4531 Info Copied JackettUpdater +2023-03-13 16:21:21.4531 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json +2023-03-13 16:21:21.4538 Info Copied JackettUpdater.deps.json +2023-03-13 16:21:21.4538 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll +2023-03-13 16:21:21.4549 Info Copied JackettUpdater.dll +2023-03-13 16:21:21.4549 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb +2023-03-13 16:21:21.4549 Info Copied JackettUpdater.pdb +2023-03-13 16:21:21.4557 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json +2023-03-13 16:21:21.4557 Info Copied JackettUpdater.runtimeconfig.json +2023-03-13 16:21:21.4557 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so +2023-03-13 16:21:21.4615 Info Copied libclrjit.so +2023-03-13 16:21:21.4617 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so +2023-03-13 16:21:21.4734 Info Copied libcoreclr.so +2023-03-13 16:21:21.4738 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so +2023-03-13 16:21:21.4757 Info Copied libcoreclrtraceptprovider.so +2023-03-13 16:21:21.4757 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so +2023-03-13 16:21:21.4775 Info Copied libdbgshim.so +2023-03-13 16:21:21.4776 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so +2023-03-13 16:21:21.4787 Info Copied libhostfxr.so +2023-03-13 16:21:21.4787 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so +2023-03-13 16:21:21.4797 Info Copied libhostpolicy.so +2023-03-13 16:21:21.4797 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so +2023-03-13 16:21:21.4797 Info Copied libMono.Unix.so +2023-03-13 16:21:21.4807 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so +2023-03-13 16:21:21.4864 Info Copied libmscordaccore.so +2023-03-13 16:21:21.4867 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so +2023-03-13 16:21:21.4900 Info Copied libmscordbi.so +2023-03-13 16:21:21.4900 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so +2023-03-13 16:21:21.4908 Info Copied libSystem.Globalization.Native.so +2023-03-13 16:21:21.4908 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so +2023-03-13 16:21:21.4929 Info Copied libSystem.IO.Compression.Native.so +2023-03-13 16:21:21.4929 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so +2023-03-13 16:21:21.4929 Info Copied libSystem.Native.so +2023-03-13 16:21:21.4938 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so +2023-03-13 16:21:21.4938 Info Copied libSystem.Net.Security.Native.so +2023-03-13 16:21:21.4938 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so +2023-03-13 16:21:21.4951 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so +2023-03-13 16:21:21.4951 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/LICENSE to destination: /app/Jackett/LICENSE +2023-03-13 16:21:21.4958 Info Copied LICENSE +2023-03-13 16:21:21.4958 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll +2023-03-13 16:21:21.4958 Info Copied Microsoft.AspNetCore.Antiforgery.dll +2023-03-13 16:21:21.4967 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-03-13 16:21:21.4967 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-03-13 16:21:21.4967 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll +2023-03-13 16:21:21.4979 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll +2023-03-13 16:21:21.4979 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll +2023-03-13 16:21:21.4987 Info Copied Microsoft.AspNetCore.Authentication.Core.dll +2023-03-13 16:21:21.4987 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll +2023-03-13 16:21:21.4987 Info Copied Microsoft.AspNetCore.Authentication.dll +2023-03-13 16:21:21.4997 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll +2023-03-13 16:21:21.4997 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll +2023-03-13 16:21:21.4997 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll +2023-03-13 16:21:21.5010 Info Copied Microsoft.AspNetCore.Authorization.dll +2023-03-13 16:21:21.5010 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll +2023-03-13 16:21:21.5017 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll +2023-03-13 16:21:21.5017 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll +2023-03-13 16:21:21.5017 Info Copied Microsoft.AspNetCore.Components.Authorization.dll +2023-03-13 16:21:21.5017 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll +2023-03-13 16:21:21.5038 Info Copied Microsoft.AspNetCore.Components.dll +2023-03-13 16:21:21.5038 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll +2023-03-13 16:21:21.5038 Info Copied Microsoft.AspNetCore.Components.Forms.dll +2023-03-13 16:21:21.5047 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll +2023-03-13 16:21:21.5062 Info Copied Microsoft.AspNetCore.Components.Server.dll +2023-03-13 16:21:21.5062 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll +2023-03-13 16:21:21.5074 Info Copied Microsoft.AspNetCore.Components.Web.dll +2023-03-13 16:21:21.5074 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll +2023-03-13 16:21:21.5081 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll +2023-03-13 16:21:21.5081 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll +2023-03-13 16:21:21.5088 Info Copied Microsoft.AspNetCore.CookiePolicy.dll +2023-03-13 16:21:21.5088 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll +2023-03-13 16:21:21.5088 Info Copied Microsoft.AspNetCore.Cors.dll +2023-03-13 16:21:21.5097 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll +2023-03-13 16:21:21.5097 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll +2023-03-13 16:21:21.5097 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-03-13 16:21:21.5109 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-03-13 16:21:21.5109 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-03-13 16:21:21.5109 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-03-13 16:21:21.5117 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll +2023-03-13 16:21:21.5127 Info Copied Microsoft.AspNetCore.DataProtection.dll +2023-03-13 16:21:21.5127 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-03-13 16:21:21.5127 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-03-13 16:21:21.5127 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-03-13 16:21:21.5140 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-03-13 16:21:21.5140 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll +2023-03-13 16:21:21.5153 Info Copied Microsoft.AspNetCore.Diagnostics.dll +2023-03-13 16:21:21.5153 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-03-13 16:21:21.5160 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-03-13 16:21:21.5160 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll +2023-03-13 16:21:21.5168 Info Copied Microsoft.AspNetCore.dll +2023-03-13 16:21:21.5168 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll +2023-03-13 16:21:21.5168 Info Copied Microsoft.AspNetCore.HostFiltering.dll +2023-03-13 16:21:21.5168 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-03-13 16:21:21.5180 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-03-13 16:21:21.5180 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll +2023-03-13 16:21:21.5192 Info Copied Microsoft.AspNetCore.Hosting.dll +2023-03-13 16:21:21.5192 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-03-13 16:21:21.5198 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-03-13 16:21:21.5198 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll +2023-03-13 16:21:21.5198 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll +2023-03-13 16:21:21.5207 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll +2023-03-13 16:21:21.5207 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll +2023-03-13 16:21:21.5207 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll +2023-03-13 16:21:21.5221 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll +2023-03-13 16:21:21.5221 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll +2023-03-13 16:21:21.5232 Info Copied Microsoft.AspNetCore.Http.Connections.dll +2023-03-13 16:21:21.5232 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll +2023-03-13 16:21:21.5242 Info Copied Microsoft.AspNetCore.Http.dll +2023-03-13 16:21:21.5242 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll +2023-03-13 16:21:21.5253 Info Copied Microsoft.AspNetCore.Http.Extensions.dll +2023-03-13 16:21:21.5253 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll +2023-03-13 16:21:21.5260 Info Copied Microsoft.AspNetCore.Http.Features.dll +2023-03-13 16:21:21.5260 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll +2023-03-13 16:21:21.5269 Info Copied Microsoft.AspNetCore.Http.Results.dll +2023-03-13 16:21:21.5269 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll +2023-03-13 16:21:21.5277 Info Copied Microsoft.AspNetCore.HttpLogging.dll +2023-03-13 16:21:21.5277 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll +2023-03-13 16:21:21.5277 Info Copied Microsoft.AspNetCore.HttpOverrides.dll +2023-03-13 16:21:21.5277 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll +2023-03-13 16:21:21.5291 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll +2023-03-13 16:21:21.5291 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll +2023-03-13 16:21:21.5300 Info Copied Microsoft.AspNetCore.Identity.dll +2023-03-13 16:21:21.5300 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll +2023-03-13 16:21:21.5306 Info Copied Microsoft.AspNetCore.JsonPatch.dll +2023-03-13 16:21:21.5306 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll +2023-03-13 16:21:21.5306 Info Copied Microsoft.AspNetCore.Localization.dll +2023-03-13 16:21:21.5306 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll +2023-03-13 16:21:21.5319 Info Copied Microsoft.AspNetCore.Localization.Routing.dll +2023-03-13 16:21:21.5319 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll +2023-03-13 16:21:21.5319 Info Copied Microsoft.AspNetCore.Metadata.dll +2023-03-13 16:21:21.5328 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-03-13 16:21:21.5328 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-03-13 16:21:21.5337 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-03-13 16:21:21.5337 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-03-13 16:21:21.5337 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll +2023-03-13 16:21:21.5383 Info Copied Microsoft.AspNetCore.Mvc.Core.dll +2023-03-13 16:21:21.5383 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll +2023-03-13 16:21:21.5390 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll +2023-03-13 16:21:21.5390 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-03-13 16:21:21.5398 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-03-13 16:21:21.5398 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll +2023-03-13 16:21:21.5398 Info Copied Microsoft.AspNetCore.Mvc.dll +2023-03-13 16:21:21.5398 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-03-13 16:21:21.5410 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-03-13 16:21:21.5410 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-03-13 16:21:21.5426 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-03-13 16:21:21.5427 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll +2023-03-13 16:21:21.5427 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll +2023-03-13 16:21:21.5427 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-03-13 16:21:21.5439 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-03-13 16:21:21.5439 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll +2023-03-13 16:21:21.5448 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll +2023-03-13 16:21:21.5448 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-03-13 16:21:21.5461 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-03-13 16:21:21.5461 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-03-13 16:21:21.5472 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-03-13 16:21:21.5472 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-03-13 16:21:21.5491 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-03-13 16:21:21.5491 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll +2023-03-13 16:21:21.5498 Info Copied Microsoft.AspNetCore.Razor.dll +2023-03-13 16:21:21.5498 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll +2023-03-13 16:21:21.5498 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll +2023-03-13 16:21:21.5507 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-03-13 16:21:21.5507 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-03-13 16:21:21.5507 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll +2023-03-13 16:21:21.5520 Info Copied Microsoft.AspNetCore.ResponseCaching.dll +2023-03-13 16:21:21.5520 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll +2023-03-13 16:21:21.5527 Info Copied Microsoft.AspNetCore.ResponseCompression.dll +2023-03-13 16:21:21.5527 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll +2023-03-13 16:21:21.5537 Info Copied Microsoft.AspNetCore.Rewrite.dll +2023-03-13 16:21:21.5537 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll +2023-03-13 16:21:21.5537 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll +2023-03-13 16:21:21.5537 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll +2023-03-13 16:21:21.5561 Info Copied Microsoft.AspNetCore.Routing.dll +2023-03-13 16:21:21.5561 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll +2023-03-13 16:21:21.5575 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll +2023-03-13 16:21:21.5577 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll +2023-03-13 16:21:21.5590 Info Copied Microsoft.AspNetCore.Server.IIS.dll +2023-03-13 16:21:21.5590 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll +2023-03-13 16:21:21.5596 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll +2023-03-13 16:21:21.5596 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-03-13 16:21:21.5638 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-03-13 16:21:21.5638 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll +2023-03-13 16:21:21.5638 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll +2023-03-13 16:21:21.5647 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-03-13 16:21:21.5647 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-03-13 16:21:21.5657 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-03-13 16:21:21.5657 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-03-13 16:21:21.5657 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll +2023-03-13 16:21:21.5671 Info Copied Microsoft.AspNetCore.Session.dll +2023-03-13 16:21:21.5671 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll +2023-03-13 16:21:21.5678 Info Copied Microsoft.AspNetCore.SignalR.Common.dll +2023-03-13 16:21:21.5678 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll +2023-03-13 16:21:21.5690 Info Copied Microsoft.AspNetCore.SignalR.Core.dll +2023-03-13 16:21:21.5690 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll +2023-03-13 16:21:21.5690 Info Copied Microsoft.AspNetCore.SignalR.dll +2023-03-13 16:21:21.5697 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-03-13 16:21:21.5697 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-03-13 16:21:21.5697 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll +2023-03-13 16:21:21.5711 Info Copied Microsoft.AspNetCore.StaticFiles.dll +2023-03-13 16:21:21.5711 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll +2023-03-13 16:21:21.5718 Info Copied Microsoft.AspNetCore.WebSockets.dll +2023-03-13 16:21:21.5718 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll +2023-03-13 16:21:21.5727 Info Copied Microsoft.AspNetCore.WebUtilities.dll +2023-03-13 16:21:21.5727 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll +2023-03-13 16:21:21.5747 Info Copied Microsoft.CSharp.dll +2023-03-13 16:21:21.5747 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll +2023-03-13 16:21:21.5747 Info Copied Microsoft.Extensions.Caching.Abstractions.dll +2023-03-13 16:21:21.5747 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll +2023-03-13 16:21:21.5761 Info Copied Microsoft.Extensions.Caching.Memory.dll +2023-03-13 16:21:21.5761 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll +2023-03-13 16:21:21.5767 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll +2023-03-13 16:21:21.5767 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll +2023-03-13 16:21:21.5767 Info Copied Microsoft.Extensions.Configuration.Binder.dll +2023-03-13 16:21:21.5767 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll +2023-03-13 16:21:21.5779 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll +2023-03-13 16:21:21.5779 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll +2023-03-13 16:21:21.5787 Info Copied Microsoft.Extensions.Configuration.dll +2023-03-13 16:21:21.5787 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-03-13 16:21:21.5787 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-03-13 16:21:21.5787 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll +2023-03-13 16:21:21.5798 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll +2023-03-13 16:21:21.5798 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll +2023-03-13 16:21:21.5798 Info Copied Microsoft.Extensions.Configuration.Ini.dll +2023-03-13 16:21:21.5798 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll +2023-03-13 16:21:21.5810 Info Copied Microsoft.Extensions.Configuration.Json.dll +2023-03-13 16:21:21.5810 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-03-13 16:21:21.5810 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-03-13 16:21:21.5817 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll +2023-03-13 16:21:21.5817 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll +2023-03-13 16:21:21.5817 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll +2023-03-13 16:21:21.5828 Info Copied Microsoft.Extensions.Configuration.Xml.dll +2023-03-13 16:21:21.5828 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-03-13 16:21:21.6906 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-03-13 16:21:21.6909 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll +2023-03-13 16:21:21.6918 Info Copied Microsoft.Extensions.DependencyInjection.dll +2023-03-13 16:21:21.6918 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-03-13 16:21:21.6918 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-03-13 16:21:21.6918 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-03-13 16:21:21.6933 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-03-13 16:21:21.6933 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll +2023-03-13 16:21:21.6939 Info Copied Microsoft.Extensions.Features.dll +2023-03-13 16:21:21.6939 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll +2023-03-13 16:21:21.6939 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll +2023-03-13 16:21:21.6947 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll +2023-03-13 16:21:21.6947 Info Copied Microsoft.Extensions.FileProviders.Composite.dll +2023-03-13 16:21:21.6947 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll +2023-03-13 16:21:21.6959 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll +2023-03-13 16:21:21.6959 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll +2023-03-13 16:21:21.6967 Info Copied Microsoft.Extensions.FileProviders.Physical.dll +2023-03-13 16:21:21.6967 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll +2023-03-13 16:21:21.6967 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll +2023-03-13 16:21:21.6977 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll +2023-03-13 16:21:21.6977 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll +2023-03-13 16:21:21.6977 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll +2023-03-13 16:21:21.6991 Info Copied Microsoft.Extensions.Hosting.dll +2023-03-13 16:21:21.6991 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll +2023-03-13 16:21:21.6999 Info Copied Microsoft.Extensions.Http.dll +2023-03-13 16:21:21.6999 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll +2023-03-13 16:21:21.7012 Info Copied Microsoft.Extensions.Identity.Core.dll +2023-03-13 16:21:21.7012 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll +2023-03-13 16:21:21.7020 Info Copied Microsoft.Extensions.Identity.Stores.dll +2023-03-13 16:21:21.7020 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll +2023-03-13 16:21:21.7020 Info Copied Microsoft.Extensions.Localization.Abstractions.dll +2023-03-13 16:21:21.7027 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll +2023-03-13 16:21:21.7027 Info Copied Microsoft.Extensions.Localization.dll +2023-03-13 16:21:21.7027 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll +2023-03-13 16:21:21.7040 Info Copied Microsoft.Extensions.Logging.Abstractions.dll +2023-03-13 16:21:21.7040 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll +2023-03-13 16:21:21.7047 Info Copied Microsoft.Extensions.Logging.Configuration.dll +2023-03-13 16:21:21.7047 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll +2023-03-13 16:21:21.7047 Info Copied Microsoft.Extensions.Logging.Console.dll +2023-03-13 16:21:21.7047 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll +2023-03-13 16:21:21.7060 Info Copied Microsoft.Extensions.Logging.Debug.dll +2023-03-13 16:21:21.7060 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll +2023-03-13 16:21:21.7068 Info Copied Microsoft.Extensions.Logging.dll +2023-03-13 16:21:21.7068 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll +2023-03-13 16:21:21.7068 Info Copied Microsoft.Extensions.Logging.EventLog.dll +2023-03-13 16:21:21.7077 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll +2023-03-13 16:21:21.7077 Info Copied Microsoft.Extensions.Logging.EventSource.dll +2023-03-13 16:21:21.7077 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll +2023-03-13 16:21:21.7088 Info Copied Microsoft.Extensions.Logging.TraceSource.dll +2023-03-13 16:21:21.7088 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll +2023-03-13 16:21:21.7088 Info Copied Microsoft.Extensions.ObjectPool.dll +2023-03-13 16:21:21.7097 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-03-13 16:21:21.8331 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-03-13 16:21:21.8331 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll +2023-03-13 16:21:21.8342 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll +2023-03-13 16:21:21.8342 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll +2023-03-13 16:21:21.8351 Info Copied Microsoft.Extensions.Options.dll +2023-03-13 16:21:21.8351 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll +2023-03-13 16:21:21.8360 Info Copied Microsoft.Extensions.Primitives.dll +2023-03-13 16:21:21.8360 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll +2023-03-13 16:21:21.8367 Info Copied Microsoft.Extensions.WebEncoders.dll +2023-03-13 16:21:21.8367 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll +2023-03-13 16:21:21.8377 Info Copied Microsoft.JSInterop.dll +2023-03-13 16:21:21.8377 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll +2023-03-13 16:21:21.8387 Info Copied Microsoft.Net.Http.Headers.dll +2023-03-13 16:21:21.8387 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll +2023-03-13 16:21:21.8417 Info Copied Microsoft.VisualBasic.Core.dll +2023-03-13 16:21:21.8417 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll +2023-03-13 16:21:21.8417 Info Copied Microsoft.VisualBasic.dll +2023-03-13 16:21:21.8417 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll +2023-03-13 16:21:21.8430 Info Copied Microsoft.Win32.Primitives.dll +2023-03-13 16:21:21.8430 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll +2023-03-13 16:21:21.8438 Info Copied Microsoft.Win32.Registry.dll +2023-03-13 16:21:21.8438 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll +2023-03-13 16:21:21.8458 Info Copied MimeMapping.dll +2023-03-13 16:21:21.8458 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll +2023-03-13 16:21:21.8458 Info Copied Mono.Posix.dll +2023-03-13 16:21:21.8468 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll +2023-03-13 16:21:21.8468 Info Copied Mono.Unix.dll +2023-03-13 16:21:21.8478 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll +2023-03-13 16:21:21.8478 Info Copied mscorlib.dll +2023-03-13 16:21:21.8478 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll +2023-03-13 16:21:21.8492 Info Copied netstandard.dll +2023-03-13 16:21:21.8492 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll +2023-03-13 16:21:21.8501 Info Copied Newtonsoft.Json.Bson.dll +2023-03-13 16:21:21.8501 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll +2023-03-13 16:21:21.8518 Info Copied Newtonsoft.Json.dll +2023-03-13 16:21:21.8518 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll +2023-03-13 16:21:21.9147 Info Copied NLog.dll +2023-03-13 16:21:21.9147 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll +2023-03-13 16:21:21.9147 Info Copied NLog.Extensions.Logging.dll +2023-03-13 16:21:21.9158 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll +2023-03-13 16:21:21.9158 Info Copied NLog.Web.AspNetCore.dll +2023-03-13 16:21:21.9167 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll +2023-03-13 16:21:21.9167 Info Copied Org.Mentalis.dll +2023-03-13 16:21:21.9167 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll +2023-03-13 16:21:21.9182 Info Copied Polly.dll +2023-03-13 16:21:21.9182 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/README.md to destination: /app/Jackett/README.md +2023-03-13 16:21:21.9190 Info Copied README.md +2023-03-13 16:21:21.9190 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll +2023-03-13 16:21:21.9197 Info Copied SocksWebProxy.dll +2023-03-13 16:21:21.9197 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll +2023-03-13 16:21:21.9197 Info Copied System.AppContext.dll +2023-03-13 16:21:21.9197 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll +2023-03-13 16:21:21.9209 Info Copied System.Buffers.dll +2023-03-13 16:21:21.9209 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll +2023-03-13 16:21:21.9220 Info Copied System.Collections.Concurrent.dll +2023-03-13 16:21:21.9220 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll +2023-03-13 16:21:21.9231 Info Copied System.Collections.dll +2023-03-13 16:21:21.9231 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll +2023-03-13 16:21:21.9249 Info Copied System.Collections.Immutable.dll +2023-03-13 16:21:21.9249 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll +2023-03-13 16:21:21.9259 Info Copied System.Collections.NonGeneric.dll +2023-03-13 16:21:21.9259 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll +2023-03-13 16:21:21.9267 Info Copied System.Collections.Specialized.dll +2023-03-13 16:21:21.9267 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll +2023-03-13 16:21:21.9278 Info Copied System.ComponentModel.Annotations.dll +2023-03-13 16:21:21.9309 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll +2023-03-13 16:21:21.9309 Info Copied System.ComponentModel.DataAnnotations.dll +2023-03-13 16:21:21.9309 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll +2023-03-13 16:21:21.9321 Info Copied System.ComponentModel.dll +2023-03-13 16:21:21.9321 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll +2023-03-13 16:21:21.9327 Info Copied System.ComponentModel.EventBasedAsync.dll +2023-03-13 16:21:21.9327 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll +2023-03-13 16:21:21.9327 Info Copied System.ComponentModel.Primitives.dll +2023-03-13 16:21:21.9327 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll +2023-03-13 16:21:21.9870 Info Copied System.ComponentModel.TypeConverter.dll +2023-03-13 16:21:21.9870 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll +2023-03-13 16:21:21.9879 Info Copied System.Configuration.dll +2023-03-13 16:21:21.9879 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll +2023-03-13 16:21:21.9889 Info Copied System.Console.dll +2023-03-13 16:21:21.9889 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll +2023-03-13 16:21:21.9889 Info Copied System.Core.dll +2023-03-13 16:21:21.9897 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll +2023-03-13 16:21:21.9990 Info Copied System.Data.Common.dll +2023-03-13 16:21:21.9990 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll +2023-03-13 16:21:21.9998 Info Copied System.Data.DataSetExtensions.dll +2023-03-13 16:21:21.9998 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll +2023-03-13 16:21:21.9998 Info Copied System.Data.dll +2023-03-13 16:21:21.9998 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll +2023-03-13 16:21:22.0010 Info Copied System.Diagnostics.Contracts.dll +2023-03-13 16:21:22.0010 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll +2023-03-13 16:21:22.0010 Info Copied System.Diagnostics.Debug.dll +2023-03-13 16:21:22.0017 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll +2023-03-13 16:21:22.0029 Info Copied System.Diagnostics.DiagnosticSource.dll +2023-03-13 16:21:22.0029 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll +2023-03-13 16:21:22.0029 Info Copied System.Diagnostics.EventLog.dll +2023-03-13 16:21:22.0038 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll +2023-03-13 16:21:22.0038 Info Copied System.Diagnostics.FileVersionInfo.dll +2023-03-13 16:21:22.0038 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll +2023-03-13 16:21:22.0054 Info Copied System.Diagnostics.Process.dll +2023-03-13 16:21:22.0054 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll +2023-03-13 16:21:22.0061 Info Copied System.Diagnostics.StackTrace.dll +2023-03-13 16:21:22.0061 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll +2023-03-13 16:21:22.1097 Info Copied System.Diagnostics.TextWriterTraceListener.dll +2023-03-13 16:21:22.1097 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll +2023-03-13 16:21:22.1107 Info Copied System.Diagnostics.Tools.dll +2023-03-13 16:21:22.1107 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll +2023-03-13 16:21:22.1117 Info Copied System.Diagnostics.TraceSource.dll +2023-03-13 16:21:22.1117 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll +2023-03-13 16:21:22.1117 Info Copied System.Diagnostics.Tracing.dll +2023-03-13 16:21:22.1117 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.dll to destination: /app/Jackett/System.dll +2023-03-13 16:21:22.1129 Info Copied System.dll +2023-03-13 16:21:22.1129 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll +2023-03-13 16:21:22.1129 Info Copied System.Drawing.dll +2023-03-13 16:21:22.1137 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll +2023-03-13 16:21:22.1137 Info Copied System.Drawing.Primitives.dll +2023-03-13 16:21:22.1137 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll +2023-03-13 16:21:22.1150 Info Copied System.Dynamic.Runtime.dll +2023-03-13 16:21:22.1150 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll +2023-03-13 16:21:22.1161 Info Copied System.Formats.Asn1.dll +2023-03-13 16:21:22.1161 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll +2023-03-13 16:21:22.1167 Info Copied System.Globalization.Calendars.dll +2023-03-13 16:21:22.1167 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll +2023-03-13 16:21:22.1167 Info Copied System.Globalization.dll +2023-03-13 16:21:22.1167 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll +2023-03-13 16:21:22.1178 Info Copied System.Globalization.Extensions.dll +2023-03-13 16:21:22.1178 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll +2023-03-13 16:21:22.1178 Info Copied System.IO.Compression.Brotli.dll +2023-03-13 16:21:22.1187 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll +2023-03-13 16:21:22.1198 Info Copied System.IO.Compression.dll +2023-03-13 16:21:22.1198 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll +2023-03-13 16:21:22.1198 Info Copied System.IO.Compression.FileSystem.dll +2023-03-13 16:21:22.1198 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll +2023-03-13 16:21:22.1211 Info Copied System.IO.Compression.ZipFile.dll +2023-03-13 16:21:22.1211 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll +2023-03-13 16:21:22.1217 Info Copied System.IO.dll +2023-03-13 16:21:22.1217 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll +2023-03-13 16:21:22.1217 Info Copied System.IO.FileSystem.AccessControl.dll +2023-03-13 16:21:22.1217 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll +2023-03-13 16:21:22.1230 Info Copied System.IO.FileSystem.dll +2023-03-13 16:21:22.1230 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll +2023-03-13 16:21:22.1237 Info Copied System.IO.FileSystem.DriveInfo.dll +2023-03-13 16:21:22.1237 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll +2023-03-13 16:21:22.1237 Info Copied System.IO.FileSystem.Primitives.dll +2023-03-13 16:21:22.1237 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll +2023-03-13 16:21:22.1251 Info Copied System.IO.FileSystem.Watcher.dll +2023-03-13 16:21:22.1251 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll +2023-03-13 16:21:22.1259 Info Copied System.IO.IsolatedStorage.dll +2023-03-13 16:21:22.1259 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll +2023-03-13 16:21:22.1259 Info Copied System.IO.MemoryMappedFiles.dll +2023-03-13 16:21:22.1268 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll +2023-03-13 16:21:22.1268 Info Copied System.IO.Pipelines.dll +2023-03-13 16:21:22.1277 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll +2023-03-13 16:21:22.1277 Info Copied System.IO.Pipes.AccessControl.dll +2023-03-13 16:21:22.1277 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll +2023-03-13 16:21:22.1290 Info Copied System.IO.Pipes.dll +2023-03-13 16:21:22.1290 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll +2023-03-13 16:21:22.1290 Info Copied System.IO.UnmanagedMemoryStream.dll +2023-03-13 16:21:22.1297 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll +2023-03-13 16:21:22.1954 Info Copied System.Linq.dll +2023-03-13 16:21:22.1961 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll +2023-03-13 16:21:22.2122 Info Copied System.Linq.Expressions.dll +2023-03-13 16:21:22.2128 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll +2023-03-13 16:21:22.2321 Info Copied System.Linq.Parallel.dll +2023-03-13 16:21:22.2321 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll +2023-03-13 16:21:22.2366 Info Copied System.Linq.Queryable.dll +2023-03-13 16:21:22.2371 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll +2023-03-13 16:21:22.2393 Info Copied System.Memory.dll +2023-03-13 16:21:22.2397 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll +2023-03-13 16:21:22.2410 Info Copied System.Net.dll +2023-03-13 16:21:22.2410 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll +2023-03-13 16:21:22.2486 Info Copied System.Net.Http.dll +2023-03-13 16:21:22.2490 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll +2023-03-13 16:21:22.2508 Info Copied System.Net.Http.Json.dll +2023-03-13 16:21:22.2508 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll +2023-03-13 16:21:22.2733 Info Copied System.Net.HttpListener.dll +2023-03-13 16:21:22.2738 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll +2023-03-13 16:21:22.2770 Info Copied System.Net.Mail.dll +2023-03-13 16:21:22.2770 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll +2023-03-13 16:21:22.2791 Info Copied System.Net.NameResolution.dll +2023-03-13 16:21:22.2791 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll +2023-03-13 16:21:22.2816 Info Copied System.Net.NetworkInformation.dll +2023-03-13 16:21:22.2820 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll +2023-03-13 16:21:22.2838 Info Copied System.Net.Ping.dll +2023-03-13 16:21:22.2838 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll +2023-03-13 16:21:22.2862 Info Copied System.Net.Primitives.dll +2023-03-13 16:21:22.2867 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll +2023-03-13 16:21:22.2890 Info Copied System.Net.Quic.dll +2023-03-13 16:21:22.2890 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll +2023-03-13 16:21:22.2920 Info Copied System.Net.Requests.dll +2023-03-13 16:21:22.2920 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll +2023-03-13 16:21:22.3062 Info Copied System.Net.Security.dll +2023-03-13 16:21:22.3067 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll +2023-03-13 16:21:22.3082 Info Copied System.Net.ServicePoint.dll +2023-03-13 16:21:22.3082 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll +2023-03-13 16:21:22.3115 Info Copied System.Net.Sockets.dll +2023-03-13 16:21:22.3120 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll +2023-03-13 16:21:22.3140 Info Copied System.Net.WebClient.dll +2023-03-13 16:21:22.3140 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll +2023-03-13 16:21:22.3157 Info Copied System.Net.WebHeaderCollection.dll +2023-03-13 16:21:22.3157 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll +2023-03-13 16:21:22.3174 Info Copied System.Net.WebProxy.dll +2023-03-13 16:21:22.3179 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll +2023-03-13 16:21:22.3194 Info Copied System.Net.WebSockets.Client.dll +2023-03-13 16:21:22.3198 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll +2023-03-13 16:21:22.3218 Info Copied System.Net.WebSockets.dll +2023-03-13 16:21:22.3218 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll +2023-03-13 16:21:22.3234 Info Copied System.Numerics.dll +2023-03-13 16:21:22.3237 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll +2023-03-13 16:21:22.3250 Info Copied System.Numerics.Vectors.dll +2023-03-13 16:21:22.3250 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll +2023-03-13 16:21:22.3518 Info Copied System.ObjectModel.dll +2023-03-13 16:21:22.3518 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll +2023-03-13 16:21:22.3962 Info Copied System.Private.CoreLib.dll +2023-03-13 16:21:22.3968 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll +2023-03-13 16:21:22.4085 Info Copied System.Private.DataContractSerialization.dll +2023-03-13 16:21:22.4091 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll +2023-03-13 16:21:22.4114 Info Copied System.Private.Uri.dll +2023-03-13 16:21:22.4119 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll +2023-03-13 16:21:22.5255 Info Copied System.Private.Xml.dll +2023-03-13 16:21:22.5262 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll +2023-03-13 16:21:22.5299 Info Copied System.Private.Xml.Linq.dll +2023-03-13 16:21:22.5299 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll +2023-03-13 16:21:22.5321 Info Copied System.Reflection.DispatchProxy.dll +2023-03-13 16:21:22.5321 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll +2023-03-13 16:21:22.5337 Info Copied System.Reflection.dll +2023-03-13 16:21:22.5337 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll +2023-03-13 16:21:22.5353 Info Copied System.Reflection.Emit.dll +2023-03-13 16:21:22.5357 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll +2023-03-13 16:21:22.5369 Info Copied System.Reflection.Emit.ILGeneration.dll +2023-03-13 16:21:22.5369 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll +2023-03-13 16:21:22.5385 Info Copied System.Reflection.Emit.Lightweight.dll +2023-03-13 16:21:22.5390 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll +2023-03-13 16:21:22.5401 Info Copied System.Reflection.Extensions.dll +2023-03-13 16:21:22.5401 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll +2023-03-13 16:21:22.7582 Info Copied System.Reflection.Metadata.dll +2023-03-13 16:21:22.7582 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll +2023-03-13 16:21:22.7600 Info Copied System.Reflection.Primitives.dll +2023-03-13 16:21:22.7600 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll +2023-03-13 16:21:22.7614 Info Copied System.Reflection.TypeExtensions.dll +2023-03-13 16:21:22.7617 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll +2023-03-13 16:21:22.7627 Info Copied System.Resources.Reader.dll +2023-03-13 16:21:22.7627 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll +2023-03-13 16:21:22.7641 Info Copied System.Resources.ResourceManager.dll +2023-03-13 16:21:22.7641 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll +2023-03-13 16:21:22.7655 Info Copied System.Resources.Writer.dll +2023-03-13 16:21:22.7659 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll +2023-03-13 16:21:22.7670 Info Copied System.Runtime.CompilerServices.Unsafe.dll +2023-03-13 16:21:22.7670 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll +2023-03-13 16:21:22.7684 Info Copied System.Runtime.CompilerServices.VisualC.dll +2023-03-13 16:21:22.7688 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll +2023-03-13 16:21:22.7698 Info Copied System.Runtime.dll +2023-03-13 16:21:22.7698 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll +2023-03-13 16:21:22.7711 Info Copied System.Runtime.Extensions.dll +2023-03-13 16:21:22.7711 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll +2023-03-13 16:21:22.7723 Info Copied System.Runtime.Handles.dll +2023-03-13 16:21:22.7727 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll +2023-03-13 16:21:22.7739 Info Copied System.Runtime.InteropServices.dll +2023-03-13 16:21:22.7739 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll +2023-03-13 16:21:22.7753 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll +2023-03-13 16:21:22.7758 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll +2023-03-13 16:21:22.7768 Info Copied System.Runtime.Intrinsics.dll +2023-03-13 16:21:22.7768 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll +2023-03-13 16:21:22.7782 Info Copied System.Runtime.Loader.dll +2023-03-13 16:21:22.7782 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll +2023-03-13 16:21:22.8295 Info Copied System.Runtime.Numerics.dll +2023-03-13 16:21:22.8301 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll +2023-03-13 16:21:22.8313 Info Copied System.Runtime.Serialization.dll +2023-03-13 16:21:22.8313 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll +2023-03-13 16:21:22.8350 Info Copied System.Runtime.Serialization.Formatters.dll +2023-03-13 16:21:22.8350 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll +2023-03-13 16:21:22.8364 Info Copied System.Runtime.Serialization.Json.dll +2023-03-13 16:21:22.8368 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll +2023-03-13 16:21:22.8386 Info Copied System.Runtime.Serialization.Primitives.dll +2023-03-13 16:21:22.8390 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll +2023-03-13 16:21:22.8401 Info Copied System.Runtime.Serialization.Xml.dll +2023-03-13 16:21:22.8401 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll +2023-03-13 16:21:22.8417 Info Copied System.Security.AccessControl.dll +2023-03-13 16:21:22.8417 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll +2023-03-13 16:21:22.8444 Info Copied System.Security.Claims.dll +2023-03-13 16:21:22.8447 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll +2023-03-13 16:21:22.8572 Info Copied System.Security.Cryptography.Algorithms.dll +2023-03-13 16:21:22.8578 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll +2023-03-13 16:21:22.8591 Info Copied System.Security.Cryptography.Cng.dll +2023-03-13 16:21:22.8591 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll +2023-03-13 16:21:22.8618 Info Copied System.Security.Cryptography.Csp.dll +2023-03-13 16:21:22.8618 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll +2023-03-13 16:21:22.8638 Info Copied System.Security.Cryptography.Encoding.dll +2023-03-13 16:21:22.8638 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll +2023-03-13 16:21:22.8668 Info Copied System.Security.Cryptography.OpenSsl.dll +2023-03-13 16:21:22.8668 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll +2023-03-13 16:21:22.8715 Info Copied System.Security.Cryptography.Pkcs.dll +2023-03-13 16:21:22.8718 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll +2023-03-13 16:21:22.8735 Info Copied System.Security.Cryptography.Primitives.dll +2023-03-13 16:21:22.8739 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll +2023-03-13 16:21:22.8750 Info Copied System.Security.Cryptography.ProtectedData.dll +2023-03-13 16:21:22.8750 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll +2023-03-13 16:21:22.9011 Info Copied System.Security.Cryptography.X509Certificates.dll +2023-03-13 16:21:22.9011 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll +2023-03-13 16:21:22.9051 Info Copied System.Security.Cryptography.Xml.dll +2023-03-13 16:21:22.9051 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll +2023-03-13 16:21:22.9066 Info Copied System.Security.dll +2023-03-13 16:21:22.9100 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll +2023-03-13 16:21:22.9110 Info Copied System.Security.Principal.dll +2023-03-13 16:21:22.9110 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll +2023-03-13 16:21:22.9155 Info Copied System.Security.Principal.Windows.dll +2023-03-13 16:21:22.9159 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll +2023-03-13 16:21:22.9169 Info Copied System.Security.SecureString.dll +2023-03-13 16:21:22.9169 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll +2023-03-13 16:21:22.9222 Info Copied System.ServiceModel.Web.dll +2023-03-13 16:21:22.9227 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll +2023-03-13 16:21:22.9237 Info Copied System.ServiceProcess.dll +2023-03-13 16:21:22.9237 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll +2023-03-13 16:21:22.9291 Info Copied System.ServiceProcess.ServiceController.dll +2023-03-13 16:21:22.9291 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll +2023-03-13 16:21:22.9382 Info Copied System.Text.Encoding.CodePages.dll +2023-03-13 16:21:22.9427 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll +2023-03-13 16:21:22.9618 Info Copied System.Text.Encoding.dll +2023-03-13 16:21:22.9618 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll +2023-03-13 16:21:22.9636 Info Copied System.Text.Encoding.Extensions.dll +2023-03-13 16:21:22.9646 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll +2023-03-13 16:21:22.9664 Info Copied System.Text.Encodings.Web.dll +2023-03-13 16:21:22.9668 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll +2023-03-13 16:21:22.9841 Info Copied System.Text.Json.dll +2023-03-13 16:21:22.9841 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll +2023-03-13 16:21:22.9960 Info Copied System.Text.RegularExpressions.dll +2023-03-13 16:21:22.9960 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll +2023-03-13 16:21:22.9980 Info Copied System.Threading.Channels.dll +2023-03-13 16:21:22.9980 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll +2023-03-13 16:21:23.0239 Info Copied System.Threading.dll +2023-03-13 16:21:23.0239 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll +2023-03-13 16:21:23.0254 Info Copied System.Threading.Overlapped.dll +2023-03-13 16:21:23.0258 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll +2023-03-13 16:21:23.0293 Info Copied System.Threading.Tasks.Dataflow.dll +2023-03-13 16:21:23.0293 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll +2023-03-13 16:21:23.0305 Info Copied System.Threading.Tasks.dll +2023-03-13 16:21:23.0309 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll +2023-03-13 16:21:23.0358 Info Copied System.Threading.Tasks.Extensions.dll +2023-03-13 16:21:23.0358 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll +2023-03-13 16:21:23.0377 Info Copied System.Threading.Tasks.Parallel.dll +2023-03-13 16:21:23.0377 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll +2023-03-13 16:21:23.0432 Info Copied System.Threading.Thread.dll +2023-03-13 16:21:23.0432 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll +2023-03-13 16:21:23.0555 Info Copied System.Threading.ThreadPool.dll +2023-03-13 16:21:23.0561 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll +2023-03-13 16:21:23.0572 Info Copied System.Threading.Timer.dll +2023-03-13 16:21:23.0572 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll +2023-03-13 16:21:23.0588 Info Copied System.Transactions.dll +2023-03-13 16:21:23.0588 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll +2023-03-13 16:21:23.0617 Info Copied System.Transactions.Local.dll +2023-03-13 16:21:23.0617 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll +2023-03-13 16:21:23.0701 Info Copied System.ValueTuple.dll +2023-03-13 16:21:23.0701 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll +2023-03-13 16:21:23.0715 Info Copied System.Web.dll +2023-03-13 16:21:23.0719 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll +2023-03-13 16:21:23.0731 Info Copied System.Web.HttpUtility.dll +2023-03-13 16:21:23.0731 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll +2023-03-13 16:21:23.0745 Info Copied System.Windows.dll +2023-03-13 16:21:23.0748 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll +2023-03-13 16:21:23.0995 Info Copied System.Xml.dll +2023-03-13 16:21:23.1001 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll +2023-03-13 16:21:23.1012 Info Copied System.Xml.Linq.dll +2023-03-13 16:21:23.1012 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll +2023-03-13 16:21:23.1027 Info Copied System.Xml.ReaderWriter.dll +2023-03-13 16:21:23.1031 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll +2023-03-13 16:21:23.1041 Info Copied System.Xml.Serialization.dll +2023-03-13 16:21:23.1041 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll +2023-03-13 16:21:23.1054 Info Copied System.Xml.XDocument.dll +2023-03-13 16:21:23.1057 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll +2023-03-13 16:21:23.1068 Info Copied System.Xml.XmlDocument.dll +2023-03-13 16:21:23.1068 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll +2023-03-13 16:21:23.1081 Info Copied System.Xml.XmlSerializer.dll +2023-03-13 16:21:23.1081 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll +2023-03-13 16:21:23.1094 Info Copied System.Xml.XPath.dll +2023-03-13 16:21:23.1138 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll +2023-03-13 16:21:23.1149 Info Copied System.Xml.XPath.XDocument.dll +2023-03-13 16:21:23.1149 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll +2023-03-13 16:21:23.1162 Info Copied WindowsBase.dll +2023-03-13 16:21:23.1162 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll +2023-03-13 16:21:23.1300 Info Copied YamlDotNet.dll +2023-03-13 16:21:23.1300 Info File copying complete +2023-03-13 16:21:23.1372 Info Deleting file /app/Jackett/Definitions/pornforall.yml +2023-03-13 16:21:23.1477 Info Deleting file /app/Jackett/Definitions/woot.yml +2023-03-13 16:21:23.2078 Info Killing process 133 +2023-03-13 16:21:26.2891 Info Process 133 didn't exit within 2 seconds after a SIGTERM +2023-03-14 17:21:38.2556 Info Jackett Updater v0.20.3599 +2023-03-14 17:21:38.3458 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "236" "--NoRestart" +2023-03-14 17:21:38.3493 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-14 17:21:38.5405 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb +2023-03-14 17:21:38.5412 Info Deleted /app/Jackett/DateTimeRoutines.pdb +2023-03-14 17:21:38.5412 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb +2023-03-14 17:21:38.5419 Info Deleted /app/Jackett/Jackett.Common.pdb +2023-03-14 17:21:38.5419 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb +2023-03-14 17:21:38.5419 Info Deleted /app/Jackett/JackettUpdater.pdb +2023-03-14 17:21:38.5419 Info Attempting to remove: /app/Jackett/jackett.pdb +2023-03-14 17:21:38.5430 Info Deleted /app/Jackett/jackett.pdb +2023-03-14 17:21:38.5430 Info Attempting to remove: /app/Jackett/jackett +2023-03-14 17:21:38.5430 Info Deleted /app/Jackett/jackett +2023-03-14 17:21:38.5437 Info Finding files in: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/ +2023-03-14 17:21:38.5490 Info 890 update files found +2023-03-14 17:21:38.5501 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll +2023-03-14 17:21:38.5527 Info Copied AngleSharp.dll +2023-03-14 17:21:38.5527 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll +2023-03-14 17:21:38.5537 Info Copied AngleSharp.Xml.dll +2023-03-14 17:21:38.5537 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll +2023-03-14 17:21:38.5550 Info Copied Autofac.dll +2023-03-14 17:21:38.5550 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll +2023-03-14 17:21:38.5560 Info Copied Autofac.Extensions.DependencyInjection.dll +2023-03-14 17:21:38.5560 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll +2023-03-14 17:21:38.5573 Info Copied AutoMapper.dll +2023-03-14 17:21:38.5573 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll +2023-03-14 17:21:38.5581 Info Copied BencodeNET.dll +2023-03-14 17:21:38.5581 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll +2023-03-14 17:21:38.5601 Info Copied CommandLine.dll +2023-03-14 17:21:38.5601 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css +2023-03-14 17:21:38.5610 Info Copied animate.css +2023-03-14 17:21:38.5610 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png +2023-03-14 17:21:38.5618 Info Copied apple-touch-icon.png +2023-03-14 17:21:38.5618 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png +2023-03-14 17:21:38.5618 Info Copied binding_dark.png +2023-03-14 17:21:38.5628 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css +2023-03-14 17:21:38.5628 Info Copied bootstrap.min.css +2023-03-14 17:21:38.5638 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js +2023-03-14 17:21:38.5638 Info Copied bootstrap.min.js +2023-03-14 17:21:38.5638 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js +2023-03-14 17:21:38.5650 Info Copied common.js +2023-03-14 17:21:38.5650 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css +2023-03-14 17:21:38.5657 Info Copied bootstrap-multiselect.css +2023-03-14 17:21:38.5657 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css +2023-03-14 17:21:38.5657 Info Copied font-awesome.min.css +2023-03-14 17:21:38.5667 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css +2023-03-14 17:21:38.5667 Info Copied jquery.dataTables.min.css +2023-03-14 17:21:38.5667 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css +2023-03-14 17:21:38.5681 Info Copied tagify.css +2023-03-14 17:21:38.5681 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css +2023-03-14 17:21:38.5688 Info Copied custom_mobile.css +2023-03-14 17:21:38.5688 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css +2023-03-14 17:21:38.5688 Info Copied custom.css +2023-03-14 17:21:38.5697 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js +2023-03-14 17:21:38.5697 Info Copied custom.js +2023-03-14 17:21:38.5697 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico +2023-03-14 17:21:38.5714 Info Copied favicon.ico +2023-03-14 17:21:38.5714 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot +2023-03-14 17:21:38.5724 Info Copied fontawesome-webfont.eot +2023-03-14 17:21:38.5733 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg +2023-03-14 17:21:38.5745 Info Copied fontawesome-webfont.svg +2023-03-14 17:21:38.5747 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf +2023-03-14 17:21:38.5747 Info Copied fontawesome-webfont.ttf +2023-03-14 17:21:38.5747 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff +2023-03-14 17:21:38.5763 Info Copied fontawesome-webfont.woff +2023-03-14 17:21:38.5763 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 +2023-03-14 17:21:38.5771 Info Copied fontawesome-webfont.woff2 +2023-03-14 17:21:38.5771 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf +2023-03-14 17:21:38.5781 Info Copied FontAwesome.otf +2023-03-14 17:21:38.5781 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot +2023-03-14 17:21:38.5789 Info Copied glyphicons-halflings-regular.eot +2023-03-14 17:21:38.5789 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg +2023-03-14 17:21:38.5799 Info Copied glyphicons-halflings-regular.svg +2023-03-14 17:21:38.5799 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf +2023-03-14 17:21:38.5807 Info Copied glyphicons-halflings-regular.ttf +2023-03-14 17:21:38.5807 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff +2023-03-14 17:21:38.5807 Info Copied glyphicons-halflings-regular.woff +2023-03-14 17:21:38.5818 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 +2023-03-14 17:21:38.5818 Info Copied glyphicons-halflings-regular.woff2 +2023-03-14 17:21:38.5826 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png +2023-03-14 17:21:38.5826 Info Copied sort_asc_disabled.png +2023-03-14 17:21:38.5826 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png +2023-03-14 17:21:38.5840 Info Copied sort_asc.png +2023-03-14 17:21:38.5840 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png +2023-03-14 17:21:38.5848 Info Copied sort_both.png +2023-03-14 17:21:38.5848 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png +2023-03-14 17:21:38.5848 Info Copied sort_desc_disabled.png +2023-03-14 17:21:38.5857 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png +2023-03-14 17:21:38.5857 Info Copied sort_desc.png +2023-03-14 17:21:38.5857 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html +2023-03-14 17:21:38.5872 Info Copied index.html +2023-03-14 17:21:38.5872 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png +2023-03-14 17:21:38.5879 Info Copied jacket_medium.png +2023-03-14 17:21:38.5879 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js +2023-03-14 17:21:38.5887 Info Copied api.js +2023-03-14 17:21:38.5887 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js +2023-03-14 17:21:38.5897 Info Copied bootstrap-multiselect.js +2023-03-14 17:21:38.5897 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js +2023-03-14 17:21:38.5897 Info Copied bootstrap-notify.js +2023-03-14 17:21:38.5907 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js +2023-03-14 17:21:38.5907 Info Copied filesize.min.js +2023-03-14 17:21:38.5907 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js +2023-03-14 17:21:38.5922 Info Copied handlebars.min.js +2023-03-14 17:21:38.5922 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js +2023-03-14 17:21:38.5930 Info Copied handlebarsextend.js +2023-03-14 17:21:38.5930 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js +2023-03-14 17:21:38.5938 Info Copied handlebarsmoment.js +2023-03-14 17:21:38.5938 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js +2023-03-14 17:21:38.5947 Info Copied jquery.dataTables.min.js +2023-03-14 17:21:38.5947 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js +2023-03-14 17:21:38.5957 Info Copied jquery.min.js +2023-03-14 17:21:38.5957 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js +2023-03-14 17:21:38.5957 Info Copied jQuery.tagify.min.js +2023-03-14 17:21:38.5967 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js +2023-03-14 17:21:38.5967 Info Copied moment.min.js +2023-03-14 17:21:38.5967 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js +2023-03-14 17:21:38.5981 Info Copied tagify.min.js +2023-03-14 17:21:38.5981 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html +2023-03-14 17:21:38.5989 Info Copied login.html +2023-03-14 17:21:38.5989 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/createdump to destination: /app/Jackett/createdump +2023-03-14 17:21:38.6008 Info Copied createdump +2023-03-14 17:21:38.6008 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll +2023-03-14 17:21:38.6017 Info Copied DateTimeRoutines.dll +2023-03-14 17:21:38.6017 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb +2023-03-14 17:21:38.6026 Info Copied DateTimeRoutines.pdb +2023-03-14 17:21:38.6026 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml +2023-03-14 17:21:38.6026 Info Copied 0daykiev.yml +2023-03-14 17:21:38.6026 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml +2023-03-14 17:21:38.6042 Info Copied 0magnet.yml +2023-03-14 17:21:38.6042 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml +2023-03-14 17:21:38.6050 Info Copied 1337x.yml +2023-03-14 17:21:38.6050 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml +2023-03-14 17:21:38.6058 Info Copied 1ptbar.yml +2023-03-14 17:21:38.6058 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml +2023-03-14 17:21:38.6058 Info Copied 2fast4you.yml +2023-03-14 17:21:38.6068 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml +2023-03-14 17:21:38.6068 Info Copied 2xfree.yml +2023-03-14 17:21:38.6077 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml +2023-03-14 17:21:38.6077 Info Copied 3changtrai.yml +2023-03-14 17:21:38.6077 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml +2023-03-14 17:21:38.6091 Info Copied 3dtorrents.yml +2023-03-14 17:21:38.6091 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml +2023-03-14 17:21:38.6099 Info Copied 4thd.yml +2023-03-14 17:21:38.6099 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml +2023-03-14 17:21:38.6107 Info Copied 52pt.yml +2023-03-14 17:21:38.6107 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml +2023-03-14 17:21:38.6107 Info Copied abnormal.yml +2023-03-14 17:21:38.6117 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml +2023-03-14 17:21:38.6117 Info Copied abtorrents.yml +2023-03-14 17:21:38.6117 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml +2023-03-14 17:21:38.6131 Info Copied acervos-api.yml +2023-03-14 17:21:38.6131 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml +2023-03-14 17:21:38.6139 Info Copied acgrip.yml +2023-03-14 17:21:38.6139 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml +2023-03-14 17:21:38.6147 Info Copied acgsou.yml +2023-03-14 17:21:38.6147 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml +2023-03-14 17:21:38.6147 Info Copied acidlounge.yml +2023-03-14 17:21:38.6158 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml +2023-03-14 17:21:38.6158 Info Copied acrossthetasman.yml +2023-03-14 17:21:38.6158 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml +2023-03-14 17:21:38.6171 Info Copied aftershock.yml +2023-03-14 17:21:38.6171 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml +2023-03-14 17:21:38.6179 Info Copied aidoruonline.yml +2023-03-14 17:21:38.6179 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml +2023-03-14 17:21:38.6187 Info Copied aither-api.yml +2023-03-14 17:21:38.6187 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml +2023-03-14 17:21:38.6187 Info Copied amigosshare.yml +2023-03-14 17:21:38.6187 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml +2023-03-14 17:21:38.6201 Info Copied anilibria.yml +2023-03-14 17:21:38.6201 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml +2023-03-14 17:21:38.6209 Info Copied anime-free.yml +2023-03-14 17:21:38.6209 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml +2023-03-14 17:21:38.6209 Info Copied animelayer.yml +2023-03-14 17:21:38.6218 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml +2023-03-14 17:21:38.6218 Info Copied animetracker.yml +2023-03-14 17:21:38.6218 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml +2023-03-14 17:21:38.6232 Info Copied animeworld-api.yml +2023-03-14 17:21:38.6232 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml +2023-03-14 17:21:38.6239 Info Copied anirena.yml +2023-03-14 17:21:38.6239 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml +2023-03-14 17:21:38.6239 Info Copied anisource.yml +2023-03-14 17:21:38.6248 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml +2023-03-14 17:21:38.6248 Info Copied anthelion-api.yml +2023-03-14 17:21:38.6248 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml +2023-03-14 17:21:38.6262 Info Copied arabafenice.yml +2023-03-14 17:21:38.6262 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml +2023-03-14 17:21:38.6270 Info Copied arabp2p.yml +2023-03-14 17:21:38.6270 Info Attempting to copy arabtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/arabtorrents.yml to destination: /app/Jackett/Definitions/arabtorrents.yml +2023-03-14 17:21:38.6278 Info Copied arabtorrents.yml +2023-03-14 17:21:38.6278 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml +2023-03-14 17:21:38.6278 Info Copied arenabg.yml +2023-03-14 17:21:38.6288 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml +2023-03-14 17:21:38.6288 Info Copied asiancinema.yml +2023-03-14 17:21:38.6288 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml +2023-03-14 17:21:38.6301 Info Copied asiandvdclub.yml +2023-03-14 17:21:38.6301 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml +2023-03-14 17:21:38.6309 Info Copied audiences.yml +2023-03-14 17:21:38.6309 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml +2023-03-14 17:21:38.6318 Info Copied audionews.yml +2023-03-14 17:21:38.6318 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml +2023-03-14 17:21:38.6318 Info Copied aussierules.yml +2023-03-14 17:21:38.6327 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml +2023-03-14 17:21:38.6327 Info Copied backups.yml +2023-03-14 17:21:38.6327 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml +2023-03-14 17:21:38.6341 Info Copied badasstorrents.yml +2023-03-14 17:21:38.6341 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml +2023-03-14 17:21:38.6348 Info Copied bangumi-moe.yml +2023-03-14 17:21:38.6348 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml +2023-03-14 17:21:38.6348 Info Copied beitai.yml +2023-03-14 17:21:38.6358 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml +2023-03-14 17:21:38.6358 Info Copied bestcore.yml +2023-03-14 17:21:38.6358 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml +2023-03-14 17:21:38.6370 Info Copied beyond-hd.yml +2023-03-14 17:21:38.6370 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml +2023-03-14 17:21:38.6377 Info Copied bibliotik.yml +2023-03-14 17:21:38.6377 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml +2023-03-14 17:21:38.6377 Info Copied bigfangroup.yml +2023-03-14 17:21:38.6388 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml +2023-03-14 17:21:38.6388 Info Copied bitbazis.yml +2023-03-14 17:21:38.6397 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml +2023-03-14 17:21:38.6397 Info Copied bitded.yml +2023-03-14 17:21:38.6397 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml +2023-03-14 17:21:38.6408 Info Copied bithorlo.yml +2023-03-14 17:21:38.6408 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml +2023-03-14 17:21:38.6408 Info Copied bithumen.yml +2023-03-14 17:21:38.6417 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml +2023-03-14 17:21:38.6417 Info Copied bitnova.yml +2023-03-14 17:21:38.6417 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml +2023-03-14 17:21:38.6429 Info Copied bitofvalor.yml +2023-03-14 17:21:38.6429 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml +2023-03-14 17:21:38.6437 Info Copied bitru.yml +2023-03-14 17:21:38.6437 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml +2023-03-14 17:21:38.6437 Info Copied bitsearch.yml +2023-03-14 17:21:38.6437 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml +2023-03-14 17:21:38.6451 Info Copied bitsexy.yml +2023-03-14 17:21:38.6451 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml +2023-03-14 17:21:38.6459 Info Copied bitspyder.yml +2023-03-14 17:21:38.6459 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml +2023-03-14 17:21:38.6459 Info Copied Bittorrentfiles.yml +2023-03-14 17:21:38.6468 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml +2023-03-14 17:21:38.6468 Info Copied bitturk.yml +2023-03-14 17:21:38.6468 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml +2023-03-14 17:21:38.6480 Info Copied bluebird.yml +2023-03-14 17:21:38.6480 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml +2023-03-14 17:21:38.6487 Info Copied blutopia-api.yml +2023-03-14 17:21:38.6487 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml +2023-03-14 17:21:38.6487 Info Copied booktracker.yml +2023-03-14 17:21:38.6497 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml +2023-03-14 17:21:38.6497 Info Copied bootytape.yml +2023-03-14 17:21:38.6497 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml +2023-03-14 17:21:38.6509 Info Copied borgzelle.yml +2023-03-14 17:21:38.6509 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml +2023-03-14 17:21:38.6509 Info Copied boxingtorrents.yml +2023-03-14 17:21:38.6517 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml +2023-03-14 17:21:38.6517 Info Copied broadcity.yml +2023-03-14 17:21:38.6517 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml +2023-03-14 17:21:38.6528 Info Copied brsociety-api.yml +2023-03-14 17:21:38.6528 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml +2023-03-14 17:21:38.6528 Info Copied bt4g.yml +2023-03-14 17:21:38.6528 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml +2023-03-14 17:21:38.6542 Info Copied btdigg.yml +2023-03-14 17:21:38.6542 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml +2023-03-14 17:21:38.6549 Info Copied btetree.yml +2023-03-14 17:21:38.6549 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml +2023-03-14 17:21:38.6549 Info Copied btmet.yml +2023-03-14 17:21:38.6558 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml +2023-03-14 17:21:38.6558 Info Copied btnext.yml +2023-03-14 17:21:38.6558 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml +2023-03-14 17:21:38.6571 Info Copied btschool.yml +2023-03-14 17:21:38.6571 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml +2023-03-14 17:21:38.6578 Info Copied btsow.yml +2023-03-14 17:21:38.6578 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml +2023-03-14 17:21:38.6578 Info Copied bulltorrent.yml +2023-03-14 17:21:38.6588 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml +2023-03-14 17:21:38.6588 Info Copied bwtorrents.yml +2023-03-14 17:21:38.6588 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml +2023-03-14 17:21:38.6601 Info Copied byrbt.yml +2023-03-14 17:21:38.6601 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml +2023-03-14 17:21:38.6608 Info Copied byrutor.yml +2023-03-14 17:21:38.6608 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml +2023-03-14 17:21:38.6608 Info Copied carpathians.yml +2023-03-14 17:21:38.6617 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml +2023-03-14 17:21:38.6617 Info Copied carphunter.yml +2023-03-14 17:21:38.6617 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml +2023-03-14 17:21:38.6631 Info Copied carpt.yml +2023-03-14 17:21:38.6631 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml +2023-03-14 17:21:38.6638 Info Copied cartoonchaos.yml +2023-03-14 17:21:38.6638 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml +2023-03-14 17:21:38.6638 Info Copied cathoderaytube.yml +2023-03-14 17:21:38.6647 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml +2023-03-14 17:21:38.6647 Info Copied catorrent.yml +2023-03-14 17:21:38.6647 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml +2023-03-14 17:21:38.6660 Info Copied ccfbits.yml +2023-03-14 17:21:38.6660 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml +2023-03-14 17:21:38.6667 Info Copied ceskeforum.yml +2023-03-14 17:21:38.6667 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml +2023-03-14 17:21:38.6667 Info Copied chdbits.yml +2023-03-14 17:21:38.6677 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml +2023-03-14 17:21:38.6677 Info Copied chilebt.yml +2023-03-14 17:21:38.6677 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml +2023-03-14 17:21:38.6689 Info Copied cinemageddon.yml +2023-03-14 17:21:38.6689 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml +2023-03-14 17:21:38.6697 Info Copied cinemamovies.yml +2023-03-14 17:21:38.6697 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml +2023-03-14 17:21:38.6697 Info Copied cinematik.yml +2023-03-14 17:21:38.6697 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml +2023-03-14 17:21:38.6711 Info Copied classix.yml +2023-03-14 17:21:38.6711 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml +2023-03-14 17:21:38.6718 Info Copied coastalcrew.yml +2023-03-14 17:21:38.6718 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml +2023-03-14 17:21:38.6718 Info Copied comicat.yml +2023-03-14 17:21:38.6727 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml +2023-03-14 17:21:38.6727 Info Copied concen.yml +2023-03-14 17:21:38.6727 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml +2023-03-14 17:21:38.6739 Info Copied concertos.yml +2023-03-14 17:21:38.6739 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml +2023-03-14 17:21:38.6739 Info Copied cpabien.yml +2023-03-14 17:21:38.6748 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml +2023-03-14 17:21:38.6748 Info Copied cpasbienclone.yml +2023-03-14 17:21:38.6748 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml +2023-03-14 17:21:38.6760 Info Copied cpasbiensi.yml +2023-03-14 17:21:38.6760 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml +2023-03-14 17:21:38.6767 Info Copied crackingpatching.yml +2023-03-14 17:21:38.6767 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml +2023-03-14 17:21:38.6767 Info Copied crazyhd.yml +2023-03-14 17:21:38.6776 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml +2023-03-14 17:21:38.6776 Info Copied crazyspirits.yml +2023-03-14 17:21:38.6776 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml +2023-03-14 17:21:38.6790 Info Copied crnaberza.yml +2023-03-14 17:21:38.6790 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml +2023-03-14 17:21:38.6797 Info Copied crt2fa.yml +2023-03-14 17:21:38.6797 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml +2023-03-14 17:21:38.6797 Info Copied danishbytes-api.yml +2023-03-14 17:21:38.6807 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml +2023-03-14 17:21:38.6807 Info Copied dariustracker.yml +2023-03-14 17:21:38.6807 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml +2023-03-14 17:21:38.6819 Info Copied dark-shadow.yml +2023-03-14 17:21:38.6819 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml +2023-03-14 17:21:38.6827 Info Copied datascene-api.yml +2023-03-14 17:21:38.6827 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml +2023-03-14 17:21:38.6827 Info Copied datatalli.yml +2023-03-14 17:21:38.6827 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml +2023-03-14 17:21:38.6842 Info Copied deildu.yml +2023-03-14 17:21:38.6842 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml +2023-03-14 17:21:38.6849 Info Copied demonoid.yml +2023-03-14 17:21:38.6849 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml +2023-03-14 17:21:38.6857 Info Copied desitorrents-api.yml +2023-03-14 17:21:38.6857 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml +2023-03-14 17:21:38.6857 Info Copied devil-torrents.yml +2023-03-14 17:21:38.6857 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml +2023-03-14 17:21:38.6871 Info Copied diablotorrent.yml +2023-03-14 17:21:38.6871 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml +2023-03-14 17:21:38.6878 Info Copied digitalcore.yml +2023-03-14 17:21:38.6878 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml +2023-03-14 17:21:38.6878 Info Copied dimeadozen.yml +2023-03-14 17:21:38.6887 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml +2023-03-14 17:21:38.6887 Info Copied discfan.yml +2023-03-14 17:21:38.6887 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml +2023-03-14 17:21:38.6900 Info Copied divteam.yml +2023-03-14 17:21:38.6900 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml +2023-03-14 17:21:38.6907 Info Copied dmhy.yml +2023-03-14 17:21:38.6907 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml +2023-03-14 17:21:38.6907 Info Copied docspedia.yml +2023-03-14 17:21:38.6916 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml +2023-03-14 17:21:38.6916 Info Copied dodder.yml +2023-03-14 17:21:38.6916 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml +2023-03-14 17:21:38.6929 Info Copied dreamtracker.yml +2023-03-14 17:21:38.6929 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml +2023-03-14 17:21:38.6929 Info Copied dxp.yml +2023-03-14 17:21:38.6938 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml +2023-03-14 17:21:38.6938 Info Copied ebookbay.yml +2023-03-14 17:21:38.6938 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml +2023-03-14 17:21:38.6949 Info Copied ebooks-shares.yml +2023-03-14 17:21:38.6949 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml +2023-03-14 17:21:38.6957 Info Copied ehentai.yml +2023-03-14 17:21:38.6957 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml +2023-03-14 17:21:38.6957 Info Copied electro-torrent.yml +2023-03-14 17:21:38.6967 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml +2023-03-14 17:21:38.6967 Info Copied empornium.yml +2023-03-14 17:21:38.6967 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml +2023-03-14 17:21:38.6979 Info Copied empornium2fa.yml +2023-03-14 17:21:38.6979 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml +2023-03-14 17:21:38.6986 Info Copied eniahd.yml +2023-03-14 17:21:38.6986 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml +2023-03-14 17:21:38.6986 Info Copied esharenet.yml +2023-03-14 17:21:38.6986 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml +2023-03-14 17:21:38.7000 Info Copied estone.yml +2023-03-14 17:21:38.7000 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml +2023-03-14 17:21:38.7007 Info Copied exkinoray.yml +2023-03-14 17:21:38.7007 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml +2023-03-14 17:21:38.7007 Info Copied extratorrent-st.yml +2023-03-14 17:21:38.7017 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml +2023-03-14 17:21:38.7017 Info Copied extremebits.yml +2023-03-14 17:21:38.7017 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml +2023-03-14 17:21:38.7029 Info Copied extremetorrents.yml +2023-03-14 17:21:38.7029 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml +2023-03-14 17:21:38.7029 Info Copied extremlymtorrents.yml +2023-03-14 17:21:38.7037 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml +2023-03-14 17:21:38.7037 Info Copied exttorrents.yml +2023-03-14 17:21:38.7037 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml +2023-03-14 17:21:38.7047 Info Copied eztv.yml +2023-03-14 17:21:38.7047 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml +2023-03-14 17:21:38.7047 Info Copied falkonvisionteam.yml +2023-03-14 17:21:38.7047 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml +2023-03-14 17:21:38.7060 Info Copied fanoin.yml +2023-03-14 17:21:38.7060 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml +2023-03-14 17:21:38.7067 Info Copied fantasticheaven.yml +2023-03-14 17:21:38.7067 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml +2023-03-14 17:21:38.7067 Info Copied fantastiko.yml +2023-03-14 17:21:38.7067 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml +2023-03-14 17:21:38.7079 Info Copied femdomcult.yml +2023-03-14 17:21:38.7079 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml +2023-03-14 17:21:38.7079 Info Copied fenyarnyek-tracker.yml +2023-03-14 17:21:38.7087 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml +2023-03-14 17:21:38.7087 Info Copied file-tracker.yml +2023-03-14 17:21:38.7087 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml +2023-03-14 17:21:38.7097 Info Copied filelisting.yml +2023-03-14 17:21:38.7097 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml +2023-03-14 17:21:38.7097 Info Copied finelite.yml +2023-03-14 17:21:38.7097 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml +2023-03-14 17:21:38.7110 Info Copied finvip.yml +2023-03-14 17:21:38.7110 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml +2023-03-14 17:21:38.7110 Info Copied firebit.yml +2023-03-14 17:21:38.7118 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml +2023-03-14 17:21:38.7118 Info Copied fluxzone.yml +2023-03-14 17:21:38.7118 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml +2023-03-14 17:21:38.7129 Info Copied freshmeat.yml +2023-03-14 17:21:38.7129 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml +2023-03-14 17:21:38.7129 Info Copied frozenlayer.yml +2023-03-14 17:21:38.7136 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml +2023-03-14 17:21:38.7136 Info Copied ftuapps.yml +2023-03-14 17:21:38.7136 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml +2023-03-14 17:21:38.7147 Info Copied funkytorrents.yml +2023-03-14 17:21:38.7147 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml +2023-03-14 17:21:38.7147 Info Copied fuzer.yml +2023-03-14 17:21:38.7147 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml +2023-03-14 17:21:38.7159 Info Copied gainbound.yml +2023-03-14 17:21:38.7159 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml +2023-03-14 17:21:38.7159 Info Copied gamestorrents.yml +2023-03-14 17:21:38.7167 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml +2023-03-14 17:21:38.7167 Info Copied gay-torrents.yml +2023-03-14 17:21:38.7167 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml +2023-03-14 17:21:38.7178 Info Copied gay-torrentsorg.yml +2023-03-14 17:21:38.7178 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml +2023-03-14 17:21:38.7178 Info Copied gaytorrentru.yml +2023-03-14 17:21:38.7178 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml +2023-03-14 17:21:38.7190 Info Copied generationfree-api.yml +2023-03-14 17:21:38.7190 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml +2023-03-14 17:21:38.7190 Info Copied genesismovement.yml +2023-03-14 17:21:38.7198 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml +2023-03-14 17:21:38.7198 Info Copied gigatorrents.yml +2023-03-14 17:21:38.7198 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml +2023-03-14 17:21:38.7208 Info Copied gimmepeers.yml +2023-03-14 17:21:38.7208 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml +2023-03-14 17:21:38.7208 Info Copied girotorrent.yml +2023-03-14 17:21:38.7216 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml +2023-03-14 17:21:38.7216 Info Copied gktorrent.yml +2023-03-14 17:21:38.7216 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml +2023-03-14 17:21:38.7227 Info Copied glodls.yml +2023-03-14 17:21:38.7227 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml +2023-03-14 17:21:38.7227 Info Copied greekdiamond.yml +2023-03-14 17:21:38.7227 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml +2023-03-14 17:21:38.7239 Info Copied greekteam.yml +2023-03-14 17:21:38.7239 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml +2023-03-14 17:21:38.7239 Info Copied gtorrentpro.yml +2023-03-14 17:21:38.7247 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml +2023-03-14 17:21:38.7247 Info Copied haidan.yml +2023-03-14 17:21:38.7247 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml +2023-03-14 17:21:38.7257 Info Copied haitang.yml +2023-03-14 17:21:38.7257 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml +2023-03-14 17:21:38.7257 Info Copied happyfappy.yml +2023-03-14 17:21:38.7257 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml +2023-03-14 17:21:38.7269 Info Copied hawke-uno.yml +2023-03-14 17:21:38.7269 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml +2023-03-14 17:21:38.7269 Info Copied hd-unit3d-api.yml +2023-03-14 17:21:38.7277 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml +2023-03-14 17:21:38.7277 Info Copied hd4fans.yml +2023-03-14 17:21:38.7277 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml +2023-03-14 17:21:38.7286 Info Copied hdarea.yml +2023-03-14 17:21:38.7286 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml +2023-03-14 17:21:38.7286 Info Copied hdatmos.yml +2023-03-14 17:21:38.7286 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml +2023-03-14 17:21:38.7299 Info Copied hdc.yml +2023-03-14 17:21:38.7299 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml +2023-03-14 17:21:38.7299 Info Copied hdchina.yml +2023-03-14 17:21:38.7307 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml +2023-03-14 17:21:38.7307 Info Copied hdcztorrent.yml +2023-03-14 17:21:38.7307 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml +2023-03-14 17:21:38.7317 Info Copied hddolby.yml +2023-03-14 17:21:38.7317 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml +2023-03-14 17:21:38.7317 Info Copied hdfans.yml +2023-03-14 17:21:38.7317 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml +2023-03-14 17:21:38.7329 Info Copied hdforever.yml +2023-03-14 17:21:38.7329 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml +2023-03-14 17:21:38.7329 Info Copied hdgalaktik.yml +2023-03-14 17:21:38.7337 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml +2023-03-14 17:21:38.7337 Info Copied hdhome.yml +2023-03-14 17:21:38.7337 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml +2023-03-14 17:21:38.7348 Info Copied hdmayi.yml +2023-03-14 17:21:38.7348 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml +2023-03-14 17:21:38.7348 Info Copied hdmonkey.yml +2023-03-14 17:21:38.7348 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml +2023-03-14 17:21:38.7359 Info Copied hdolimpo-api.yml +2023-03-14 17:21:38.7359 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml +2023-03-14 17:21:38.7359 Info Copied hdonly.yml +2023-03-14 17:21:38.7367 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml +2023-03-14 17:21:38.7367 Info Copied hdroute.yml +2023-03-14 17:21:38.7367 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml +2023-03-14 17:21:38.7378 Info Copied hdsky.yml +2023-03-14 17:21:38.7378 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml +2023-03-14 17:21:38.7378 Info Copied hdtime.yml +2023-03-14 17:21:38.7378 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml +2023-03-14 17:21:38.7390 Info Copied hdtorrentsit.yml +2023-03-14 17:21:38.7390 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml +2023-03-14 17:21:38.7390 Info Copied hdturk.yml +2023-03-14 17:21:38.7398 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml +2023-03-14 17:21:38.7398 Info Copied hdu.yml +2023-03-14 17:21:38.7398 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml +2023-03-14 17:21:38.7409 Info Copied hdzone.yml +2023-03-14 17:21:38.7409 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml +2023-03-14 17:21:38.7409 Info Copied hebits.yml +2023-03-14 17:21:38.7416 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml +2023-03-14 17:21:38.7416 Info Copied hellashut.yml +2023-03-14 17:21:38.7416 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml +2023-03-14 17:21:38.7427 Info Copied hhanclub.yml +2023-03-14 17:21:38.7427 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml +2023-03-14 17:21:38.7427 Info Copied houseofdevil.yml +2023-03-14 17:21:38.7427 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml +2023-03-14 17:21:38.7439 Info Copied hqmusic.yml +2023-03-14 17:21:38.7439 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml +2023-03-14 17:21:38.7439 Info Copied huntorrent.yml +2023-03-14 17:21:38.7446 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml +2023-03-14 17:21:38.7446 Info Copied icc2022.yml +2023-03-14 17:21:38.7446 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml +2023-03-14 17:21:38.7457 Info Copied idope.yml +2023-03-14 17:21:38.7457 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml +2023-03-14 17:21:38.7457 Info Copied ihdbits.yml +2023-03-14 17:21:38.7457 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml +2023-03-14 17:21:38.7469 Info Copied ilcorsaroblu.yml +2023-03-14 17:21:38.7469 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml +2023-03-14 17:21:38.7469 Info Copied ilcorsaronero.yml +2023-03-14 17:21:38.7477 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml +2023-03-14 17:21:38.7477 Info Copied immortuos.yml +2023-03-14 17:21:38.7477 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml +2023-03-14 17:21:38.7487 Info Copied indietorrents.yml +2023-03-14 17:21:38.7487 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml +2023-03-14 17:21:38.7487 Info Copied insanetracker.yml +2023-03-14 17:21:38.7487 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml +2023-03-14 17:21:38.7499 Info Copied internetarchive.yml +2023-03-14 17:21:38.7499 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml +2023-03-14 17:21:38.7499 Info Copied isohunt2.yml +2023-03-14 17:21:38.7507 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml +2023-03-14 17:21:38.7507 Info Copied itorrent.yml +2023-03-14 17:21:38.7507 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml +2023-03-14 17:21:38.7517 Info Copied jav-torrent.yml +2023-03-14 17:21:38.7517 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml +2023-03-14 17:21:38.7517 Info Copied jme-reunit3d-api.yml +2023-03-14 17:21:38.7517 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml +2023-03-14 17:21:38.7528 Info Copied joyhd.yml +2023-03-14 17:21:38.7563 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml +2023-03-14 17:21:38.7568 Info Copied jpopsuki.yml +2023-03-14 17:21:38.7568 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml +2023-03-14 17:21:38.7568 Info Copied jptv.yml +2023-03-14 17:21:38.7576 Info Attempting to copy kamept.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/kamept.yml to destination: /app/Jackett/Definitions/kamept.yml +2023-03-14 17:21:38.7576 Info Copied kamept.yml +2023-03-14 17:21:38.7576 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml +2023-03-14 17:21:38.7588 Info Copied karagarga.yml +2023-03-14 17:21:38.7588 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml +2023-03-14 17:21:38.7588 Info Copied keepfriends.yml +2023-03-14 17:21:38.7597 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml +2023-03-14 17:21:38.7597 Info Copied kickasstorrents-to.yml +2023-03-14 17:21:38.7597 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml +2023-03-14 17:21:38.7609 Info Copied kickasstorrents-ws.yml +2023-03-14 17:21:38.7609 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml +2023-03-14 17:21:38.7609 Info Copied kinorun.yml +2023-03-14 17:21:38.7618 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml +2023-03-14 17:21:38.7618 Info Copied kinozal.yml +2023-03-14 17:21:38.7618 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml +2023-03-14 17:21:38.7629 Info Copied knaben.yml +2023-03-14 17:21:38.7629 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml +2023-03-14 17:21:38.7629 Info Copied korsar.yml +2023-03-14 17:21:38.7638 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml +2023-03-14 17:21:38.7638 Info Copied krazyzone.yml +2023-03-14 17:21:38.7638 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml +2023-03-14 17:21:38.7649 Info Copied kufirc.yml +2023-03-14 17:21:38.7649 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml +2023-03-14 17:21:38.7649 Info Copied lastfiles.yml +2023-03-14 17:21:38.7657 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml +2023-03-14 17:21:38.7657 Info Copied lat-team-api.yml +2023-03-14 17:21:38.7657 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml +2023-03-14 17:21:38.7669 Info Copied learnbits.yml +2023-03-14 17:21:38.7669 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml +2023-03-14 17:21:38.7669 Info Copied learnflakes.yml +2023-03-14 17:21:38.7678 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml +2023-03-14 17:21:38.7678 Info Copied leech24.yml +2023-03-14 17:21:38.7678 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml +2023-03-14 17:21:38.7688 Info Copied lemonhd.yml +2023-03-14 17:21:38.7688 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml +2023-03-14 17:21:38.7688 Info Copied lepornoinfo.yml +2023-03-14 17:21:38.7688 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml +2023-03-14 17:21:38.7700 Info Copied les-cinephiles.yml +2023-03-14 17:21:38.7700 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml +2023-03-14 17:21:38.7700 Info Copied lesaloon.yml +2023-03-14 17:21:38.7708 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml +2023-03-14 17:21:38.7708 Info Copied libranet.yml +2023-03-14 17:21:38.7708 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml +2023-03-14 17:21:38.7718 Info Copied limetorrents.yml +2023-03-14 17:21:38.7718 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml +2023-03-14 17:21:38.7718 Info Copied limetorrentsclone.yml +2023-03-14 17:21:38.7718 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml +2023-03-14 17:21:38.7731 Info Copied linkomanija.yml +2023-03-14 17:21:38.7731 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml +2023-03-14 17:21:38.7737 Info Copied linuxtracker.yml +2023-03-14 17:21:38.7737 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml +2023-03-14 17:21:38.7737 Info Copied locadora.yml +2023-03-14 17:21:38.7737 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml +2023-03-14 17:21:38.7749 Info Copied losslessclub.yml +2023-03-14 17:21:38.7749 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml +2023-03-14 17:21:38.7749 Info Copied lst.yml +2023-03-14 17:21:38.7757 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml +2023-03-14 17:21:38.7757 Info Copied mactorrentsdownload.yml +2023-03-14 17:21:38.7757 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml +2023-03-14 17:21:38.7767 Info Copied madsrevolution.yml +2023-03-14 17:21:38.7767 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml +2023-03-14 17:21:38.7767 Info Copied magicheaven.yml +2023-03-14 17:21:38.7767 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml +2023-03-14 17:21:38.7779 Info Copied magico.yml +2023-03-14 17:21:38.7779 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml +2023-03-14 17:21:38.7779 Info Copied majomparade.yml +2023-03-14 17:21:38.7788 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml +2023-03-14 17:21:38.7788 Info Copied marinetracker.yml +2023-03-14 17:21:38.7788 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml +2023-03-14 17:21:38.7798 Info Copied mazepa.yml +2023-03-14 17:21:38.7798 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml +2023-03-14 17:21:38.7798 Info Copied megamixtracker.yml +2023-03-14 17:21:38.7798 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml +2023-03-14 17:21:38.7810 Info Copied megapeer.yml +2023-03-14 17:21:38.7810 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml +2023-03-14 17:21:38.7810 Info Copied mesevilag.yml +2023-03-14 17:21:38.7817 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml +2023-03-14 17:21:38.7817 Info Copied metaltracker.yml +2023-03-14 17:21:38.7817 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml +2023-03-14 17:21:38.7827 Info Copied mikan.yml +2023-03-14 17:21:38.7827 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml +2023-03-14 17:21:38.7827 Info Copied milkie.yml +2023-03-14 17:21:38.7827 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml +2023-03-14 17:21:38.7839 Info Copied miobt.yml +2023-03-14 17:21:38.7839 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml +2023-03-14 17:21:38.7839 Info Copied mircrew.yml +2023-03-14 17:21:38.7847 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml +2023-03-14 17:21:38.7847 Info Copied mixtapetorrent.yml +2023-03-14 17:21:38.7847 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml +2023-03-14 17:21:38.7857 Info Copied mma-torrents.yml +2023-03-14 17:21:38.7857 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml +2023-03-14 17:21:38.7857 Info Copied mnv.yml +2023-03-14 17:21:38.7857 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml +2023-03-14 17:21:38.7869 Info Copied mojblink.yml +2023-03-14 17:21:38.7869 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml +2023-03-14 17:21:38.7869 Info Copied mousebits.yml +2023-03-14 17:21:38.7877 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml +2023-03-14 17:21:38.7877 Info Copied moviesdvdr.yml +2023-03-14 17:21:38.7877 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml +2023-03-14 17:21:38.7887 Info Copied moviesite.yml +2023-03-14 17:21:38.7887 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml +2023-03-14 17:21:38.7887 Info Copied movietorrent.yml +2023-03-14 17:21:38.7887 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml +2023-03-14 17:21:38.7898 Info Copied movietorrentz.yml +2023-03-14 17:21:38.7898 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml +2023-03-14 17:21:38.7898 Info Copied mteamtp.yml +2023-03-14 17:21:38.7898 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml +2023-03-14 17:21:38.7910 Info Copied mteamtp2fa.yml +2023-03-14 17:21:38.7910 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml +2023-03-14 17:21:38.7917 Info Copied muziekfabriek.yml +2023-03-14 17:21:38.7917 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml +2023-03-14 17:21:38.7917 Info Copied mvgroupforum.yml +2023-03-14 17:21:38.7917 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml +2023-03-14 17:21:38.7929 Info Copied mvgroupmain.yml +2023-03-14 17:21:38.7929 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml +2023-03-14 17:21:38.7929 Info Copied mypornclub.yml +2023-03-14 17:21:38.7937 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml +2023-03-14 17:21:38.7937 Info Copied myspleen.yml +2023-03-14 17:21:38.7937 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml +2023-03-14 17:21:38.7947 Info Copied nethd.yml +2023-03-14 17:21:38.7947 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml +2023-03-14 17:21:38.7947 Info Copied newretro.yml +2023-03-14 17:21:38.7947 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml +2023-03-14 17:21:38.7959 Info Copied newstudio.yml +2023-03-14 17:21:38.7959 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml +2023-03-14 17:21:38.7959 Info Copied newstudiol.yml +2023-03-14 17:21:38.7966 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml +2023-03-14 17:21:38.7966 Info Copied nicept.yml +2023-03-14 17:21:38.7966 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml +2023-03-14 17:21:38.7977 Info Copied nipponsei.yml +2023-03-14 17:21:38.7977 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml +2023-03-14 17:21:38.7977 Info Copied nntt.yml +2023-03-14 17:21:38.7977 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml +2023-03-14 17:21:38.7990 Info Copied noname-club.yml +2023-03-14 17:21:38.7990 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml +2023-03-14 17:21:38.7996 Info Copied noname-clubl.yml +2023-03-14 17:21:38.7996 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml +2023-03-14 17:21:38.7996 Info Copied nyaasi.yml +2023-03-14 17:21:38.7996 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml +2023-03-14 17:21:38.8009 Info Copied oldtoonsworld.yml +2023-03-14 17:21:38.8009 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml +2023-03-14 17:21:38.8009 Info Copied onejav.yml +2023-03-14 17:21:38.8017 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml +2023-03-14 17:21:38.8017 Info Copied opencd.yml +2023-03-14 17:21:38.8017 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml +2023-03-14 17:21:38.8027 Info Copied oshenpt.yml +2023-03-14 17:21:38.8027 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml +2023-03-14 17:21:38.8027 Info Copied ourbits.yml +2023-03-14 17:21:38.8027 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml +2023-03-14 17:21:38.8039 Info Copied p2pbg.yml +2023-03-14 17:21:38.8039 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml +2023-03-14 17:21:38.8039 Info Copied parnuxi.yml +2023-03-14 17:21:38.8047 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml +2023-03-14 17:21:38.8047 Info Copied partis.yml +2023-03-14 17:21:38.8047 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml +2023-03-14 17:21:38.8057 Info Copied pctorrent.yml +2023-03-14 17:21:38.8057 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml +2023-03-14 17:21:38.8057 Info Copied peeratiko.yml +2023-03-14 17:21:38.8100 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml +2023-03-14 17:21:38.8100 Info Copied peersfm.yml +2023-03-14 17:21:38.8100 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml +2023-03-14 17:21:38.8110 Info Copied pier720.yml +2023-03-14 17:21:38.8110 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml +2023-03-14 17:21:38.8110 Info Copied pignetwork.yml +2023-03-14 17:21:38.8117 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml +2023-03-14 17:21:38.8117 Info Copied piratbit.yml +2023-03-14 17:21:38.8117 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml +2023-03-14 17:21:38.8128 Info Copied piratbitl.yml +2023-03-14 17:21:38.8128 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml +2023-03-14 17:21:38.8128 Info Copied pixelcove.yml +2023-03-14 17:21:38.8128 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml +2023-03-14 17:21:38.8139 Info Copied pixelcove2fa.yml +2023-03-14 17:21:38.8139 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml +2023-03-14 17:21:38.8139 Info Copied polishsource.yml +2023-03-14 17:21:38.8139 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml +2023-03-14 17:21:38.8150 Info Copied polishtracker-api.yml +2023-03-14 17:21:38.8150 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml +2023-03-14 17:21:38.8150 Info Copied pornbay.yml +2023-03-14 17:21:38.8157 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml +2023-03-14 17:21:38.8730 Info Copied pornoslab.yml +2023-03-14 17:21:38.8730 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml +2023-03-14 17:21:38.8737 Info Copied pornotorrent.yml +2023-03-14 17:21:38.8737 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml +2023-03-14 17:21:38.8737 Info Copied portugas-api.yml +2023-03-14 17:21:38.8737 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml +2023-03-14 17:21:38.8748 Info Copied potuk.yml +2023-03-14 17:21:38.8748 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml +2023-03-14 17:21:38.8748 Info Copied proaudiotorrents.yml +2023-03-14 17:21:38.8748 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml +2023-03-14 17:21:38.8759 Info Copied proporno.yml +2023-03-14 17:21:38.8759 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml +2023-03-14 17:21:38.8759 Info Copied ptchina.yml +2023-03-14 17:21:38.8759 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml +2023-03-14 17:21:38.8770 Info Copied pterclub.yml +2023-03-14 17:21:38.8770 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml +2023-03-14 17:21:38.8770 Info Copied ptfiles.yml +2023-03-14 17:21:38.8777 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml +2023-03-14 17:21:38.8777 Info Copied pthome.yml +2023-03-14 17:21:38.8777 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml +2023-03-14 17:21:38.8777 Info Copied ptmsg.yml +2023-03-14 17:21:38.8788 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml +2023-03-14 17:21:38.8788 Info Copied ptsbao.yml +2023-03-14 17:21:38.8788 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml +2023-03-14 17:21:38.8798 Info Copied pttime.yml +2023-03-14 17:21:38.8798 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml +2023-03-14 17:21:38.8798 Info Copied punkshorror.yml +2023-03-14 17:21:38.8798 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml +2023-03-14 17:21:38.8808 Info Copied puntotorrent.yml +2023-03-14 17:21:38.8808 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml +2023-03-14 17:21:38.8808 Info Copied pussytorrents.yml +2023-03-14 17:21:38.8808 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml +2023-03-14 17:21:38.8819 Info Copied putao.yml +2023-03-14 17:21:38.8819 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml +2023-03-14 17:21:38.8819 Info Copied puurhollands.yml +2023-03-14 17:21:38.8819 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml +2023-03-14 17:21:38.8830 Info Copied pwtorrents.yml +2023-03-14 17:21:38.8830 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml +2023-03-14 17:21:38.8830 Info Copied r3vwtf.yml +2023-03-14 17:21:38.8837 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml +2023-03-14 17:21:38.8837 Info Copied racing4everyone-api.yml +2023-03-14 17:21:38.8837 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml +2023-03-14 17:21:38.8837 Info Copied racingforme.yml +2023-03-14 17:21:38.8848 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml +2023-03-14 17:21:38.8848 Info Copied rainbowtracker.yml +2023-03-14 17:21:38.8848 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml +2023-03-14 17:21:38.8857 Info Copied rapidzona.yml +2023-03-14 17:21:38.8857 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml +2023-03-14 17:21:38.8857 Info Copied redbits-api.yml +2023-03-14 17:21:38.8857 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml +2023-03-14 17:21:38.8867 Info Copied redstartorrent.yml +2023-03-14 17:21:38.8867 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml +2023-03-14 17:21:38.8867 Info Copied reelflix-api.yml +2023-03-14 17:21:38.8867 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml +2023-03-14 17:21:38.8877 Info Copied resurrectthenet.yml +2023-03-14 17:21:38.8877 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml +2023-03-14 17:21:38.8877 Info Copied rgfootball.yml +2023-03-14 17:21:38.8877 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml +2023-03-14 17:21:38.8888 Info Copied rintor.yml +2023-03-14 17:21:38.8888 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml +2023-03-14 17:21:38.8888 Info Copied rintornet.yml +2023-03-14 17:21:38.8888 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml +2023-03-14 17:21:38.8900 Info Copied riperam.yml +2023-03-14 17:21:38.8900 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml +2023-03-14 17:21:38.8900 Info Copied rockbox.yml +2023-03-14 17:21:38.8906 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml +2023-03-14 17:21:38.8906 Info Copied romanianmetaltorrents.yml +2023-03-14 17:21:38.8906 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml +2023-03-14 17:21:38.8906 Info Copied rptorrents.yml +2023-03-14 17:21:38.8917 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml +2023-03-14 17:21:38.8917 Info Copied rudub.yml +2023-03-14 17:21:38.8917 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml +2023-03-14 17:21:38.8927 Info Copied rus-media.yml +2023-03-14 17:21:38.8927 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml +2023-03-14 17:21:38.8967 Info Copied rustorka.yml +2023-03-14 17:21:38.8967 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml +2023-03-14 17:21:38.8967 Info Copied rutor.yml +2023-03-14 17:21:38.8967 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml +2023-03-14 17:21:38.8979 Info Copied rutracker-ru.yml +2023-03-14 17:21:38.8979 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml +2023-03-14 17:21:38.8979 Info Copied satclubbing.yml +2023-03-14 17:21:38.8986 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml +2023-03-14 17:21:38.8986 Info Copied scenerush.yml +2023-03-14 17:21:38.8986 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml +2023-03-14 17:21:38.8986 Info Copied sdbits.yml +2023-03-14 17:21:38.8997 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml +2023-03-14 17:21:38.8997 Info Copied seedfile.yml +2023-03-14 17:21:38.8997 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml +2023-03-14 17:21:38.9007 Info Copied seedoff.yml +2023-03-14 17:21:38.9007 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml +2023-03-14 17:21:38.9007 Info Copied selezen.yml +2023-03-14 17:21:38.9007 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml +2023-03-14 17:21:38.9017 Info Copied sexypics.yml +2023-03-14 17:21:38.9017 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml +2023-03-14 17:21:38.9017 Info Copied shanaproject.yml +2023-03-14 17:21:38.9017 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml +2023-03-14 17:21:38.9029 Info Copied shareisland-api.yml +2023-03-14 17:21:38.9029 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml +2023-03-14 17:21:38.9029 Info Copied sharewood.yml +2023-03-14 17:21:38.9029 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml +2023-03-14 17:21:38.9039 Info Copied sharkpt.yml +2023-03-14 17:21:38.9039 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml +2023-03-14 17:21:38.9039 Info Copied showrss.yml +2023-03-14 17:21:38.9046 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml +2023-03-14 17:21:38.9046 Info Copied siambit.yml +2023-03-14 17:21:38.9046 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml +2023-03-14 17:21:38.9046 Info Copied skipthecommercials-api.yml +2023-03-14 17:21:38.9058 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml +2023-03-14 17:21:38.9058 Info Copied skipthetrailers.yml +2023-03-14 17:21:38.9058 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml +2023-03-14 17:21:38.9068 Info Copied sktorrent-org.yml +2023-03-14 17:21:38.9068 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml +2023-03-14 17:21:38.9068 Info Copied sktorrent.yml +2023-03-14 17:21:38.9068 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml +2023-03-14 17:21:38.9078 Info Copied slosoul.yml +2023-03-14 17:21:38.9078 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml +2023-03-14 17:21:38.9078 Info Copied snowpt.yml +2023-03-14 17:21:38.9078 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml +2023-03-14 17:21:38.9089 Info Copied solidtorrents.yml +2023-03-14 17:21:38.9089 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml +2023-03-14 17:21:38.9089 Info Copied sosulki.yml +2023-03-14 17:21:38.9089 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml +2023-03-14 17:21:38.9099 Info Copied soulvoice.yml +2023-03-14 17:21:38.9099 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml +2023-03-14 17:21:38.9099 Info Copied speedmasterhd.yml +2023-03-14 17:21:38.9099 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml +2023-03-14 17:21:38.9110 Info Copied speedtorrentreloaded.yml +2023-03-14 17:21:38.9110 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml +2023-03-14 17:21:38.9110 Info Copied spidertk.yml +2023-03-14 17:21:38.9117 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml +2023-03-14 17:21:38.9117 Info Copied spiritofrevolution.yml +2023-03-14 17:21:38.9117 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml +2023-03-14 17:21:38.9126 Info Copied sporthd.yml +2023-03-14 17:21:38.9126 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml +2023-03-14 17:21:38.9126 Info Copied sportscult.yml +2023-03-14 17:21:38.9126 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml +2023-03-14 17:21:38.9137 Info Copied springsunday.yml +2023-03-14 17:21:38.9137 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml +2023-03-14 17:21:38.9137 Info Copied sugoimusic.yml +2023-03-14 17:21:38.9137 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml +2023-03-14 17:21:38.9148 Info Copied sukebeinyaasi.yml +2023-03-14 17:21:38.9148 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml +2023-03-14 17:21:38.9148 Info Copied superbits.yml +2023-03-14 17:21:38.9148 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml +2023-03-14 17:21:38.9159 Info Copied swarmazon-api.yml +2023-03-14 17:21:38.9159 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml +2023-03-14 17:21:38.9159 Info Copied tapochek.yml +2023-03-14 17:21:38.9159 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml +2023-03-14 17:21:38.9170 Info Copied tasmanit.yml +2023-03-14 17:21:38.9170 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml +2023-03-14 17:21:38.9170 Info Copied teamctgame.yml +2023-03-14 17:21:38.9177 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml +2023-03-14 17:21:38.9177 Info Copied teamhd.yml +2023-03-14 17:21:38.9177 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml +2023-03-14 17:21:38.9187 Info Copied teamos.yml +2023-03-14 17:21:38.9187 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml +2023-03-14 17:21:38.9187 Info Copied tekno3d.yml +2023-03-14 17:21:38.9187 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml +2023-03-14 17:21:38.9197 Info Copied tellytorrent-api.yml +2023-03-14 17:21:38.9197 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml +2023-03-14 17:21:38.9197 Info Copied teracod.yml +2023-03-14 17:21:38.9197 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml +2023-03-14 17:21:38.9208 Info Copied the-crazy-ones.yml +2023-03-14 17:21:38.9208 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml +2023-03-14 17:21:38.9208 Info Copied thedarkcommunity-api.yml +2023-03-14 17:21:38.9208 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml +2023-03-14 17:21:38.9219 Info Copied theempire.yml +2023-03-14 17:21:38.9219 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml +2023-03-14 17:21:38.9219 Info Copied thefallingangels.yml +2023-03-14 17:21:38.9219 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml +2023-03-14 17:21:38.9230 Info Copied thegeeks.yml +2023-03-14 17:21:38.9230 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml +2023-03-14 17:21:38.9230 Info Copied theleachzone.yml +2023-03-14 17:21:38.9237 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml +2023-03-14 17:21:38.9237 Info Copied themixingbowl.yml +2023-03-14 17:21:38.9237 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml +2023-03-14 17:21:38.9237 Info Copied thenewfun.yml +2023-03-14 17:21:38.9248 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml +2023-03-14 17:21:38.9248 Info Copied theoccult.yml +2023-03-14 17:21:38.9248 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml +2023-03-14 17:21:38.9257 Info Copied theoldschool-api.yml +2023-03-14 17:21:38.9257 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml +2023-03-14 17:21:38.9257 Info Copied thepiratebay.yml +2023-03-14 17:21:38.9257 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml +2023-03-14 17:21:38.9267 Info Copied theplace.yml +2023-03-14 17:21:38.9267 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml +2023-03-14 17:21:38.9267 Info Copied thesceneplace.yml +2023-03-14 17:21:38.9267 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml +2023-03-14 17:21:38.9278 Info Copied theshinning-api.yml +2023-03-14 17:21:38.9278 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml +2023-03-14 17:21:38.9278 Info Copied theshow.yml +2023-03-14 17:21:38.9278 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml +2023-03-14 17:21:38.9288 Info Copied thevault.yml +2023-03-14 17:21:38.9288 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml +2023-03-14 17:21:38.9288 Info Copied tjupt.yml +2023-03-14 17:21:38.9288 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml +2023-03-14 17:21:38.9299 Info Copied tlfbits.yml +2023-03-14 17:21:38.9299 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml +2023-03-14 17:21:38.9299 Info Copied tmghub.yml +2023-03-14 17:21:38.9299 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml +2023-03-14 17:21:38.9310 Info Copied tokyotosho.yml +2023-03-14 17:21:38.9310 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml +2023-03-14 17:21:38.9310 Info Copied torlock.yml +2023-03-14 17:21:38.9317 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml +2023-03-14 17:21:38.9317 Info Copied tornado.yml +2023-03-14 17:21:38.9317 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml +2023-03-14 17:21:38.9317 Info Copied torrent-explosiv.yml +2023-03-14 17:21:38.9327 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml +2023-03-14 17:21:38.9327 Info Copied torrent-pirat.yml +2023-03-14 17:21:38.9327 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml +2023-03-14 17:21:38.9337 Info Copied torrent-turk.yml +2023-03-14 17:21:38.9337 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml +2023-03-14 17:21:38.9337 Info Copied torrent9.yml +2023-03-14 17:21:38.9337 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml +2023-03-14 17:21:38.9347 Info Copied torrent911.yml +2023-03-14 17:21:38.9347 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml +2023-03-14 17:21:38.9347 Info Copied torrent9clone.yml +2023-03-14 17:21:38.9347 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml +2023-03-14 17:21:38.9358 Info Copied torrentbd.yml +2023-03-14 17:21:38.9358 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml +2023-03-14 17:21:38.9358 Info Copied torrentby.yml +2023-03-14 17:21:38.9358 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml +2023-03-14 17:21:38.9369 Info Copied torrentccf.yml +2023-03-14 17:21:38.9369 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml +2023-03-14 17:21:38.9369 Info Copied torrentcore.yml +2023-03-14 17:21:38.9369 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml +2023-03-14 17:21:38.9379 Info Copied torrentdownload.yml +2023-03-14 17:21:38.9379 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml +2023-03-14 17:21:38.9379 Info Copied torrentdownloads.yml +2023-03-14 17:21:38.9386 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml +2023-03-14 17:21:38.9386 Info Copied torrentfunk.yml +2023-03-14 17:21:38.9386 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml +2023-03-14 17:21:38.9386 Info Copied torrentgalaxy.yml +2023-03-14 17:21:38.9397 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml +2023-03-14 17:21:38.9397 Info Copied torrenthr.yml +2023-03-14 17:21:38.9397 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml +2023-03-14 17:21:38.9397 Info Copied torrenting.yml +2023-03-14 17:21:38.9407 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml +2023-03-14 17:21:38.9407 Info Copied torrentkitty.yml +2023-03-14 17:21:38.9407 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml +2023-03-14 17:21:38.9407 Info Copied torrentland.yml +2023-03-14 17:21:38.9418 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml +2023-03-14 17:21:38.9418 Info Copied torrentleech-pl.yml +2023-03-14 17:21:38.9418 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml +2023-03-14 17:21:38.9434 Info Copied torrentleech.yml +2023-03-14 17:21:38.9434 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml +2023-03-14 17:21:38.9440 Info Copied torrentlt.yml +2023-03-14 17:21:38.9440 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml +2023-03-14 17:21:38.9440 Info Copied torrentmasters.yml +2023-03-14 17:21:38.9448 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml +2023-03-14 17:21:38.9448 Info Copied torrentoyunindir.yml +2023-03-14 17:21:38.9448 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml +2023-03-14 17:21:38.9457 Info Copied torrentproject2.yml +2023-03-14 17:21:38.9457 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml +2023-03-14 17:21:38.9457 Info Copied torrentqq.yml +2023-03-14 17:21:38.9457 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml +2023-03-14 17:21:38.9468 Info Copied torrentsectorcrew.yml +2023-03-14 17:21:38.9468 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml +2023-03-14 17:21:38.9468 Info Copied torrentseeds-api.yml +2023-03-14 17:21:38.9468 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml +2023-03-14 17:21:38.9479 Info Copied torrentsir.yml +2023-03-14 17:21:38.9479 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml +2023-03-14 17:21:38.9479 Info Copied torrentslocal.yml +2023-03-14 17:21:38.9487 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml +2023-03-14 17:21:38.9487 Info Copied torrentv.yml +2023-03-14 17:21:38.9487 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml +2023-03-14 17:21:38.9487 Info Copied torrentview.yml +2023-03-14 17:21:38.9497 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml +2023-03-14 17:21:38.9497 Info Copied torrentwhiz.yml +2023-03-14 17:21:38.9497 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml +2023-03-14 17:21:38.9506 Info Copied torrentz2eu.yml +2023-03-14 17:21:38.9506 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml +2023-03-14 17:21:38.9506 Info Copied torrentz2nz.yml +2023-03-14 17:21:38.9506 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml +2023-03-14 17:21:38.9517 Info Copied totallykids.yml +2023-03-14 17:21:38.9517 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml +2023-03-14 17:21:38.9517 Info Copied totheglory.yml +2023-03-14 17:21:38.9517 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml +2023-03-14 17:21:38.9528 Info Copied totheglorycookie.yml +2023-03-14 17:21:38.9528 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml +2023-03-14 17:21:38.9528 Info Copied traht.yml +2023-03-14 17:21:38.9528 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml +2023-03-14 17:21:38.9539 Info Copied trancetraffic.yml +2023-03-14 17:21:38.9539 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml +2023-03-14 17:21:38.9539 Info Copied trezzor.yml +2023-03-14 17:21:38.9539 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml +2023-03-14 17:21:38.9549 Info Copied tribalmixes.yml +2023-03-14 17:21:38.9549 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml +2023-03-14 17:21:38.9549 Info Copied trupornolabs.yml +2023-03-14 17:21:38.9549 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml +2023-03-14 17:21:38.9560 Info Copied turkseed.yml +2023-03-14 17:21:38.9560 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml +2023-03-14 17:21:38.9560 Info Copied turktorrent.yml +2023-03-14 17:21:38.9567 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml +2023-03-14 17:21:38.9567 Info Copied tvchaosuk.yml +2023-03-14 17:21:38.9567 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml +2023-03-14 17:21:38.9567 Info Copied tvroad.yml +2023-03-14 17:21:38.9577 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml +2023-03-14 17:21:38.9577 Info Copied twilight.yml +2023-03-14 17:21:38.9577 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml +2023-03-14 17:21:38.9587 Info Copied u2.yml +2023-03-14 17:21:38.9587 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml +2023-03-14 17:21:38.9587 Info Copied uhdbits.yml +2023-03-14 17:21:38.9587 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml +2023-03-14 17:21:38.9597 Info Copied uniondht.yml +2023-03-14 17:21:38.9597 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml +2023-03-14 17:21:38.9597 Info Copied unionfansub.yml +2023-03-14 17:21:38.9597 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml +2023-03-14 17:21:38.9608 Info Copied uniongang.yml +2023-03-14 17:21:38.9608 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml +2023-03-14 17:21:38.9608 Info Copied unleashthecartoons.yml +2023-03-14 17:21:38.9608 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml +2023-03-14 17:21:38.9619 Info Copied unlimitz.yml +2023-03-14 17:21:38.9619 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml +2023-03-14 17:21:38.9619 Info Copied vsthouse.yml +2023-03-14 17:21:38.9619 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml +2023-03-14 17:21:38.9629 Info Copied vsttorrents.yml +2023-03-14 17:21:38.9629 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml +2023-03-14 17:21:38.9629 Info Copied vtorrent.yml +2023-03-14 17:21:38.9629 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml +2023-03-14 17:21:38.9639 Info Copied whiteangel.yml +2023-03-14 17:21:38.9639 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml +2023-03-14 17:21:38.9863 Info Copied wihd.yml +2023-03-14 17:21:38.9863 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml +2023-03-14 17:21:38.9871 Info Copied world-of-tomorrow.yml +2023-03-14 17:21:38.9871 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml +2023-03-14 17:21:38.9871 Info Copied x-ite.me.yml +2023-03-14 17:21:38.9878 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml +2023-03-14 17:21:38.9878 Info Copied xbytes2.yml +2023-03-14 17:21:38.9878 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml +2023-03-14 17:21:38.9888 Info Copied xthor-api.yml +2023-03-14 17:21:38.9888 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml +2023-03-14 17:21:38.9888 Info Copied xtorrenty.yml +2023-03-14 17:21:38.9888 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml +2023-03-14 17:21:38.9900 Info Copied xtremebytes.yml +2023-03-14 17:21:38.9900 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml +2023-03-14 17:21:38.9900 Info Copied xwtclassics.yml +2023-03-14 17:21:38.9907 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml +2023-03-14 17:21:38.9907 Info Copied xwtorrents.yml +2023-03-14 17:21:38.9907 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml +2023-03-14 17:21:38.9907 Info Copied xxxadulttorrent.yml +2023-03-14 17:21:38.9918 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml +2023-03-14 17:21:38.9918 Info Copied xxxtor.yml +2023-03-14 17:21:38.9918 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml +2023-03-14 17:21:38.9927 Info Copied xxxtorrents.yml +2023-03-14 17:21:38.9927 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml +2023-03-14 17:21:38.9927 Info Copied ydypt.yml +2023-03-14 17:21:38.9927 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml +2023-03-14 17:21:38.9939 Info Copied yggcookie.yml +2023-03-14 17:21:38.9939 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml +2023-03-14 17:21:38.9939 Info Copied yggtorrent.yml +2023-03-14 17:21:38.9939 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml +2023-03-14 17:21:38.9950 Info Copied yourbittorrent.yml +2023-03-14 17:21:38.9950 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml +2023-03-14 17:21:38.9950 Info Copied yts.yml +2023-03-14 17:21:38.9956 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml +2023-03-14 17:21:38.9956 Info Copied zamundanet.yml +2023-03-14 17:21:38.9956 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml +2023-03-14 17:21:38.9956 Info Copied zelkaorg.yml +2023-03-14 17:21:38.9967 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml +2023-03-14 17:21:38.9967 Info Copied zetorrents.yml +2023-03-14 17:21:38.9967 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml +2023-03-14 17:21:38.9967 Info Copied zmpt.yml +2023-03-14 17:21:38.9978 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml +2023-03-14 17:21:38.9978 Info Copied zomb.yml +2023-03-14 17:21:38.9978 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml +2023-03-14 17:21:38.9987 Info Copied ztracker.yml +2023-03-14 17:21:38.9987 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll +2023-03-14 17:21:38.9987 Info Copied FlareSolverrSharp.dll +2023-03-14 17:21:38.9987 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll +2023-03-14 17:21:39.0002 Info Copied ICSharpCode.SharpZipLib.dll +2023-03-14 17:21:39.0002 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh +2023-03-14 17:21:39.0007 Info Copied install_service_systemd.sh +2023-03-14 17:21:39.0007 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/jackett to destination: /app/Jackett/jackett +2023-03-14 17:21:39.0007 Info Copied jackett +2023-03-14 17:21:39.0016 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh +2023-03-14 17:21:39.0016 Info Copied jackett_launcher.sh +2023-03-14 17:21:39.0016 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll +2023-03-14 17:21:39.0047 Info Copied Jackett.Common.dll +2023-03-14 17:21:39.0047 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb +2023-03-14 17:21:39.0057 Info Copied Jackett.Common.pdb +2023-03-14 17:21:39.0057 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json +2023-03-14 17:21:39.0136 Info Copied jackett.deps.json +2023-03-14 17:21:39.0138 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll +2023-03-14 17:21:39.0149 Info Copied jackett.dll +2023-03-14 17:21:39.0149 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb +2023-03-14 17:21:39.0149 Info Copied jackett.pdb +2023-03-14 17:21:39.0158 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json +2023-03-14 17:21:39.0158 Info Copied jackett.runtimeconfig.json +2023-03-14 17:21:39.0158 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater +2023-03-14 17:21:39.0169 Info Copied JackettUpdater +2023-03-14 17:21:39.0169 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json +2023-03-14 17:21:39.0169 Info Copied JackettUpdater.deps.json +2023-03-14 17:21:39.0177 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll +2023-03-14 17:21:39.0194 Info Copied JackettUpdater.dll +2023-03-14 17:21:39.0194 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb +2023-03-14 17:21:39.0201 Info Copied JackettUpdater.pdb +2023-03-14 17:21:39.0201 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json +2023-03-14 17:21:39.0201 Info Copied JackettUpdater.runtimeconfig.json +2023-03-14 17:21:39.0208 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so +2023-03-14 17:21:39.0260 Info Copied libclrjit.so +2023-03-14 17:21:39.0260 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so +2023-03-14 17:21:39.0418 Info Copied libcoreclr.so +2023-03-14 17:21:39.0418 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so +2023-03-14 17:21:39.0449 Info Copied libcoreclrtraceptprovider.so +2023-03-14 17:21:39.0449 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so +2023-03-14 17:21:39.0467 Info Copied libdbgshim.so +2023-03-14 17:21:39.0467 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so +2023-03-14 17:21:39.0479 Info Copied libhostfxr.so +2023-03-14 17:21:39.0479 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so +2023-03-14 17:21:39.0490 Info Copied libhostpolicy.so +2023-03-14 17:21:39.0490 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so +2023-03-14 17:21:39.0498 Info Copied libMono.Unix.so +2023-03-14 17:21:39.0498 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so +2023-03-14 17:21:39.0563 Info Copied libmscordaccore.so +2023-03-14 17:21:39.0563 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so +2023-03-14 17:21:39.0605 Info Copied libmscordbi.so +2023-03-14 17:21:39.0608 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so +2023-03-14 17:21:39.1512 Info Copied libSystem.Globalization.Native.so +2023-03-14 17:21:39.1518 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so +2023-03-14 17:21:39.1579 Info Copied libSystem.IO.Compression.Native.so +2023-03-14 17:21:39.1579 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so +2023-03-14 17:21:39.1597 Info Copied libSystem.Native.so +2023-03-14 17:21:39.1597 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so +2023-03-14 17:21:39.1611 Info Copied libSystem.Net.Security.Native.so +2023-03-14 17:21:39.1617 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so +2023-03-14 17:21:39.1633 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so +2023-03-14 17:21:39.1638 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/LICENSE to destination: /app/Jackett/LICENSE +2023-03-14 17:21:39.1649 Info Copied LICENSE +2023-03-14 17:21:39.1649 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll +2023-03-14 17:21:39.1668 Info Copied Microsoft.AspNetCore.Antiforgery.dll +2023-03-14 17:21:39.1668 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-03-14 17:21:39.1684 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-03-14 17:21:39.1688 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll +2023-03-14 17:21:39.1703 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll +2023-03-14 17:21:39.1708 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll +2023-03-14 17:21:39.1722 Info Copied Microsoft.AspNetCore.Authentication.Core.dll +2023-03-14 17:21:39.1722 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll +2023-03-14 17:21:39.1742 Info Copied Microsoft.AspNetCore.Authentication.dll +2023-03-14 17:21:39.1742 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll +2023-03-14 17:21:39.1760 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll +2023-03-14 17:21:39.1760 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll +2023-03-14 17:21:39.1779 Info Copied Microsoft.AspNetCore.Authorization.dll +2023-03-14 17:21:39.1779 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll +2023-03-14 17:21:39.1795 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll +2023-03-14 17:21:39.1799 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll +2023-03-14 17:21:39.1810 Info Copied Microsoft.AspNetCore.Components.Authorization.dll +2023-03-14 17:21:39.1810 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll +2023-03-14 17:21:39.1858 Info Copied Microsoft.AspNetCore.Components.dll +2023-03-14 17:21:39.1858 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll +2023-03-14 17:21:39.1875 Info Copied Microsoft.AspNetCore.Components.Forms.dll +2023-03-14 17:21:39.1879 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll +2023-03-14 17:21:39.2176 Info Copied Microsoft.AspNetCore.Components.Server.dll +2023-03-14 17:21:39.2181 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll +2023-03-14 17:21:39.2203 Info Copied Microsoft.AspNetCore.Components.Web.dll +2023-03-14 17:21:39.2208 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll +2023-03-14 17:21:39.2223 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll +2023-03-14 17:21:39.2228 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll +2023-03-14 17:21:39.2241 Info Copied Microsoft.AspNetCore.CookiePolicy.dll +2023-03-14 17:21:39.2241 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll +2023-03-14 17:21:39.2261 Info Copied Microsoft.AspNetCore.Cors.dll +2023-03-14 17:21:39.2261 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll +2023-03-14 17:21:39.2280 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll +2023-03-14 17:21:39.2280 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-03-14 17:21:39.2296 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-03-14 17:21:39.2300 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-03-14 17:21:39.2313 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-03-14 17:21:39.2317 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll +2023-03-14 17:21:39.2345 Info Copied Microsoft.AspNetCore.DataProtection.dll +2023-03-14 17:21:39.2350 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-03-14 17:21:39.2361 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-03-14 17:21:39.2361 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-03-14 17:21:39.2379 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-03-14 17:21:39.2379 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll +2023-03-14 17:21:39.2410 Info Copied Microsoft.AspNetCore.Diagnostics.dll +2023-03-14 17:21:39.2410 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-03-14 17:21:39.2427 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-03-14 17:21:39.2427 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll +2023-03-14 17:21:39.2448 Info Copied Microsoft.AspNetCore.dll +2023-03-14 17:21:39.2448 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll +2023-03-14 17:21:39.2463 Info Copied Microsoft.AspNetCore.HostFiltering.dll +2023-03-14 17:21:39.2468 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-03-14 17:21:39.2480 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-03-14 17:21:39.2480 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll +2023-03-14 17:21:39.2511 Info Copied Microsoft.AspNetCore.Hosting.dll +2023-03-14 17:21:39.2511 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-03-14 17:21:39.2528 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-03-14 17:21:39.2528 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll +2023-03-14 17:21:39.2544 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll +2023-03-14 17:21:39.2548 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll +2023-03-14 17:21:39.2569 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll +2023-03-14 17:21:39.2569 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll +2023-03-14 17:21:39.2587 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll +2023-03-14 17:21:39.2587 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll +2023-03-14 17:21:39.2614 Info Copied Microsoft.AspNetCore.Http.Connections.dll +2023-03-14 17:21:39.2618 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll +2023-03-14 17:21:39.2641 Info Copied Microsoft.AspNetCore.Http.dll +2023-03-14 17:21:39.2641 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll +2023-03-14 17:21:39.2667 Info Copied Microsoft.AspNetCore.Http.Extensions.dll +2023-03-14 17:21:39.2667 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll +2023-03-14 17:21:39.2685 Info Copied Microsoft.AspNetCore.Http.Features.dll +2023-03-14 17:21:39.2689 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll +2023-03-14 17:21:39.2706 Info Copied Microsoft.AspNetCore.Http.Results.dll +2023-03-14 17:21:39.2710 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll +2023-03-14 17:21:39.2728 Info Copied Microsoft.AspNetCore.HttpLogging.dll +2023-03-14 17:21:39.2728 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll +2023-03-14 17:21:39.2744 Info Copied Microsoft.AspNetCore.HttpOverrides.dll +2023-03-14 17:21:39.2749 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll +2023-03-14 17:21:39.2761 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll +2023-03-14 17:21:39.2761 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll +2023-03-14 17:21:39.2784 Info Copied Microsoft.AspNetCore.Identity.dll +2023-03-14 17:21:39.2789 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll +2023-03-14 17:21:39.2802 Info Copied Microsoft.AspNetCore.JsonPatch.dll +2023-03-14 17:21:39.2802 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll +2023-03-14 17:21:39.2818 Info Copied Microsoft.AspNetCore.Localization.dll +2023-03-14 17:21:39.2818 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll +2023-03-14 17:21:39.2834 Info Copied Microsoft.AspNetCore.Localization.Routing.dll +2023-03-14 17:21:39.2839 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll +2023-03-14 17:21:39.2850 Info Copied Microsoft.AspNetCore.Metadata.dll +2023-03-14 17:21:39.2850 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-03-14 17:21:39.2875 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-03-14 17:21:39.2880 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-03-14 17:21:39.2897 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-03-14 17:21:39.2897 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll +2023-03-14 17:21:39.2989 Info Copied Microsoft.AspNetCore.Mvc.Core.dll +2023-03-14 17:21:39.2989 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll +2023-03-14 17:21:39.3007 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll +2023-03-14 17:21:39.3007 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-03-14 17:21:39.3029 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-03-14 17:21:39.3029 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll +2023-03-14 17:21:39.3045 Info Copied Microsoft.AspNetCore.Mvc.dll +2023-03-14 17:21:39.3050 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-03-14 17:21:39.3061 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-03-14 17:21:39.3061 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-03-14 17:21:39.3082 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-03-14 17:21:39.3082 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll +2023-03-14 17:21:39.3100 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll +2023-03-14 17:21:39.3100 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-03-14 17:21:39.3118 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-03-14 17:21:39.3118 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll +2023-03-14 17:21:39.3143 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll +2023-03-14 17:21:39.3147 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-03-14 17:21:39.3176 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-03-14 17:21:39.3180 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-03-14 17:21:39.3202 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-03-14 17:21:39.3207 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-03-14 17:21:39.3251 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-03-14 17:21:39.3251 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll +2023-03-14 17:21:39.3268 Info Copied Microsoft.AspNetCore.Razor.dll +2023-03-14 17:21:39.3268 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll +2023-03-14 17:21:39.3286 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll +2023-03-14 17:21:39.3290 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-03-14 17:21:39.3302 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-03-14 17:21:39.3307 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll +2023-03-14 17:21:39.3323 Info Copied Microsoft.AspNetCore.ResponseCaching.dll +2023-03-14 17:21:39.3328 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll +2023-03-14 17:21:39.3343 Info Copied Microsoft.AspNetCore.ResponseCompression.dll +2023-03-14 17:21:39.3348 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll +2023-03-14 17:21:39.3367 Info Copied Microsoft.AspNetCore.Rewrite.dll +2023-03-14 17:21:39.3367 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll +2023-03-14 17:21:39.3384 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll +2023-03-14 17:21:39.3389 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll +2023-03-14 17:21:39.3430 Info Copied Microsoft.AspNetCore.Routing.dll +2023-03-14 17:21:39.3430 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll +2023-03-14 17:21:39.3464 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll +2023-03-14 17:21:39.3469 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll +2023-03-14 17:21:39.3501 Info Copied Microsoft.AspNetCore.Server.IIS.dll +2023-03-14 17:21:39.3501 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll +2023-03-14 17:21:39.3518 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll +2023-03-14 17:21:39.3518 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-03-14 17:21:39.3630 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-03-14 17:21:39.3630 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll +2023-03-14 17:21:39.3647 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll +2023-03-14 17:21:39.3647 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-03-14 17:21:39.3682 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-03-14 17:21:39.3687 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-03-14 17:21:39.3704 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-03-14 17:21:39.3708 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll +2023-03-14 17:21:39.3722 Info Copied Microsoft.AspNetCore.Session.dll +2023-03-14 17:21:39.3722 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll +2023-03-14 17:21:39.3739 Info Copied Microsoft.AspNetCore.SignalR.Common.dll +2023-03-14 17:21:39.3739 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll +2023-03-14 17:21:39.3767 Info Copied Microsoft.AspNetCore.SignalR.Core.dll +2023-03-14 17:21:39.3767 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll +2023-03-14 17:21:39.3782 Info Copied Microsoft.AspNetCore.SignalR.dll +2023-03-14 17:21:39.3782 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-03-14 17:21:39.3799 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-03-14 17:21:39.3799 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll +2023-03-14 17:21:39.3820 Info Copied Microsoft.AspNetCore.StaticFiles.dll +2023-03-14 17:21:39.3820 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll +2023-03-14 17:21:39.3837 Info Copied Microsoft.AspNetCore.WebSockets.dll +2023-03-14 17:21:39.3837 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll +2023-03-14 17:21:39.3862 Info Copied Microsoft.AspNetCore.WebUtilities.dll +2023-03-14 17:21:39.3862 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll +2023-03-14 17:21:39.3910 Info Copied Microsoft.CSharp.dll +2023-03-14 17:21:39.3910 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll +2023-03-14 17:21:39.3925 Info Copied Microsoft.Extensions.Caching.Abstractions.dll +2023-03-14 17:21:39.3930 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll +2023-03-14 17:21:39.3943 Info Copied Microsoft.Extensions.Caching.Memory.dll +2023-03-14 17:21:39.3948 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll +2023-03-14 17:21:39.3960 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll +2023-03-14 17:21:39.3960 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll +2023-03-14 17:21:39.3977 Info Copied Microsoft.Extensions.Configuration.Binder.dll +2023-03-14 17:21:39.3977 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll +2023-03-14 17:21:39.3992 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll +2023-03-14 17:21:39.3992 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll +2023-03-14 17:21:39.4010 Info Copied Microsoft.Extensions.Configuration.dll +2023-03-14 17:21:39.4010 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-03-14 17:21:39.4025 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-03-14 17:21:39.4029 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll +2023-03-14 17:21:39.4041 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll +2023-03-14 17:21:39.4041 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll +2023-03-14 17:21:39.4057 Info Copied Microsoft.Extensions.Configuration.Ini.dll +2023-03-14 17:21:39.4057 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll +2023-03-14 17:21:39.4072 Info Copied Microsoft.Extensions.Configuration.Json.dll +2023-03-14 17:21:39.4072 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-03-14 17:21:39.4088 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-03-14 17:21:39.4088 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll +2023-03-14 17:21:39.4103 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll +2023-03-14 17:21:39.4107 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll +2023-03-14 17:21:39.4119 Info Copied Microsoft.Extensions.Configuration.Xml.dll +2023-03-14 17:21:39.4119 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-03-14 17:21:39.4138 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-03-14 17:21:39.4138 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll +2023-03-14 17:21:39.4159 Info Copied Microsoft.Extensions.DependencyInjection.dll +2023-03-14 17:21:39.4159 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-03-14 17:21:39.4174 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-03-14 17:21:39.4178 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-03-14 17:21:39.4193 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-03-14 17:21:39.4197 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll +2023-03-14 17:21:39.5107 Info Copied Microsoft.Extensions.Features.dll +2023-03-14 17:21:39.5107 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll +2023-03-14 17:21:39.5127 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll +2023-03-14 17:21:39.5127 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll +2023-03-14 17:21:39.5141 Info Copied Microsoft.Extensions.FileProviders.Composite.dll +2023-03-14 17:21:39.5141 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll +2023-03-14 17:21:39.5158 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll +2023-03-14 17:21:39.5158 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll +2023-03-14 17:21:39.5175 Info Copied Microsoft.Extensions.FileProviders.Physical.dll +2023-03-14 17:21:39.5179 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll +2023-03-14 17:21:39.5194 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll +2023-03-14 17:21:39.5198 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll +2023-03-14 17:21:39.5210 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll +2023-03-14 17:21:39.5210 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll +2023-03-14 17:21:39.5228 Info Copied Microsoft.Extensions.Hosting.dll +2023-03-14 17:21:39.5228 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll +2023-03-14 17:21:39.5247 Info Copied Microsoft.Extensions.Http.dll +2023-03-14 17:21:39.5247 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll +2023-03-14 17:21:39.5277 Info Copied Microsoft.Extensions.Identity.Core.dll +2023-03-14 17:21:39.5277 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll +2023-03-14 17:21:39.5294 Info Copied Microsoft.Extensions.Identity.Stores.dll +2023-03-14 17:21:39.5298 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll +2023-03-14 17:21:39.5866 Info Copied Microsoft.Extensions.Localization.Abstractions.dll +2023-03-14 17:21:39.5873 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll +2023-03-14 17:21:39.5887 Info Copied Microsoft.Extensions.Localization.dll +2023-03-14 17:21:39.5887 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll +2023-03-14 17:21:39.5908 Info Copied Microsoft.Extensions.Logging.Abstractions.dll +2023-03-14 17:21:39.5908 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll +2023-03-14 17:21:39.5924 Info Copied Microsoft.Extensions.Logging.Configuration.dll +2023-03-14 17:21:39.5928 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll +2023-03-14 17:21:39.5943 Info Copied Microsoft.Extensions.Logging.Console.dll +2023-03-14 17:21:39.5947 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll +2023-03-14 17:21:39.5959 Info Copied Microsoft.Extensions.Logging.Debug.dll +2023-03-14 17:21:39.5959 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll +2023-03-14 17:21:39.5977 Info Copied Microsoft.Extensions.Logging.dll +2023-03-14 17:21:39.5977 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll +2023-03-14 17:21:39.5992 Info Copied Microsoft.Extensions.Logging.EventLog.dll +2023-03-14 17:21:39.5992 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll +2023-03-14 17:21:39.6009 Info Copied Microsoft.Extensions.Logging.EventSource.dll +2023-03-14 17:21:39.6009 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll +2023-03-14 17:21:39.6023 Info Copied Microsoft.Extensions.Logging.TraceSource.dll +2023-03-14 17:21:39.6027 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll +2023-03-14 17:21:39.6038 Info Copied Microsoft.Extensions.ObjectPool.dll +2023-03-14 17:21:39.6038 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-03-14 17:21:39.6055 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-03-14 17:21:39.6059 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll +2023-03-14 17:21:39.6524 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll +2023-03-14 17:21:39.6533 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll +2023-03-14 17:21:39.6551 Info Copied Microsoft.Extensions.Options.dll +2023-03-14 17:21:39.6551 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll +2023-03-14 17:21:39.6572 Info Copied Microsoft.Extensions.Primitives.dll +2023-03-14 17:21:39.6572 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll +2023-03-14 17:21:39.6589 Info Copied Microsoft.Extensions.WebEncoders.dll +2023-03-14 17:21:39.6589 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll +2023-03-14 17:21:39.6608 Info Copied Microsoft.JSInterop.dll +2023-03-14 17:21:39.6608 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll +2023-03-14 17:21:39.6636 Info Copied Microsoft.Net.Http.Headers.dll +2023-03-14 17:21:39.6640 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll +2023-03-14 17:21:39.6703 Info Copied Microsoft.VisualBasic.Core.dll +2023-03-14 17:21:39.6708 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll +2023-03-14 17:21:39.7195 Info Copied Microsoft.VisualBasic.dll +2023-03-14 17:21:39.7202 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll +2023-03-14 17:21:39.7216 Info Copied Microsoft.Win32.Primitives.dll +2023-03-14 17:21:39.7223 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll +2023-03-14 17:21:39.7238 Info Copied Microsoft.Win32.Registry.dll +2023-03-14 17:21:39.7238 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll +2023-03-14 17:21:39.7275 Info Copied MimeMapping.dll +2023-03-14 17:21:39.7280 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll +2023-03-14 17:21:39.7293 Info Copied Mono.Posix.dll +2023-03-14 17:21:39.7299 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll +2023-03-14 17:21:39.7320 Info Copied Mono.Unix.dll +2023-03-14 17:21:39.7320 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll +2023-03-14 17:21:39.7337 Info Copied mscorlib.dll +2023-03-14 17:21:39.7337 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll +2023-03-14 17:21:39.7358 Info Copied netstandard.dll +2023-03-14 17:21:39.7358 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll +2023-03-14 17:21:39.7380 Info Copied Newtonsoft.Json.Bson.dll +2023-03-14 17:21:39.7380 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll +2023-03-14 17:21:39.7429 Info Copied Newtonsoft.Json.dll +2023-03-14 17:21:39.7429 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll +2023-03-14 17:21:39.7482 Info Copied NLog.dll +2023-03-14 17:21:39.7487 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll +2023-03-14 17:21:39.7502 Info Copied NLog.Extensions.Logging.dll +2023-03-14 17:21:39.7507 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll +2023-03-14 17:21:39.7523 Info Copied NLog.Web.AspNetCore.dll +2023-03-14 17:21:39.7529 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll +2023-03-14 17:21:39.7541 Info Copied Org.Mentalis.dll +2023-03-14 17:21:39.7547 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll +2023-03-14 17:21:39.7568 Info Copied Polly.dll +2023-03-14 17:21:39.7568 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/README.md to destination: /app/Jackett/README.md +2023-03-14 17:21:39.7584 Info Copied README.md +2023-03-14 17:21:39.7589 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll +2023-03-14 17:21:39.7600 Info Copied SocksWebProxy.dll +2023-03-14 17:21:39.7600 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll +2023-03-14 17:21:39.7616 Info Copied System.AppContext.dll +2023-03-14 17:21:39.7621 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll +2023-03-14 17:21:39.7632 Info Copied System.Buffers.dll +2023-03-14 17:21:39.7632 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll +2023-03-14 17:21:39.7659 Info Copied System.Collections.Concurrent.dll +2023-03-14 17:21:39.7659 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll +2023-03-14 17:21:39.7685 Info Copied System.Collections.dll +2023-03-14 17:21:39.7690 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll +2023-03-14 17:21:39.8130 Info Copied System.Collections.Immutable.dll +2023-03-14 17:21:39.8130 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll +2023-03-14 17:21:39.8154 Info Copied System.Collections.NonGeneric.dll +2023-03-14 17:21:39.8160 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll +2023-03-14 17:21:39.8176 Info Copied System.Collections.Specialized.dll +2023-03-14 17:21:39.8181 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll +2023-03-14 17:21:39.8204 Info Copied System.ComponentModel.Annotations.dll +2023-03-14 17:21:39.8208 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll +2023-03-14 17:21:39.8220 Info Copied System.ComponentModel.DataAnnotations.dll +2023-03-14 17:21:39.8283 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll +2023-03-14 17:21:39.8295 Info Copied System.ComponentModel.dll +2023-03-14 17:21:39.8300 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll +2023-03-14 17:21:39.8313 Info Copied System.ComponentModel.EventBasedAsync.dll +2023-03-14 17:21:39.8313 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll +2023-03-14 17:21:39.8611 Info Copied System.ComponentModel.Primitives.dll +2023-03-14 17:21:39.8618 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll +2023-03-14 17:21:39.8665 Info Copied System.ComponentModel.TypeConverter.dll +2023-03-14 17:21:39.8669 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll +2023-03-14 17:21:39.8680 Info Copied System.Configuration.dll +2023-03-14 17:21:39.8680 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll +2023-03-14 17:21:39.8704 Info Copied System.Console.dll +2023-03-14 17:21:39.8710 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll +2023-03-14 17:21:39.8720 Info Copied System.Core.dll +2023-03-14 17:21:39.8720 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll +2023-03-14 17:21:39.8871 Info Copied System.Data.Common.dll +2023-03-14 17:21:39.8877 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll +2023-03-14 17:21:39.8889 Info Copied System.Data.DataSetExtensions.dll +2023-03-14 17:21:39.8889 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll +2023-03-14 17:21:39.8903 Info Copied System.Data.dll +2023-03-14 17:21:39.8908 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll +2023-03-14 17:21:39.8919 Info Copied System.Diagnostics.Contracts.dll +2023-03-14 17:21:39.8919 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll +2023-03-14 17:21:39.8933 Info Copied System.Diagnostics.Debug.dll +2023-03-14 17:21:39.8937 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll +2023-03-14 17:21:39.8961 Info Copied System.Diagnostics.DiagnosticSource.dll +2023-03-14 17:21:39.8961 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll +2023-03-14 17:21:39.8976 Info Copied System.Diagnostics.EventLog.dll +2023-03-14 17:21:39.8980 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll +2023-03-14 17:21:39.8991 Info Copied System.Diagnostics.FileVersionInfo.dll +2023-03-14 17:21:39.8991 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll +2023-03-14 17:21:39.9015 Info Copied System.Diagnostics.Process.dll +2023-03-14 17:21:39.9019 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll +2023-03-14 17:21:39.9031 Info Copied System.Diagnostics.StackTrace.dll +2023-03-14 17:21:39.9031 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll +2023-03-14 17:21:39.9047 Info Copied System.Diagnostics.TextWriterTraceListener.dll +2023-03-14 17:21:39.9047 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll +2023-03-14 17:21:39.9061 Info Copied System.Diagnostics.Tools.dll +2023-03-14 17:21:39.9061 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll +2023-03-14 17:21:39.9080 Info Copied System.Diagnostics.TraceSource.dll +2023-03-14 17:21:39.9080 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll +2023-03-14 17:21:39.9094 Info Copied System.Diagnostics.Tracing.dll +2023-03-14 17:21:39.9098 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.dll to destination: /app/Jackett/System.dll +2023-03-14 17:21:39.9109 Info Copied System.dll +2023-03-14 17:21:39.9109 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll +2023-03-14 17:21:39.9123 Info Copied System.Drawing.dll +2023-03-14 17:21:39.9127 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll +2023-03-14 17:21:39.9142 Info Copied System.Drawing.Primitives.dll +2023-03-14 17:21:39.9142 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll +2023-03-14 17:21:39.9155 Info Copied System.Dynamic.Runtime.dll +2023-03-14 17:21:39.9159 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll +2023-03-14 17:21:39.9179 Info Copied System.Formats.Asn1.dll +2023-03-14 17:21:39.9179 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll +2023-03-14 17:21:39.9192 Info Copied System.Globalization.Calendars.dll +2023-03-14 17:21:39.9192 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll +2023-03-14 17:21:39.9205 Info Copied System.Globalization.dll +2023-03-14 17:21:39.9209 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll +2023-03-14 17:21:39.9219 Info Copied System.Globalization.Extensions.dll +2023-03-14 17:21:39.9219 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll +2023-03-14 17:21:39.9237 Info Copied System.IO.Compression.Brotli.dll +2023-03-14 17:21:39.9237 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll +2023-03-14 17:21:39.9261 Info Copied System.IO.Compression.dll +2023-03-14 17:21:39.9261 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll +2023-03-14 17:21:39.9274 Info Copied System.IO.Compression.FileSystem.dll +2023-03-14 17:21:39.9278 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll +2023-03-14 17:21:39.9289 Info Copied System.IO.Compression.ZipFile.dll +2023-03-14 17:21:39.9289 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll +2023-03-14 17:21:39.9302 Info Copied System.IO.dll +2023-03-14 17:21:39.9302 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll +2023-03-14 17:21:39.9318 Info Copied System.IO.FileSystem.AccessControl.dll +2023-03-14 17:21:39.9318 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll +2023-03-14 17:21:39.9331 Info Copied System.IO.FileSystem.dll +2023-03-14 17:21:39.9331 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll +2023-03-14 17:21:39.9743 Info Copied System.IO.FileSystem.DriveInfo.dll +2023-03-14 17:21:39.9750 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll +2023-03-14 17:21:39.9762 Info Copied System.IO.FileSystem.Primitives.dll +2023-03-14 17:21:39.9762 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll +2023-03-14 17:21:39.9780 Info Copied System.IO.FileSystem.Watcher.dll +2023-03-14 17:21:39.9780 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll +2023-03-14 17:21:39.9798 Info Copied System.IO.IsolatedStorage.dll +2023-03-14 17:21:39.9798 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll +2023-03-14 17:21:39.9815 Info Copied System.IO.MemoryMappedFiles.dll +2023-03-14 17:21:39.9818 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll +2023-03-14 17:21:39.9835 Info Copied System.IO.Pipelines.dll +2023-03-14 17:21:39.9839 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll +2023-03-14 17:21:39.9849 Info Copied System.IO.Pipes.AccessControl.dll +2023-03-14 17:21:39.9849 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll +2023-03-14 17:21:39.9868 Info Copied System.IO.Pipes.dll +2023-03-14 17:21:39.9868 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll +2023-03-14 17:21:39.9882 Info Copied System.IO.UnmanagedMemoryStream.dll +2023-03-14 17:21:39.9882 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll +2023-03-14 17:21:39.9915 Info Copied System.Linq.dll +2023-03-14 17:21:39.9919 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll +2023-03-14 17:21:40.0336 Info Copied System.Linq.Expressions.dll +2023-03-14 17:21:40.0342 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll +2023-03-14 17:21:40.0385 Info Copied System.Linq.Parallel.dll +2023-03-14 17:21:40.0389 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll +2023-03-14 17:21:40.0407 Info Copied System.Linq.Queryable.dll +2023-03-14 17:21:40.0407 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll +2023-03-14 17:21:40.0429 Info Copied System.Memory.dll +2023-03-14 17:21:40.0429 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll +2023-03-14 17:21:40.0442 Info Copied System.Net.dll +2023-03-14 17:21:40.0442 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll +2023-03-14 17:21:40.0749 Info Copied System.Net.Http.dll +2023-03-14 17:21:40.0749 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll +2023-03-14 17:21:40.0770 Info Copied System.Net.Http.Json.dll +2023-03-14 17:21:40.0770 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll +2023-03-14 17:21:40.0796 Info Copied System.Net.HttpListener.dll +2023-03-14 17:21:40.0800 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll +2023-03-14 17:21:40.0829 Info Copied System.Net.Mail.dll +2023-03-14 17:21:40.0829 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll +2023-03-14 17:21:40.0849 Info Copied System.Net.NameResolution.dll +2023-03-14 17:21:40.0849 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll +2023-03-14 17:21:40.0870 Info Copied System.Net.NetworkInformation.dll +2023-03-14 17:21:40.0870 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll +2023-03-14 17:21:40.0887 Info Copied System.Net.Ping.dll +2023-03-14 17:21:40.0887 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll +2023-03-14 17:21:40.0914 Info Copied System.Net.Primitives.dll +2023-03-14 17:21:40.0917 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll +2023-03-14 17:21:40.0998 Info Copied System.Net.Quic.dll +2023-03-14 17:21:40.0998 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll +2023-03-14 17:21:40.1024 Info Copied System.Net.Requests.dll +2023-03-14 17:21:40.1028 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll +2023-03-14 17:21:40.1075 Info Copied System.Net.Security.dll +2023-03-14 17:21:40.1079 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll +2023-03-14 17:21:40.1091 Info Copied System.Net.ServicePoint.dll +2023-03-14 17:21:40.1091 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll +2023-03-14 17:21:40.1131 Info Copied System.Net.Sockets.dll +2023-03-14 17:21:40.1131 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll +2023-03-14 17:21:40.1151 Info Copied System.Net.WebClient.dll +2023-03-14 17:21:40.1151 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll +2023-03-14 17:21:40.1166 Info Copied System.Net.WebHeaderCollection.dll +2023-03-14 17:21:40.1169 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll +2023-03-14 17:21:40.1318 Info Copied System.Net.WebProxy.dll +2023-03-14 17:21:40.1318 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll +2023-03-14 17:21:40.1338 Info Copied System.Net.WebSockets.Client.dll +2023-03-14 17:21:40.1338 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll +2023-03-14 17:21:40.1359 Info Copied System.Net.WebSockets.dll +2023-03-14 17:21:40.1359 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll +2023-03-14 17:21:40.1380 Info Copied System.Numerics.dll +2023-03-14 17:21:40.1380 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll +2023-03-14 17:21:40.1395 Info Copied System.Numerics.Vectors.dll +2023-03-14 17:21:40.1395 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll +2023-03-14 17:21:40.1402 Info Copied System.ObjectModel.dll +2023-03-14 17:21:40.1402 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll +2023-03-14 17:21:40.1921 Info Copied System.Private.CoreLib.dll +2023-03-14 17:21:40.1931 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll +2023-03-14 17:21:40.2029 Info Copied System.Private.DataContractSerialization.dll +2023-03-14 17:21:40.2029 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll +2023-03-14 17:21:40.2065 Info Copied System.Private.Uri.dll +2023-03-14 17:21:40.2069 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll +2023-03-14 17:21:40.3330 Info Copied System.Private.Xml.dll +2023-03-14 17:21:40.3330 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll +2023-03-14 17:21:40.3345 Info Copied System.Private.Xml.Linq.dll +2023-03-14 17:21:40.3347 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll +2023-03-14 17:21:40.3361 Info Copied System.Reflection.DispatchProxy.dll +2023-03-14 17:21:40.3361 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll +2023-03-14 17:21:40.3367 Info Copied System.Reflection.dll +2023-03-14 17:21:40.3367 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll +2023-03-14 17:21:40.3367 Info Copied System.Reflection.Emit.dll +2023-03-14 17:21:40.3367 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll +2023-03-14 17:21:40.3384 Info Copied System.Reflection.Emit.ILGeneration.dll +2023-03-14 17:21:40.3384 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll +2023-03-14 17:21:40.3396 Info Copied System.Reflection.Emit.Lightweight.dll +2023-03-14 17:21:40.3396 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll +2023-03-14 17:21:40.3396 Info Copied System.Reflection.Extensions.dll +2023-03-14 17:21:40.3396 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll +2023-03-14 17:21:40.3423 Info Copied System.Reflection.Metadata.dll +2023-03-14 17:21:40.3423 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll +2023-03-14 17:21:40.3429 Info Copied System.Reflection.Primitives.dll +2023-03-14 17:21:40.3429 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll +2023-03-14 17:21:40.3429 Info Copied System.Reflection.TypeExtensions.dll +2023-03-14 17:21:40.3429 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll +2023-03-14 17:21:40.3440 Info Copied System.Resources.Reader.dll +2023-03-14 17:21:40.3440 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll +2023-03-14 17:21:40.3440 Info Copied System.Resources.ResourceManager.dll +2023-03-14 17:21:40.3440 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll +2023-03-14 17:21:40.3452 Info Copied System.Resources.Writer.dll +2023-03-14 17:21:40.3452 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll +2023-03-14 17:21:40.3458 Info Copied System.Runtime.CompilerServices.Unsafe.dll +2023-03-14 17:21:40.3458 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll +2023-03-14 17:21:40.3458 Info Copied System.Runtime.CompilerServices.VisualC.dll +2023-03-14 17:21:40.3458 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll +2023-03-14 17:21:40.3469 Info Copied System.Runtime.dll +2023-03-14 17:21:40.3469 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll +2023-03-14 17:21:40.3469 Info Copied System.Runtime.Extensions.dll +2023-03-14 17:21:40.3469 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll +2023-03-14 17:21:40.3480 Info Copied System.Runtime.Handles.dll +2023-03-14 17:21:40.3480 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll +2023-03-14 17:21:40.3480 Info Copied System.Runtime.InteropServices.dll +2023-03-14 17:21:40.3488 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll +2023-03-14 17:21:40.3488 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll +2023-03-14 17:21:40.3488 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll +2023-03-14 17:21:40.3498 Info Copied System.Runtime.Intrinsics.dll +2023-03-14 17:21:40.3498 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll +2023-03-14 17:21:40.3498 Info Copied System.Runtime.Loader.dll +2023-03-14 17:21:40.3498 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll +2023-03-14 17:21:40.5098 Info Copied System.Runtime.Numerics.dll +2023-03-14 17:21:40.5098 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll +2023-03-14 17:21:40.5107 Info Copied System.Runtime.Serialization.dll +2023-03-14 17:21:40.5107 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll +2023-03-14 17:21:40.5118 Info Copied System.Runtime.Serialization.Formatters.dll +2023-03-14 17:21:40.5118 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll +2023-03-14 17:21:40.5118 Info Copied System.Runtime.Serialization.Json.dll +2023-03-14 17:21:40.5118 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll +2023-03-14 17:21:40.5130 Info Copied System.Runtime.Serialization.Primitives.dll +2023-03-14 17:21:40.5130 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll +2023-03-14 17:21:40.5130 Info Copied System.Runtime.Serialization.Xml.dll +2023-03-14 17:21:40.5130 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll +2023-03-14 17:21:40.5141 Info Copied System.Security.AccessControl.dll +2023-03-14 17:21:40.5141 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll +2023-03-14 17:21:40.5149 Info Copied System.Security.Claims.dll +2023-03-14 17:21:40.5149 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll +2023-03-14 17:21:40.5175 Info Copied System.Security.Cryptography.Algorithms.dll +2023-03-14 17:21:40.5177 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll +2023-03-14 17:21:40.5177 Info Copied System.Security.Cryptography.Cng.dll +2023-03-14 17:21:40.5177 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll +2023-03-14 17:21:40.5190 Info Copied System.Security.Cryptography.Csp.dll +2023-03-14 17:21:40.5190 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll +2023-03-14 17:21:40.5198 Info Copied System.Security.Cryptography.Encoding.dll +2023-03-14 17:21:40.5198 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll +2023-03-14 17:21:40.5206 Info Copied System.Security.Cryptography.OpenSsl.dll +2023-03-14 17:21:40.5206 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll +2023-03-14 17:21:40.5223 Info Copied System.Security.Cryptography.Pkcs.dll +2023-03-14 17:21:40.5223 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll +2023-03-14 17:21:40.5231 Info Copied System.Security.Cryptography.Primitives.dll +2023-03-14 17:21:40.5231 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll +2023-03-14 17:21:40.5237 Info Copied System.Security.Cryptography.ProtectedData.dll +2023-03-14 17:21:40.5237 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll +2023-03-14 17:21:40.5254 Info Copied System.Security.Cryptography.X509Certificates.dll +2023-03-14 17:21:40.5254 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll +2023-03-14 17:21:40.5267 Info Copied System.Security.Cryptography.Xml.dll +2023-03-14 17:21:40.5267 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll +2023-03-14 17:21:40.5267 Info Copied System.Security.dll +2023-03-14 17:21:40.5267 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll +2023-03-14 17:21:40.5278 Info Copied System.Security.Principal.dll +2023-03-14 17:21:40.5278 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll +2023-03-14 17:21:40.5278 Info Copied System.Security.Principal.Windows.dll +2023-03-14 17:21:40.5278 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll +2023-03-14 17:21:40.6475 Info Copied System.Security.SecureString.dll +2023-03-14 17:21:40.6480 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll +2023-03-14 17:21:40.6491 Info Copied System.ServiceModel.Web.dll +2023-03-14 17:21:40.6491 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll +2023-03-14 17:21:40.6505 Info Copied System.ServiceProcess.dll +2023-03-14 17:21:40.6509 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll +2023-03-14 17:21:40.6519 Info Copied System.ServiceProcess.ServiceController.dll +2023-03-14 17:21:40.6519 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll +2023-03-14 17:21:40.6564 Info Copied System.Text.Encoding.CodePages.dll +2023-03-14 17:21:40.6568 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll +2023-03-14 17:21:40.6578 Info Copied System.Text.Encoding.dll +2023-03-14 17:21:40.6578 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll +2023-03-14 17:21:40.6592 Info Copied System.Text.Encoding.Extensions.dll +2023-03-14 17:21:40.6592 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll +2023-03-14 17:21:40.6611 Info Copied System.Text.Encodings.Web.dll +2023-03-14 17:21:40.6611 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll +2023-03-14 17:21:40.6918 Info Copied System.Text.Json.dll +2023-03-14 17:21:40.6918 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll +2023-03-14 17:21:40.6958 Info Copied System.Text.RegularExpressions.dll +2023-03-14 17:21:40.6958 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll +2023-03-14 17:21:40.6978 Info Copied System.Threading.Channels.dll +2023-03-14 17:21:40.6978 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll +2023-03-14 17:21:40.6997 Info Copied System.Threading.dll +2023-03-14 17:21:40.6997 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll +2023-03-14 17:21:40.7014 Info Copied System.Threading.Overlapped.dll +2023-03-14 17:21:40.7018 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll +2023-03-14 17:21:40.7049 Info Copied System.Threading.Tasks.Dataflow.dll +2023-03-14 17:21:40.7049 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll +2023-03-14 17:21:40.7063 Info Copied System.Threading.Tasks.dll +2023-03-14 17:21:40.7068 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll +2023-03-14 17:21:40.7078 Info Copied System.Threading.Tasks.Extensions.dll +2023-03-14 17:21:40.7078 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll +2023-03-14 17:21:40.7098 Info Copied System.Threading.Tasks.Parallel.dll +2023-03-14 17:21:40.7098 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll +2023-03-14 17:21:40.7796 Info Copied System.Threading.Thread.dll +2023-03-14 17:21:40.7796 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll +2023-03-14 17:21:40.7815 Info Copied System.Threading.ThreadPool.dll +2023-03-14 17:21:40.7820 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll +2023-03-14 17:21:40.7831 Info Copied System.Threading.Timer.dll +2023-03-14 17:21:40.7831 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll +2023-03-14 17:21:40.7844 Info Copied System.Transactions.dll +2023-03-14 17:21:40.7849 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll +2023-03-14 17:21:40.7875 Info Copied System.Transactions.Local.dll +2023-03-14 17:21:40.7878 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll +2023-03-14 17:21:40.7888 Info Copied System.ValueTuple.dll +2023-03-14 17:21:40.7888 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll +2023-03-14 17:21:40.7900 Info Copied System.Web.dll +2023-03-14 17:21:40.7900 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll +2023-03-14 17:21:40.7917 Info Copied System.Web.HttpUtility.dll +2023-03-14 17:21:40.7917 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll +2023-03-14 17:21:40.7930 Info Copied System.Windows.dll +2023-03-14 17:21:40.7930 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll +2023-03-14 17:21:40.7944 Info Copied System.Xml.dll +2023-03-14 17:21:40.7948 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll +2023-03-14 17:21:40.7957 Info Copied System.Xml.Linq.dll +2023-03-14 17:21:40.7957 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll +2023-03-14 17:21:40.7970 Info Copied System.Xml.ReaderWriter.dll +2023-03-14 17:21:40.7970 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll +2023-03-14 17:21:40.7983 Info Copied System.Xml.Serialization.dll +2023-03-14 17:21:40.7988 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll +2023-03-14 17:21:40.7999 Info Copied System.Xml.XDocument.dll +2023-03-14 17:21:40.7999 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll +2023-03-14 17:21:40.8012 Info Copied System.Xml.XmlDocument.dll +2023-03-14 17:21:40.8012 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll +2023-03-14 17:21:40.8025 Info Copied System.Xml.XmlSerializer.dll +2023-03-14 17:21:40.8029 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll +2023-03-14 17:21:40.8040 Info Copied System.Xml.XPath.dll +2023-03-14 17:21:40.8040 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll +2023-03-14 17:21:40.8053 Info Copied System.Xml.XPath.XDocument.dll +2023-03-14 17:21:40.8057 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll +2023-03-14 17:21:40.8067 Info Copied WindowsBase.dll +2023-03-14 17:21:40.8067 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll +2023-03-14 17:21:40.8090 Info Copied YamlDotNet.dll +2023-03-14 17:21:40.8090 Info File copying complete +2023-03-14 17:21:40.8405 Info Killing process 236 +2023-03-14 17:21:43.9179 Info Process 236 didn't exit within 2 seconds after a SIGTERM +2023-03-15 17:53:43.9673 Info Jackett Updater v0.20.3604 +2023-03-15 17:53:44.0580 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "135" "--NoRestart" +2023-03-15 17:53:44.0614 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-15 17:53:44.2502 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb +2023-03-15 17:53:44.2509 Info Deleted /app/Jackett/DateTimeRoutines.pdb +2023-03-15 17:53:44.2509 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb +2023-03-15 17:53:44.2509 Info Deleted /app/Jackett/Jackett.Common.pdb +2023-03-15 17:53:44.2525 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb +2023-03-15 17:53:44.2529 Info Deleted /app/Jackett/JackettUpdater.pdb +2023-03-15 17:53:44.2529 Info Attempting to remove: /app/Jackett/jackett.pdb +2023-03-15 17:53:44.2529 Info Deleted /app/Jackett/jackett.pdb +2023-03-15 17:53:44.2529 Info Attempting to remove: /app/Jackett/jackett +2023-03-15 17:53:44.2540 Info Deleted /app/Jackett/jackett +2023-03-15 17:53:44.2540 Info Finding files in: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/ +2023-03-15 17:53:44.2592 Info 891 update files found +2023-03-15 17:53:44.2602 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll +2023-03-15 17:53:44.2631 Info Copied AngleSharp.dll +2023-03-15 17:53:44.2631 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll +2023-03-15 17:53:44.2640 Info Copied AngleSharp.Xml.dll +2023-03-15 17:53:44.2640 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll +2023-03-15 17:53:44.2652 Info Copied Autofac.dll +2023-03-15 17:53:44.2652 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll +2023-03-15 17:53:44.2660 Info Copied Autofac.Extensions.DependencyInjection.dll +2023-03-15 17:53:44.2660 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll +2023-03-15 17:53:44.2671 Info Copied AutoMapper.dll +2023-03-15 17:53:44.2671 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll +2023-03-15 17:53:44.2678 Info Copied BencodeNET.dll +2023-03-15 17:53:44.2678 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll +2023-03-15 17:53:44.2688 Info Copied CommandLine.dll +2023-03-15 17:53:44.2688 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css +2023-03-15 17:53:44.2688 Info Copied animate.css +2023-03-15 17:53:44.2697 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png +2023-03-15 17:53:44.2697 Info Copied apple-touch-icon.png +2023-03-15 17:53:44.2697 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png +2023-03-15 17:53:44.2708 Info Copied binding_dark.png +2023-03-15 17:53:44.2708 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css +2023-03-15 17:53:44.2717 Info Copied bootstrap.min.css +2023-03-15 17:53:44.2717 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js +2023-03-15 17:53:44.2717 Info Copied bootstrap.min.js +2023-03-15 17:53:44.2717 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js +2023-03-15 17:53:44.2729 Info Copied common.js +2023-03-15 17:53:44.2729 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css +2023-03-15 17:53:44.2729 Info Copied bootstrap-multiselect.css +2023-03-15 17:53:44.2737 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css +2023-03-15 17:53:44.2737 Info Copied font-awesome.min.css +2023-03-15 17:53:44.2737 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css +2023-03-15 17:53:44.2748 Info Copied jquery.dataTables.min.css +2023-03-15 17:53:44.2748 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css +2023-03-15 17:53:44.2748 Info Copied tagify.css +2023-03-15 17:53:44.2748 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css +2023-03-15 17:53:44.2759 Info Copied custom_mobile.css +2023-03-15 17:53:44.2759 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css +2023-03-15 17:53:44.2759 Info Copied custom.css +2023-03-15 17:53:44.2767 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js +2023-03-15 17:53:44.2767 Info Copied custom.js +2023-03-15 17:53:44.2767 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico +2023-03-15 17:53:44.2780 Info Copied favicon.ico +2023-03-15 17:53:44.2780 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot +2023-03-15 17:53:44.2787 Info Copied fontawesome-webfont.eot +2023-03-15 17:53:44.2787 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg +2023-03-15 17:53:44.2806 Info Copied fontawesome-webfont.svg +2023-03-15 17:53:44.2806 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf +2023-03-15 17:53:44.2806 Info Copied fontawesome-webfont.ttf +2023-03-15 17:53:44.2806 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff +2023-03-15 17:53:44.2831 Info Copied fontawesome-webfont.woff +2023-03-15 17:53:44.2831 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 +2023-03-15 17:53:44.2838 Info Copied fontawesome-webfont.woff2 +2023-03-15 17:53:44.2838 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf +2023-03-15 17:53:44.2838 Info Copied FontAwesome.otf +2023-03-15 17:53:44.2847 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot +2023-03-15 17:53:44.2860 Info Copied glyphicons-halflings-regular.eot +2023-03-15 17:53:44.2860 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg +2023-03-15 17:53:44.2869 Info Copied glyphicons-halflings-regular.svg +2023-03-15 17:53:44.2869 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf +2023-03-15 17:53:44.2869 Info Copied glyphicons-halflings-regular.ttf +2023-03-15 17:53:44.2877 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff +2023-03-15 17:53:44.2877 Info Copied glyphicons-halflings-regular.woff +2023-03-15 17:53:44.2877 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 +2023-03-15 17:53:44.2888 Info Copied glyphicons-halflings-regular.woff2 +2023-03-15 17:53:44.2888 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png +2023-03-15 17:53:44.2888 Info Copied sort_asc_disabled.png +2023-03-15 17:53:44.2888 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png +2023-03-15 17:53:44.2899 Info Copied sort_asc.png +2023-03-15 17:53:44.2899 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png +2023-03-15 17:53:44.2899 Info Copied sort_both.png +2023-03-15 17:53:44.2907 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png +2023-03-15 17:53:44.2907 Info Copied sort_desc_disabled.png +2023-03-15 17:53:44.2907 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png +2023-03-15 17:53:44.2916 Info Copied sort_desc.png +2023-03-15 17:53:44.2916 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html +2023-03-15 17:53:44.2916 Info Copied index.html +2023-03-15 17:53:44.2916 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png +2023-03-15 17:53:44.2928 Info Copied jacket_medium.png +2023-03-15 17:53:44.2928 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js +2023-03-15 17:53:44.2928 Info Copied api.js +2023-03-15 17:53:44.2928 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js +2023-03-15 17:53:44.2940 Info Copied bootstrap-multiselect.js +2023-03-15 17:53:44.2940 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js +2023-03-15 17:53:44.2947 Info Copied bootstrap-notify.js +2023-03-15 17:53:44.2947 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js +2023-03-15 17:53:44.2947 Info Copied filesize.min.js +2023-03-15 17:53:44.2947 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js +2023-03-15 17:53:44.2959 Info Copied handlebars.min.js +2023-03-15 17:53:44.2959 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js +2023-03-15 17:53:44.2959 Info Copied handlebarsextend.js +2023-03-15 17:53:44.2959 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js +2023-03-15 17:53:44.2973 Info Copied handlebarsmoment.js +2023-03-15 17:53:44.2973 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js +2023-03-15 17:53:44.2981 Info Copied jquery.dataTables.min.js +2023-03-15 17:53:44.2981 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js +2023-03-15 17:53:44.2997 Info Copied jquery.min.js +2023-03-15 17:53:44.2997 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js +2023-03-15 17:53:44.2997 Info Copied jQuery.tagify.min.js +2023-03-15 17:53:44.2997 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js +2023-03-15 17:53:44.3010 Info Copied moment.min.js +2023-03-15 17:53:44.3010 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js +2023-03-15 17:53:44.3017 Info Copied tagify.min.js +2023-03-15 17:53:44.3017 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html +2023-03-15 17:53:44.3017 Info Copied login.html +2023-03-15 17:53:44.3017 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/createdump to destination: /app/Jackett/createdump +2023-03-15 17:53:44.3031 Info Copied createdump +2023-03-15 17:53:44.3031 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll +2023-03-15 17:53:44.3037 Info Copied DateTimeRoutines.dll +2023-03-15 17:53:44.3037 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb +2023-03-15 17:53:44.3037 Info Copied DateTimeRoutines.pdb +2023-03-15 17:53:44.3037 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml +2023-03-15 17:53:44.3050 Info Copied 0daykiev.yml +2023-03-15 17:53:44.3050 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml +2023-03-15 17:53:44.3050 Info Copied 0magnet.yml +2023-03-15 17:53:44.3058 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml +2023-03-15 17:53:44.3058 Info Copied 1337x.yml +2023-03-15 17:53:44.3058 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml +2023-03-15 17:53:44.3068 Info Copied 1ptbar.yml +2023-03-15 17:53:44.3068 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml +2023-03-15 17:53:44.3068 Info Copied 2fast4you.yml +2023-03-15 17:53:44.3068 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml +2023-03-15 17:53:44.3080 Info Copied 2xfree.yml +2023-03-15 17:53:44.3080 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml +2023-03-15 17:53:44.3080 Info Copied 3changtrai.yml +2023-03-15 17:53:44.3087 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml +2023-03-15 17:53:44.3087 Info Copied 3dtorrents.yml +2023-03-15 17:53:44.3087 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml +2023-03-15 17:53:44.3096 Info Copied 4thd.yml +2023-03-15 17:53:44.3096 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml +2023-03-15 17:53:44.3096 Info Copied 52pt.yml +2023-03-15 17:53:44.3096 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml +2023-03-15 17:53:44.3109 Info Copied abnormal.yml +2023-03-15 17:53:44.3109 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml +2023-03-15 17:53:44.3109 Info Copied abtorrents.yml +2023-03-15 17:53:44.3117 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml +2023-03-15 17:53:44.3117 Info Copied acervos-api.yml +2023-03-15 17:53:44.3117 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml +2023-03-15 17:53:44.3127 Info Copied acgrip.yml +2023-03-15 17:53:44.3127 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml +2023-03-15 17:53:44.3127 Info Copied acgsou.yml +2023-03-15 17:53:44.3127 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml +2023-03-15 17:53:44.3138 Info Copied acidlounge.yml +2023-03-15 17:53:44.3138 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml +2023-03-15 17:53:44.3138 Info Copied acrossthetasman.yml +2023-03-15 17:53:44.3138 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml +2023-03-15 17:53:44.3150 Info Copied aftershock.yml +2023-03-15 17:53:44.3150 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml +2023-03-15 17:53:44.3150 Info Copied aidoruonline.yml +2023-03-15 17:53:44.3157 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml +2023-03-15 17:53:44.3157 Info Copied aither-api.yml +2023-03-15 17:53:44.3157 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml +2023-03-15 17:53:44.3167 Info Copied amigosshare.yml +2023-03-15 17:53:44.3167 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml +2023-03-15 17:53:44.3167 Info Copied anilibria.yml +2023-03-15 17:53:44.3167 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml +2023-03-15 17:53:44.3180 Info Copied anime-free.yml +2023-03-15 17:53:44.3180 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml +2023-03-15 17:53:44.3187 Info Copied animelayer.yml +2023-03-15 17:53:44.3187 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml +2023-03-15 17:53:44.3187 Info Copied animetracker.yml +2023-03-15 17:53:44.3187 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml +2023-03-15 17:53:44.3198 Info Copied animeworld-api.yml +2023-03-15 17:53:44.3198 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml +2023-03-15 17:53:44.3198 Info Copied anirena.yml +2023-03-15 17:53:44.3198 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml +2023-03-15 17:53:44.3210 Info Copied anisource.yml +2023-03-15 17:53:44.3210 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml +2023-03-15 17:53:44.3210 Info Copied anthelion-api.yml +2023-03-15 17:53:44.3218 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml +2023-03-15 17:53:44.3218 Info Copied arabafenice.yml +2023-03-15 17:53:44.3218 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml +2023-03-15 17:53:44.3228 Info Copied arabp2p.yml +2023-03-15 17:53:44.3228 Info Attempting to copy arabtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/arabtorrents.yml to destination: /app/Jackett/Definitions/arabtorrents.yml +2023-03-15 17:53:44.3228 Info Copied arabtorrents.yml +2023-03-15 17:53:44.3237 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml +2023-03-15 17:53:44.3237 Info Copied arenabg.yml +2023-03-15 17:53:44.3237 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml +2023-03-15 17:53:44.3247 Info Copied asiancinema.yml +2023-03-15 17:53:44.3247 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml +2023-03-15 17:53:44.3247 Info Copied asiandvdclub.yml +2023-03-15 17:53:44.3247 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml +2023-03-15 17:53:44.3259 Info Copied audiences.yml +2023-03-15 17:53:44.3259 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml +2023-03-15 17:53:44.3259 Info Copied audionews.yml +2023-03-15 17:53:44.3268 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml +2023-03-15 17:53:44.3268 Info Copied aussierules.yml +2023-03-15 17:53:44.3268 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml +2023-03-15 17:53:44.3279 Info Copied backups.yml +2023-03-15 17:53:44.3279 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml +2023-03-15 17:53:44.3279 Info Copied badasstorrents.yml +2023-03-15 17:53:44.3286 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml +2023-03-15 17:53:44.3286 Info Copied bangumi-moe.yml +2023-03-15 17:53:44.3286 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml +2023-03-15 17:53:44.3296 Info Copied beitai.yml +2023-03-15 17:53:44.3296 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml +2023-03-15 17:53:44.3296 Info Copied bestcore.yml +2023-03-15 17:53:44.3296 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml +2023-03-15 17:53:44.3309 Info Copied beyond-hd.yml +2023-03-15 17:53:44.3309 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml +2023-03-15 17:53:44.3309 Info Copied bibliotik.yml +2023-03-15 17:53:44.3317 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml +2023-03-15 17:53:44.3317 Info Copied bigfangroup.yml +2023-03-15 17:53:44.3317 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml +2023-03-15 17:53:44.3328 Info Copied bitbazis.yml +2023-03-15 17:53:44.3328 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml +2023-03-15 17:53:44.3328 Info Copied bitded.yml +2023-03-15 17:53:44.3328 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml +2023-03-15 17:53:44.3340 Info Copied bithorlo.yml +2023-03-15 17:53:44.3340 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml +2023-03-15 17:53:44.3340 Info Copied bithumen.yml +2023-03-15 17:53:44.3348 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml +2023-03-15 17:53:44.3348 Info Copied bitnova.yml +2023-03-15 17:53:44.3348 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml +2023-03-15 17:53:44.3358 Info Copied bitofvalor.yml +2023-03-15 17:53:44.3358 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml +2023-03-15 17:53:44.3358 Info Copied bitru.yml +2023-03-15 17:53:44.3366 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml +2023-03-15 17:53:44.3366 Info Copied bitsearch.yml +2023-03-15 17:53:44.3366 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml +2023-03-15 17:53:44.3377 Info Copied bitsexy.yml +2023-03-15 17:53:44.3377 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml +2023-03-15 17:53:44.3377 Info Copied bitspyder.yml +2023-03-15 17:53:44.3377 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml +2023-03-15 17:53:44.3390 Info Copied Bittorrentfiles.yml +2023-03-15 17:53:44.3390 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml +2023-03-15 17:53:44.3390 Info Copied bitturk.yml +2023-03-15 17:53:44.3398 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml +2023-03-15 17:53:44.3398 Info Copied bluebird.yml +2023-03-15 17:53:44.3398 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml +2023-03-15 17:53:44.3408 Info Copied blutopia-api.yml +2023-03-15 17:53:44.3408 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml +2023-03-15 17:53:44.3408 Info Copied booktracker.yml +2023-03-15 17:53:44.3408 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml +2023-03-15 17:53:44.3421 Info Copied bootytape.yml +2023-03-15 17:53:44.3421 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml +2023-03-15 17:53:44.3427 Info Copied borgzelle.yml +2023-03-15 17:53:44.3427 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml +2023-03-15 17:53:44.3427 Info Copied boxingtorrents.yml +2023-03-15 17:53:44.3427 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml +2023-03-15 17:53:44.3448 Info Copied broadcity.yml +2023-03-15 17:53:44.3448 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml +2023-03-15 17:53:44.3448 Info Copied brsociety-api.yml +2023-03-15 17:53:44.3457 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml +2023-03-15 17:53:44.3457 Info Copied bt4g.yml +2023-03-15 17:53:44.3457 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml +2023-03-15 17:53:44.3466 Info Copied btdigg.yml +2023-03-15 17:53:44.3466 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml +2023-03-15 17:53:44.3466 Info Copied btetree.yml +2023-03-15 17:53:44.3466 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml +2023-03-15 17:53:44.3478 Info Copied btmet.yml +2023-03-15 17:53:44.3478 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml +2023-03-15 17:53:44.3478 Info Copied btnext.yml +2023-03-15 17:53:44.3478 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml +2023-03-15 17:53:44.3490 Info Copied btschool.yml +2023-03-15 17:53:44.3490 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml +2023-03-15 17:53:44.3490 Info Copied btsow.yml +2023-03-15 17:53:44.3498 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml +2023-03-15 17:53:44.3498 Info Copied bulltorrent.yml +2023-03-15 17:53:44.3498 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml +2023-03-15 17:53:44.3509 Info Copied bwtorrents.yml +2023-03-15 17:53:44.3509 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml +2023-03-15 17:53:44.3509 Info Copied byrbt.yml +2023-03-15 17:53:44.3509 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml +2023-03-15 17:53:44.3520 Info Copied byrutor.yml +2023-03-15 17:53:44.3520 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml +2023-03-15 17:53:44.3527 Info Copied carpathians.yml +2023-03-15 17:53:44.3527 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml +2023-03-15 17:53:44.3527 Info Copied carphunter.yml +2023-03-15 17:53:44.3527 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml +2023-03-15 17:53:44.3539 Info Copied carpt.yml +2023-03-15 17:53:44.3539 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml +2023-03-15 17:53:44.3539 Info Copied cartoonchaos.yml +2023-03-15 17:53:44.3548 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml +2023-03-15 17:53:44.3548 Info Copied cathoderaytube.yml +2023-03-15 17:53:44.3548 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml +2023-03-15 17:53:44.3558 Info Copied catorrent.yml +2023-03-15 17:53:44.3558 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml +2023-03-15 17:53:44.3558 Info Copied ccfbits.yml +2023-03-15 17:53:44.3558 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml +2023-03-15 17:53:44.3569 Info Copied ceskeforum.yml +2023-03-15 17:53:44.3569 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml +2023-03-15 17:53:44.3569 Info Copied chdbits.yml +2023-03-15 17:53:44.3577 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml +2023-03-15 17:53:44.3577 Info Copied chilebt.yml +2023-03-15 17:53:44.3577 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml +2023-03-15 17:53:44.3587 Info Copied cinemageddon.yml +2023-03-15 17:53:44.3587 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml +2023-03-15 17:53:44.3587 Info Copied cinemamovies.yml +2023-03-15 17:53:44.3587 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml +2023-03-15 17:53:44.3599 Info Copied cinematik.yml +2023-03-15 17:53:44.3599 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml +2023-03-15 17:53:44.3599 Info Copied classix.yml +2023-03-15 17:53:44.3608 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml +2023-03-15 17:53:44.3608 Info Copied coastalcrew.yml +2023-03-15 17:53:44.3608 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml +2023-03-15 17:53:44.3619 Info Copied comicat.yml +2023-03-15 17:53:44.3619 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml +2023-03-15 17:53:44.3619 Info Copied concen.yml +2023-03-15 17:53:44.3628 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml +2023-03-15 17:53:44.3628 Info Copied concertos.yml +2023-03-15 17:53:44.3628 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml +2023-03-15 17:53:44.3639 Info Copied cpabien.yml +2023-03-15 17:53:44.3639 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml +2023-03-15 17:53:44.3639 Info Copied cpasbienclone.yml +2023-03-15 17:53:44.3647 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml +2023-03-15 17:53:44.3647 Info Copied cpasbiensi.yml +2023-03-15 17:53:44.3647 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml +2023-03-15 17:53:44.3658 Info Copied crackingpatching.yml +2023-03-15 17:53:44.3658 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml +2023-03-15 17:53:44.3658 Info Copied crazyhd.yml +2023-03-15 17:53:44.3658 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml +2023-03-15 17:53:44.3670 Info Copied crazyspirits.yml +2023-03-15 17:53:44.3670 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml +2023-03-15 17:53:44.3670 Info Copied crnaberza.yml +2023-03-15 17:53:44.3677 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml +2023-03-15 17:53:44.3677 Info Copied crt2fa.yml +2023-03-15 17:53:44.3677 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml +2023-03-15 17:53:44.3687 Info Copied danishbytes-api.yml +2023-03-15 17:53:44.3687 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml +2023-03-15 17:53:44.3687 Info Copied dariustracker.yml +2023-03-15 17:53:44.3698 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml +2023-03-15 17:53:44.3698 Info Copied dark-shadow.yml +2023-03-15 17:53:44.3707 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml +2023-03-15 17:53:44.3707 Info Copied datascene-api.yml +2023-03-15 17:53:44.3717 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml +2023-03-15 17:53:44.3717 Info Copied datatalli.yml +2023-03-15 17:53:44.3717 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml +2023-03-15 17:53:44.3732 Info Copied deildu.yml +2023-03-15 17:53:44.3732 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml +2023-03-15 17:53:44.3742 Info Copied demonoid.yml +2023-03-15 17:53:44.3742 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml +2023-03-15 17:53:44.3752 Info Copied desitorrents-api.yml +2023-03-15 17:53:44.3752 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml +2023-03-15 17:53:44.3762 Info Copied devil-torrents.yml +2023-03-15 17:53:44.3762 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml +2023-03-15 17:53:44.3771 Info Copied diablotorrent.yml +2023-03-15 17:53:44.3771 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml +2023-03-15 17:53:44.3778 Info Copied digitalcore.yml +2023-03-15 17:53:44.3778 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml +2023-03-15 17:53:44.3778 Info Copied dimeadozen.yml +2023-03-15 17:53:44.3787 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml +2023-03-15 17:53:44.3787 Info Copied discfan.yml +2023-03-15 17:53:44.3787 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml +2023-03-15 17:53:44.3798 Info Copied divteam.yml +2023-03-15 17:53:44.3798 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml +2023-03-15 17:53:44.3798 Info Copied dmhy.yml +2023-03-15 17:53:44.3798 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml +2023-03-15 17:53:44.3810 Info Copied docspedia.yml +2023-03-15 17:53:44.3810 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml +2023-03-15 17:53:44.3810 Info Copied dodder.yml +2023-03-15 17:53:44.3818 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml +2023-03-15 17:53:44.3818 Info Copied dreamtracker.yml +2023-03-15 17:53:44.3818 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml +2023-03-15 17:53:44.3828 Info Copied dxp.yml +2023-03-15 17:53:44.3828 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml +2023-03-15 17:53:44.3828 Info Copied ebookbay.yml +2023-03-15 17:53:44.3828 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml +2023-03-15 17:53:44.3840 Info Copied ebooks-shares.yml +2023-03-15 17:53:44.3840 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml +2023-03-15 17:53:44.3840 Info Copied ehentai.yml +2023-03-15 17:53:44.3847 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml +2023-03-15 17:53:44.3847 Info Copied electro-torrent.yml +2023-03-15 17:53:44.3847 Info Attempting to copy elitetorrent-pl.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/elitetorrent-pl.yml to destination: /app/Jackett/Definitions/elitetorrent-pl.yml +2023-03-15 17:53:44.3859 Info Copied elitetorrent-pl.yml +2023-03-15 17:53:44.3859 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml +2023-03-15 17:53:44.3859 Info Copied empornium.yml +2023-03-15 17:53:44.3867 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml +2023-03-15 17:53:44.3867 Info Copied empornium2fa.yml +2023-03-15 17:53:44.3867 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml +2023-03-15 17:53:44.3877 Info Copied eniahd.yml +2023-03-15 17:53:44.3877 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml +2023-03-15 17:53:44.3877 Info Copied esharenet.yml +2023-03-15 17:53:44.3877 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml +2023-03-15 17:53:44.3889 Info Copied estone.yml +2023-03-15 17:53:44.3889 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml +2023-03-15 17:53:44.3889 Info Copied exkinoray.yml +2023-03-15 17:53:44.3897 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml +2023-03-15 17:53:44.3897 Info Copied extratorrent-st.yml +2023-03-15 17:53:44.3897 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml +2023-03-15 17:53:44.3908 Info Copied extremebits.yml +2023-03-15 17:53:44.3908 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml +2023-03-15 17:53:44.3908 Info Copied extremetorrents.yml +2023-03-15 17:53:44.3908 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml +2023-03-15 17:53:44.3919 Info Copied extremlymtorrents.yml +2023-03-15 17:53:44.3919 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml +2023-03-15 17:53:44.3919 Info Copied exttorrents.yml +2023-03-15 17:53:44.3928 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml +2023-03-15 17:53:44.3928 Info Copied eztv.yml +2023-03-15 17:53:44.3928 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml +2023-03-15 17:53:44.3938 Info Copied falkonvisionteam.yml +2023-03-15 17:53:44.3938 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml +2023-03-15 17:53:44.3938 Info Copied fanoin.yml +2023-03-15 17:53:44.3938 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml +2023-03-15 17:53:44.3950 Info Copied fantasticheaven.yml +2023-03-15 17:53:44.3950 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml +2023-03-15 17:53:44.3950 Info Copied fantastiko.yml +2023-03-15 17:53:44.3957 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml +2023-03-15 17:53:44.3957 Info Copied femdomcult.yml +2023-03-15 17:53:44.3957 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml +2023-03-15 17:53:44.3967 Info Copied fenyarnyek-tracker.yml +2023-03-15 17:53:44.3967 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml +2023-03-15 17:53:44.3967 Info Copied file-tracker.yml +2023-03-15 17:53:44.3967 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml +2023-03-15 17:53:44.3979 Info Copied filelisting.yml +2023-03-15 17:53:44.3979 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml +2023-03-15 17:53:44.3979 Info Copied finelite.yml +2023-03-15 17:53:44.3987 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml +2023-03-15 17:53:44.3987 Info Copied finvip.yml +2023-03-15 17:53:44.3987 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml +2023-03-15 17:53:44.3997 Info Copied firebit.yml +2023-03-15 17:53:44.3997 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml +2023-03-15 17:53:44.3997 Info Copied fluxzone.yml +2023-03-15 17:53:44.3997 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml +2023-03-15 17:53:44.4009 Info Copied freshmeat.yml +2023-03-15 17:53:44.4009 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml +2023-03-15 17:53:44.4009 Info Copied frozenlayer.yml +2023-03-15 17:53:44.4017 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml +2023-03-15 17:53:44.4017 Info Copied ftuapps.yml +2023-03-15 17:53:44.4017 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml +2023-03-15 17:53:44.4027 Info Copied funkytorrents.yml +2023-03-15 17:53:44.4027 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml +2023-03-15 17:53:44.4027 Info Copied fuzer.yml +2023-03-15 17:53:44.4027 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml +2023-03-15 17:53:44.4040 Info Copied gainbound.yml +2023-03-15 17:53:44.4040 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml +2023-03-15 17:53:44.4040 Info Copied gamestorrents.yml +2023-03-15 17:53:44.4048 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml +2023-03-15 17:53:44.4048 Info Copied gay-torrents.yml +2023-03-15 17:53:44.4048 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml +2023-03-15 17:53:44.4059 Info Copied gay-torrentsorg.yml +2023-03-15 17:53:44.4059 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml +2023-03-15 17:53:44.4059 Info Copied gaytorrentru.yml +2023-03-15 17:53:44.4067 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml +2023-03-15 17:53:44.4067 Info Copied generationfree-api.yml +2023-03-15 17:53:44.4067 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml +2023-03-15 17:53:44.4077 Info Copied genesismovement.yml +2023-03-15 17:53:44.4077 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml +2023-03-15 17:53:44.4077 Info Copied gigatorrents.yml +2023-03-15 17:53:44.4077 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml +2023-03-15 17:53:44.4088 Info Copied gimmepeers.yml +2023-03-15 17:53:44.4088 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml +2023-03-15 17:53:44.4088 Info Copied girotorrent.yml +2023-03-15 17:53:44.4088 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml +2023-03-15 17:53:44.4100 Info Copied gktorrent.yml +2023-03-15 17:53:44.4100 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml +2023-03-15 17:53:44.4107 Info Copied glodls.yml +2023-03-15 17:53:44.4107 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml +2023-03-15 17:53:44.4107 Info Copied greekdiamond.yml +2023-03-15 17:53:44.4107 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml +2023-03-15 17:53:44.4119 Info Copied greekteam.yml +2023-03-15 17:53:44.4119 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml +2023-03-15 17:53:44.4119 Info Copied gtorrentpro.yml +2023-03-15 17:53:44.4126 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml +2023-03-15 17:53:44.4126 Info Copied haidan.yml +2023-03-15 17:53:44.4126 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml +2023-03-15 17:53:44.4136 Info Copied haitang.yml +2023-03-15 17:53:44.4136 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml +2023-03-15 17:53:44.4136 Info Copied happyfappy.yml +2023-03-15 17:53:44.4136 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml +2023-03-15 17:53:44.4149 Info Copied hawke-uno.yml +2023-03-15 17:53:44.4149 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml +2023-03-15 17:53:44.4149 Info Copied hd-unit3d-api.yml +2023-03-15 17:53:44.4157 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml +2023-03-15 17:53:44.4157 Info Copied hd4fans.yml +2023-03-15 17:53:44.4157 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml +2023-03-15 17:53:44.4167 Info Copied hdarea.yml +2023-03-15 17:53:44.4167 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml +2023-03-15 17:53:44.4167 Info Copied hdatmos.yml +2023-03-15 17:53:44.4167 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml +2023-03-15 17:53:44.4178 Info Copied hdc.yml +2023-03-15 17:53:44.4178 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml +2023-03-15 17:53:44.4178 Info Copied hdchina.yml +2023-03-15 17:53:44.4187 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml +2023-03-15 17:53:44.4187 Info Copied hdcztorrent.yml +2023-03-15 17:53:44.4187 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml +2023-03-15 17:53:44.4197 Info Copied hddolby.yml +2023-03-15 17:53:44.4197 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml +2023-03-15 17:53:44.4197 Info Copied hdfans.yml +2023-03-15 17:53:44.4197 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml +2023-03-15 17:53:44.4209 Info Copied hdforever.yml +2023-03-15 17:53:44.4209 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml +2023-03-15 17:53:44.4209 Info Copied hdgalaktik.yml +2023-03-15 17:53:44.4216 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml +2023-03-15 17:53:44.4216 Info Copied hdhome.yml +2023-03-15 17:53:44.4216 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml +2023-03-15 17:53:44.4226 Info Copied hdmayi.yml +2023-03-15 17:53:44.4226 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml +2023-03-15 17:53:44.4226 Info Copied hdmonkey.yml +2023-03-15 17:53:44.4226 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml +2023-03-15 17:53:44.4239 Info Copied hdolimpo-api.yml +2023-03-15 17:53:44.4239 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml +2023-03-15 17:53:44.4239 Info Copied hdonly.yml +2023-03-15 17:53:44.4247 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml +2023-03-15 17:53:44.4247 Info Copied hdroute.yml +2023-03-15 17:53:44.4247 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml +2023-03-15 17:53:44.4257 Info Copied hdsky.yml +2023-03-15 17:53:44.4257 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml +2023-03-15 17:53:44.4257 Info Copied hdtime.yml +2023-03-15 17:53:44.4257 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml +2023-03-15 17:53:44.4270 Info Copied hdtorrentsit.yml +2023-03-15 17:53:44.4270 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml +2023-03-15 17:53:44.4270 Info Copied hdturk.yml +2023-03-15 17:53:44.4277 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml +2023-03-15 17:53:44.4277 Info Copied hdu.yml +2023-03-15 17:53:44.4277 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml +2023-03-15 17:53:44.4287 Info Copied hdzone.yml +2023-03-15 17:53:44.4287 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml +2023-03-15 17:53:44.4287 Info Copied hebits.yml +2023-03-15 17:53:44.4287 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml +2023-03-15 17:53:44.4299 Info Copied hellashut.yml +2023-03-15 17:53:44.4299 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml +2023-03-15 17:53:44.4299 Info Copied hhanclub.yml +2023-03-15 17:53:44.4307 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml +2023-03-15 17:53:44.4307 Info Copied houseofdevil.yml +2023-03-15 17:53:44.4307 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml +2023-03-15 17:53:44.4318 Info Copied hqmusic.yml +2023-03-15 17:53:44.4318 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml +2023-03-15 17:53:44.4318 Info Copied huntorrent.yml +2023-03-15 17:53:44.4318 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml +2023-03-15 17:53:44.4329 Info Copied icc2022.yml +2023-03-15 17:53:44.4329 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml +2023-03-15 17:53:44.4329 Info Copied idope.yml +2023-03-15 17:53:44.4336 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml +2023-03-15 17:53:44.4438 Info Copied ihdbits.yml +2023-03-15 17:53:44.4438 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml +2023-03-15 17:53:44.4438 Info Copied ilcorsaroblu.yml +2023-03-15 17:53:44.4447 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml +2023-03-15 17:53:44.4447 Info Copied ilcorsaronero.yml +2023-03-15 17:53:44.4447 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml +2023-03-15 17:53:44.4458 Info Copied immortuos.yml +2023-03-15 17:53:44.4458 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml +2023-03-15 17:53:44.4458 Info Copied indietorrents.yml +2023-03-15 17:53:44.4467 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml +2023-03-15 17:53:44.4467 Info Copied insanetracker.yml +2023-03-15 17:53:44.4467 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml +2023-03-15 17:53:44.4478 Info Copied internetarchive.yml +2023-03-15 17:53:44.4478 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml +2023-03-15 17:53:44.4478 Info Copied isohunt2.yml +2023-03-15 17:53:44.4478 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml +2023-03-15 17:53:44.4490 Info Copied itorrent.yml +2023-03-15 17:53:44.4490 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml +2023-03-15 17:53:44.4497 Info Copied jav-torrent.yml +2023-03-15 17:53:44.4497 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml +2023-03-15 17:53:44.4497 Info Copied jme-reunit3d-api.yml +2023-03-15 17:53:44.4497 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml +2023-03-15 17:53:44.4511 Info Copied joyhd.yml +2023-03-15 17:53:44.4511 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml +2023-03-15 17:53:44.4517 Info Copied jpopsuki.yml +2023-03-15 17:53:44.4517 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml +2023-03-15 17:53:44.4517 Info Copied jptv.yml +2023-03-15 17:53:44.4517 Info Attempting to copy kamept.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/kamept.yml to destination: /app/Jackett/Definitions/kamept.yml +2023-03-15 17:53:44.4530 Info Copied kamept.yml +2023-03-15 17:53:44.4530 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml +2023-03-15 17:53:44.4536 Info Copied karagarga.yml +2023-03-15 17:53:44.4536 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml +2023-03-15 17:53:44.4536 Info Copied keepfriends.yml +2023-03-15 17:53:44.4536 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml +2023-03-15 17:53:44.4549 Info Copied kickasstorrents-to.yml +2023-03-15 17:53:44.4549 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml +2023-03-15 17:53:44.4549 Info Copied kickasstorrents-ws.yml +2023-03-15 17:53:44.4557 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml +2023-03-15 17:53:44.4557 Info Copied kinorun.yml +2023-03-15 17:53:44.4557 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml +2023-03-15 17:53:44.4567 Info Copied kinozal.yml +2023-03-15 17:53:44.4567 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml +2023-03-15 17:53:44.4567 Info Copied knaben.yml +2023-03-15 17:53:44.4567 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml +2023-03-15 17:53:44.4580 Info Copied korsar.yml +2023-03-15 17:53:44.4580 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml +2023-03-15 17:53:44.4580 Info Copied krazyzone.yml +2023-03-15 17:53:44.4588 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml +2023-03-15 17:53:44.4588 Info Copied kufirc.yml +2023-03-15 17:53:44.4588 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml +2023-03-15 17:53:44.4598 Info Copied lastfiles.yml +2023-03-15 17:53:44.4629 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml +2023-03-15 17:53:44.4629 Info Copied lat-team-api.yml +2023-03-15 17:53:44.4629 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml +2023-03-15 17:53:44.4640 Info Copied learnbits.yml +2023-03-15 17:53:44.4640 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml +2023-03-15 17:53:44.4647 Info Copied learnflakes.yml +2023-03-15 17:53:44.4647 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml +2023-03-15 17:53:44.4647 Info Copied leech24.yml +2023-03-15 17:53:44.4647 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml +2023-03-15 17:53:44.4660 Info Copied lemonhd.yml +2023-03-15 17:53:44.4660 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml +2023-03-15 17:53:44.4667 Info Copied lepornoinfo.yml +2023-03-15 17:53:44.4667 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml +2023-03-15 17:53:44.4667 Info Copied les-cinephiles.yml +2023-03-15 17:53:44.4677 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml +2023-03-15 17:53:44.4677 Info Copied lesaloon.yml +2023-03-15 17:53:44.4677 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml +2023-03-15 17:53:44.4689 Info Copied libranet.yml +2023-03-15 17:53:44.4689 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml +2023-03-15 17:53:44.4689 Info Copied limetorrents.yml +2023-03-15 17:53:44.4697 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml +2023-03-15 17:53:44.4697 Info Copied limetorrentsclone.yml +2023-03-15 17:53:44.4697 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml +2023-03-15 17:53:44.4710 Info Copied linkomanija.yml +2023-03-15 17:53:44.4710 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml +2023-03-15 17:53:44.4717 Info Copied linuxtracker.yml +2023-03-15 17:53:44.4717 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml +2023-03-15 17:53:44.4717 Info Copied locadora.yml +2023-03-15 17:53:44.4717 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml +2023-03-15 17:53:44.4730 Info Copied losslessclub.yml +2023-03-15 17:53:44.4730 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml +2023-03-15 17:53:44.4737 Info Copied lst.yml +2023-03-15 17:53:44.4737 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml +2023-03-15 17:53:44.4737 Info Copied mactorrentsdownload.yml +2023-03-15 17:53:44.4737 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml +2023-03-15 17:53:44.4750 Info Copied madsrevolution.yml +2023-03-15 17:53:44.4750 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml +2023-03-15 17:53:44.4756 Info Copied magicheaven.yml +2023-03-15 17:53:44.4756 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml +2023-03-15 17:53:44.4756 Info Copied magico.yml +2023-03-15 17:53:44.4756 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml +2023-03-15 17:53:44.4768 Info Copied majomparade.yml +2023-03-15 17:53:44.4768 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml +2023-03-15 17:53:44.4782 Info Copied marinetracker.yml +2023-03-15 17:53:44.4782 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml +2023-03-15 17:53:44.4788 Info Copied mazepa.yml +2023-03-15 17:53:44.4788 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml +2023-03-15 17:53:44.4788 Info Copied megamixtracker.yml +2023-03-15 17:53:44.4788 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml +2023-03-15 17:53:44.4800 Info Copied megapeer.yml +2023-03-15 17:53:44.4800 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml +2023-03-15 17:53:44.4800 Info Copied mesevilag.yml +2023-03-15 17:53:44.4808 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml +2023-03-15 17:53:44.4808 Info Copied metaltracker.yml +2023-03-15 17:53:44.4808 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml +2023-03-15 17:53:44.4818 Info Copied mikan.yml +2023-03-15 17:53:44.4818 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml +2023-03-15 17:53:44.4818 Info Copied milkie.yml +2023-03-15 17:53:44.4818 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml +2023-03-15 17:53:44.4830 Info Copied miobt.yml +2023-03-15 17:53:44.4830 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml +2023-03-15 17:53:44.4837 Info Copied mircrew.yml +2023-03-15 17:53:44.4837 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml +2023-03-15 17:53:44.4837 Info Copied mixtapetorrent.yml +2023-03-15 17:53:44.4837 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml +2023-03-15 17:53:44.4848 Info Copied mma-torrents.yml +2023-03-15 17:53:44.4848 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml +2023-03-15 17:53:44.4848 Info Copied mnv.yml +2023-03-15 17:53:44.4848 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml +2023-03-15 17:53:44.4859 Info Copied mojblink.yml +2023-03-15 17:53:44.4859 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml +2023-03-15 17:53:44.4859 Info Copied mousebits.yml +2023-03-15 17:53:44.4867 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml +2023-03-15 17:53:44.4867 Info Copied moviesdvdr.yml +2023-03-15 17:53:44.4867 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml +2023-03-15 17:53:44.4876 Info Copied moviesite.yml +2023-03-15 17:53:44.4876 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml +2023-03-15 17:53:44.4876 Info Copied movietorrent.yml +2023-03-15 17:53:44.4876 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml +2023-03-15 17:53:44.4887 Info Copied movietorrentz.yml +2023-03-15 17:53:44.4887 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml +2023-03-15 17:53:44.4887 Info Copied mteamtp.yml +2023-03-15 17:53:44.4887 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml +2023-03-15 17:53:44.4899 Info Copied mteamtp2fa.yml +2023-03-15 17:53:44.4899 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml +2023-03-15 17:53:44.4899 Info Copied muziekfabriek.yml +2023-03-15 17:53:44.4907 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml +2023-03-15 17:53:44.4907 Info Copied mvgroupforum.yml +2023-03-15 17:53:44.4907 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml +2023-03-15 17:53:44.4917 Info Copied mvgroupmain.yml +2023-03-15 17:53:44.4917 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml +2023-03-15 17:53:44.4917 Info Copied mypornclub.yml +2023-03-15 17:53:44.4917 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml +2023-03-15 17:53:44.4928 Info Copied myspleen.yml +2023-03-15 17:53:44.4928 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml +2023-03-15 17:53:44.4928 Info Copied nethd.yml +2023-03-15 17:53:44.4928 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml +2023-03-15 17:53:44.4940 Info Copied newretro.yml +2023-03-15 17:53:44.4940 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml +2023-03-15 17:53:44.4940 Info Copied newstudio.yml +2023-03-15 17:53:44.4948 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml +2023-03-15 17:53:44.4948 Info Copied newstudiol.yml +2023-03-15 17:53:44.4948 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml +2023-03-15 17:53:44.4958 Info Copied nicept.yml +2023-03-15 17:53:44.4958 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml +2023-03-15 17:53:44.4958 Info Copied nipponsei.yml +2023-03-15 17:53:44.4958 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml +2023-03-15 17:53:44.4971 Info Copied nntt.yml +2023-03-15 17:53:44.4971 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml +2023-03-15 17:53:44.4978 Info Copied noname-club.yml +2023-03-15 17:53:44.4978 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml +2023-03-15 17:53:44.4992 Info Copied noname-clubl.yml +2023-03-15 17:53:44.4992 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml +2023-03-15 17:53:44.4998 Info Copied nyaasi.yml +2023-03-15 17:53:44.4998 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml +2023-03-15 17:53:44.4998 Info Copied oldtoonsworld.yml +2023-03-15 17:53:44.4998 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml +2023-03-15 17:53:44.5010 Info Copied onejav.yml +2023-03-15 17:53:44.5010 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml +2023-03-15 17:53:44.5010 Info Copied opencd.yml +2023-03-15 17:53:44.5018 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml +2023-03-15 17:53:44.5018 Info Copied oshenpt.yml +2023-03-15 17:53:44.5018 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml +2023-03-15 17:53:44.5071 Info Copied ourbits.yml +2023-03-15 17:53:44.5071 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml +2023-03-15 17:53:44.5078 Info Copied p2pbg.yml +2023-03-15 17:53:44.5078 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml +2023-03-15 17:53:44.5078 Info Copied parnuxi.yml +2023-03-15 17:53:44.5087 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml +2023-03-15 17:53:44.5103 Info Copied partis.yml +2023-03-15 17:53:44.5103 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml +2023-03-15 17:53:44.5103 Info Copied pctorrent.yml +2023-03-15 17:53:44.5146 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml +2023-03-15 17:53:44.5146 Info Copied peeratiko.yml +2023-03-15 17:53:44.5146 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml +2023-03-15 17:53:44.5157 Info Copied peersfm.yml +2023-03-15 17:53:44.5157 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml +2023-03-15 17:53:44.5157 Info Copied pier720.yml +2023-03-15 17:53:44.5157 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml +2023-03-15 17:53:44.5167 Info Copied pignetwork.yml +2023-03-15 17:53:44.5167 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml +2023-03-15 17:53:44.5167 Info Copied piratbit.yml +2023-03-15 17:53:44.5167 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml +2023-03-15 17:53:44.5180 Info Copied piratbitl.yml +2023-03-15 17:53:44.5180 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml +2023-03-15 17:53:44.5180 Info Copied pixelcove.yml +2023-03-15 17:53:44.5187 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml +2023-03-15 17:53:44.5187 Info Copied pixelcove2fa.yml +2023-03-15 17:53:44.5187 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml +2023-03-15 17:53:44.5187 Info Copied polishsource.yml +2023-03-15 17:53:44.5198 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml +2023-03-15 17:53:44.5198 Info Copied polishtracker-api.yml +2023-03-15 17:53:44.5198 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml +2023-03-15 17:53:44.5206 Info Copied pornbay.yml +2023-03-15 17:53:44.5206 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml +2023-03-15 17:53:44.5206 Info Copied pornoslab.yml +2023-03-15 17:53:44.5206 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml +2023-03-15 17:53:44.5218 Info Copied pornotorrent.yml +2023-03-15 17:53:44.5218 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml +2023-03-15 17:53:44.5218 Info Copied portugas-api.yml +2023-03-15 17:53:44.5218 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml +2023-03-15 17:53:44.5230 Info Copied potuk.yml +2023-03-15 17:53:44.5230 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml +2023-03-15 17:53:44.5239 Info Copied proaudiotorrents.yml +2023-03-15 17:53:44.5239 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml +2023-03-15 17:53:44.5247 Info Copied proporno.yml +2023-03-15 17:53:44.5247 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml +2023-03-15 17:53:44.5247 Info Copied ptchina.yml +2023-03-15 17:53:44.5258 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml +2023-03-15 17:53:44.5258 Info Copied pterclub.yml +2023-03-15 17:53:44.5258 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml +2023-03-15 17:53:44.5267 Info Copied ptfiles.yml +2023-03-15 17:53:44.5267 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml +2023-03-15 17:53:44.5267 Info Copied pthome.yml +2023-03-15 17:53:44.5267 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml +2023-03-15 17:53:44.5281 Info Copied ptmsg.yml +2023-03-15 17:53:44.5281 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml +2023-03-15 17:53:44.5288 Info Copied ptsbao.yml +2023-03-15 17:53:44.5288 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml +2023-03-15 17:53:44.5288 Info Copied pttime.yml +2023-03-15 17:53:44.5288 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml +2023-03-15 17:53:44.5299 Info Copied punkshorror.yml +2023-03-15 17:53:44.5299 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml +2023-03-15 17:53:44.5299 Info Copied puntotorrent.yml +2023-03-15 17:53:44.5306 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml +2023-03-15 17:53:44.5306 Info Copied pussytorrents.yml +2023-03-15 17:53:44.5306 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml +2023-03-15 17:53:44.5323 Info Copied putao.yml +2023-03-15 17:53:44.5323 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml +2023-03-15 17:53:44.5323 Info Copied puurhollands.yml +2023-03-15 17:53:44.5323 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml +2023-03-15 17:53:44.5323 Info Copied pwtorrents.yml +2023-03-15 17:53:44.5323 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml +2023-03-15 17:53:44.5339 Info Copied r3vwtf.yml +2023-03-15 17:53:44.5339 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml +2023-03-15 17:53:44.5339 Info Copied racing4everyone-api.yml +2023-03-15 17:53:44.5346 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml +2023-03-15 17:53:44.5346 Info Copied racingforme.yml +2023-03-15 17:53:44.5346 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml +2023-03-15 17:53:44.5346 Info Copied rainbowtracker.yml +2023-03-15 17:53:44.5357 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml +2023-03-15 17:53:44.5357 Info Copied rapidzona.yml +2023-03-15 17:53:44.5357 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml +2023-03-15 17:53:44.5367 Info Copied redbits-api.yml +2023-03-15 17:53:44.5367 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml +2023-03-15 17:53:44.5367 Info Copied redstartorrent.yml +2023-03-15 17:53:44.5367 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml +2023-03-15 17:53:44.5378 Info Copied reelflix-api.yml +2023-03-15 17:53:44.5378 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml +2023-03-15 17:53:44.5378 Info Copied resurrectthenet.yml +2023-03-15 17:53:44.5378 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml +2023-03-15 17:53:44.5389 Info Copied rgfootball.yml +2023-03-15 17:53:44.5389 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml +2023-03-15 17:53:44.5389 Info Copied rintor.yml +2023-03-15 17:53:44.5389 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml +2023-03-15 17:53:44.5399 Info Copied rintornet.yml +2023-03-15 17:53:44.5399 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml +2023-03-15 17:53:44.5399 Info Copied riperam.yml +2023-03-15 17:53:44.5407 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml +2023-03-15 17:53:44.5407 Info Copied rockbox.yml +2023-03-15 17:53:44.5407 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml +2023-03-15 17:53:44.5407 Info Copied romanianmetaltorrents.yml +2023-03-15 17:53:44.5417 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml +2023-03-15 17:53:44.5417 Info Copied rptorrents.yml +2023-03-15 17:53:44.5417 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml +2023-03-15 17:53:44.5417 Info Copied rudub.yml +2023-03-15 17:53:44.5428 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml +2023-03-15 17:53:44.5428 Info Copied rus-media.yml +2023-03-15 17:53:44.5428 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml +2023-03-15 17:53:44.5437 Info Copied rustorka.yml +2023-03-15 17:53:44.5437 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml +2023-03-15 17:53:44.5437 Info Copied rutor.yml +2023-03-15 17:53:44.5437 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml +2023-03-15 17:53:44.5448 Info Copied rutracker-ru.yml +2023-03-15 17:53:44.5448 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml +2023-03-15 17:53:44.5448 Info Copied satclubbing.yml +2023-03-15 17:53:44.5448 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml +2023-03-15 17:53:44.5458 Info Copied scenerush.yml +2023-03-15 17:53:44.5458 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml +2023-03-15 17:53:44.5458 Info Copied sdbits.yml +2023-03-15 17:53:44.5458 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml +2023-03-15 17:53:44.5469 Info Copied seedfile.yml +2023-03-15 17:53:44.5469 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml +2023-03-15 17:53:44.5469 Info Copied seedoff.yml +2023-03-15 17:53:44.5469 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml +2023-03-15 17:53:44.5479 Info Copied selezen.yml +2023-03-15 17:53:44.5479 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml +2023-03-15 17:53:44.5479 Info Copied sexypics.yml +2023-03-15 17:53:44.5479 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml +2023-03-15 17:53:44.5489 Info Copied shanaproject.yml +2023-03-15 17:53:44.5489 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml +2023-03-15 17:53:44.5489 Info Copied shareisland-api.yml +2023-03-15 17:53:44.5497 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml +2023-03-15 17:53:44.5497 Info Copied sharewood.yml +2023-03-15 17:53:44.5497 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml +2023-03-15 17:53:44.5497 Info Copied sharkpt.yml +2023-03-15 17:53:44.5507 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml +2023-03-15 17:53:44.5507 Info Copied showrss.yml +2023-03-15 17:53:44.5507 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml +2023-03-15 17:53:44.5507 Info Copied siambit.yml +2023-03-15 17:53:44.5517 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml +2023-03-15 17:53:44.5517 Info Copied skipthecommercials-api.yml +2023-03-15 17:53:44.5517 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml +2023-03-15 17:53:44.5517 Info Copied skipthetrailers.yml +2023-03-15 17:53:44.5527 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml +2023-03-15 17:53:44.5527 Info Copied sktorrent-org.yml +2023-03-15 17:53:44.5527 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml +2023-03-15 17:53:44.5527 Info Copied sktorrent.yml +2023-03-15 17:53:44.5537 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml +2023-03-15 17:53:44.5537 Info Copied slosoul.yml +2023-03-15 17:53:44.5537 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml +2023-03-15 17:53:44.5558 Info Copied snowpt.yml +2023-03-15 17:53:44.5558 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml +2023-03-15 17:53:44.5558 Info Copied solidtorrents.yml +2023-03-15 17:53:44.5558 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml +2023-03-15 17:53:44.5569 Info Copied sosulki.yml +2023-03-15 17:53:44.5569 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml +2023-03-15 17:53:44.5569 Info Copied soulvoice.yml +2023-03-15 17:53:44.5569 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml +2023-03-15 17:53:44.5579 Info Copied speedmasterhd.yml +2023-03-15 17:53:44.5579 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml +2023-03-15 17:53:44.5592 Info Copied speedtorrentreloaded.yml +2023-03-15 17:53:44.5592 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml +2023-03-15 17:53:44.5598 Info Copied spidertk.yml +2023-03-15 17:53:44.5598 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml +2023-03-15 17:53:44.5598 Info Copied spiritofrevolution.yml +2023-03-15 17:53:44.5598 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml +2023-03-15 17:53:44.5609 Info Copied sporthd.yml +2023-03-15 17:53:44.5609 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml +2023-03-15 17:53:44.5622 Info Copied sportscult.yml +2023-03-15 17:53:44.5622 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml +2023-03-15 17:53:44.5627 Info Copied springsunday.yml +2023-03-15 17:53:44.5627 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml +2023-03-15 17:53:44.5627 Info Copied sugoimusic.yml +2023-03-15 17:53:44.5627 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml +2023-03-15 17:53:44.5638 Info Copied sukebeinyaasi.yml +2023-03-15 17:53:44.5638 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml +2023-03-15 17:53:44.5638 Info Copied superbits.yml +2023-03-15 17:53:44.5638 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml +2023-03-15 17:53:44.5649 Info Copied swarmazon-api.yml +2023-03-15 17:53:44.5649 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml +2023-03-15 17:53:44.5649 Info Copied tapochek.yml +2023-03-15 17:53:44.5657 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml +2023-03-15 17:53:44.5657 Info Copied tasmanit.yml +2023-03-15 17:53:44.5657 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml +2023-03-15 17:53:44.5667 Info Copied teamctgame.yml +2023-03-15 17:53:44.5667 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml +2023-03-15 17:53:44.5667 Info Copied teamhd.yml +2023-03-15 17:53:44.5667 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml +2023-03-15 17:53:44.5678 Info Copied teamos.yml +2023-03-15 17:53:44.5678 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml +2023-03-15 17:53:44.5678 Info Copied tekno3d.yml +2023-03-15 17:53:44.5678 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml +2023-03-15 17:53:44.5689 Info Copied tellytorrent-api.yml +2023-03-15 17:53:44.5689 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml +2023-03-15 17:53:44.5689 Info Copied teracod.yml +2023-03-15 17:53:44.5697 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml +2023-03-15 17:53:44.5697 Info Copied the-crazy-ones.yml +2023-03-15 17:53:44.5697 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml +2023-03-15 17:53:44.5706 Info Copied thedarkcommunity-api.yml +2023-03-15 17:53:44.5706 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml +2023-03-15 17:53:44.5706 Info Copied theempire.yml +2023-03-15 17:53:44.5706 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml +2023-03-15 17:53:44.5717 Info Copied thefallingangels.yml +2023-03-15 17:53:44.5717 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml +2023-03-15 17:53:44.5717 Info Copied thegeeks.yml +2023-03-15 17:53:44.5717 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml +2023-03-15 17:53:44.5728 Info Copied theleachzone.yml +2023-03-15 17:53:44.5728 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml +2023-03-15 17:53:44.5728 Info Copied themixingbowl.yml +2023-03-15 17:53:44.5728 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml +2023-03-15 17:53:44.5739 Info Copied thenewfun.yml +2023-03-15 17:53:44.5739 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml +2023-03-15 17:53:44.5739 Info Copied theoccult.yml +2023-03-15 17:53:44.5739 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml +2023-03-15 17:53:44.5750 Info Copied theoldschool-api.yml +2023-03-15 17:53:44.5750 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml +2023-03-15 17:53:44.5750 Info Copied thepiratebay.yml +2023-03-15 17:53:44.5757 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml +2023-03-15 17:53:44.5757 Info Copied theplace.yml +2023-03-15 17:53:44.5757 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml +2023-03-15 17:53:44.5766 Info Copied thesceneplace.yml +2023-03-15 17:53:44.5766 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml +2023-03-15 17:53:44.5766 Info Copied theshinning-api.yml +2023-03-15 17:53:44.5766 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml +2023-03-15 17:53:44.5777 Info Copied theshow.yml +2023-03-15 17:53:44.5777 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml +2023-03-15 17:53:44.5777 Info Copied thevault.yml +2023-03-15 17:53:44.5777 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml +2023-03-15 17:53:44.5788 Info Copied tjupt.yml +2023-03-15 17:53:44.5788 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml +2023-03-15 17:53:44.5788 Info Copied tlfbits.yml +2023-03-15 17:53:44.5788 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml +2023-03-15 17:53:44.5799 Info Copied tmghub.yml +2023-03-15 17:53:44.5799 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml +2023-03-15 17:53:44.5799 Info Copied tokyotosho.yml +2023-03-15 17:53:44.5799 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml +2023-03-15 17:53:44.5810 Info Copied torlock.yml +2023-03-15 17:53:44.5810 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml +2023-03-15 17:53:44.5810 Info Copied tornado.yml +2023-03-15 17:53:44.5817 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml +2023-03-15 17:53:44.5817 Info Copied torrent-explosiv.yml +2023-03-15 17:53:44.5817 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml +2023-03-15 17:53:44.5827 Info Copied torrent-pirat.yml +2023-03-15 17:53:44.5827 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml +2023-03-15 17:53:44.5827 Info Copied torrent-turk.yml +2023-03-15 17:53:44.5827 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml +2023-03-15 17:53:44.5839 Info Copied torrent9.yml +2023-03-15 17:53:44.5839 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml +2023-03-15 17:53:44.5839 Info Copied torrent911.yml +2023-03-15 17:53:44.5839 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml +2023-03-15 17:53:44.5850 Info Copied torrent9clone.yml +2023-03-15 17:53:44.5850 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml +2023-03-15 17:53:44.5850 Info Copied torrentbd.yml +2023-03-15 17:53:44.5857 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml +2023-03-15 17:53:44.5857 Info Copied torrentby.yml +2023-03-15 17:53:44.5857 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml +2023-03-15 17:53:44.5867 Info Copied torrentccf.yml +2023-03-15 17:53:44.5867 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml +2023-03-15 17:53:44.5867 Info Copied torrentcore.yml +2023-03-15 17:53:44.5867 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml +2023-03-15 17:53:44.5877 Info Copied torrentdownload.yml +2023-03-15 17:53:44.5877 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml +2023-03-15 17:53:44.5877 Info Copied torrentdownloads.yml +2023-03-15 17:53:44.5877 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml +2023-03-15 17:53:44.5887 Info Copied torrentfunk.yml +2023-03-15 17:53:44.5887 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml +2023-03-15 17:53:44.5887 Info Copied torrentgalaxy.yml +2023-03-15 17:53:44.5887 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml +2023-03-15 17:53:44.5898 Info Copied torrenthr.yml +2023-03-15 17:53:44.5898 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml +2023-03-15 17:53:44.5898 Info Copied torrenting.yml +2023-03-15 17:53:44.5898 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml +2023-03-15 17:53:44.5908 Info Copied torrentkitty.yml +2023-03-15 17:53:44.5908 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml +2023-03-15 17:53:44.5908 Info Copied torrentland.yml +2023-03-15 17:53:44.5908 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml +2023-03-15 17:53:44.5919 Info Copied torrentleech-pl.yml +2023-03-15 17:53:44.5919 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml +2023-03-15 17:53:44.5919 Info Copied torrentleech.yml +2023-03-15 17:53:44.5919 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml +2023-03-15 17:53:44.5929 Info Copied torrentlt.yml +2023-03-15 17:53:44.5929 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml +2023-03-15 17:53:44.5929 Info Copied torrentmasters.yml +2023-03-15 17:53:44.5929 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml +2023-03-15 17:53:44.5940 Info Copied torrentoyunindir.yml +2023-03-15 17:53:44.5940 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml +2023-03-15 17:53:44.5940 Info Copied torrentproject2.yml +2023-03-15 17:53:44.5947 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml +2023-03-15 17:53:44.5947 Info Copied torrentqq.yml +2023-03-15 17:53:44.5947 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml +2023-03-15 17:53:44.5947 Info Copied torrentsectorcrew.yml +2023-03-15 17:53:44.5957 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml +2023-03-15 17:53:44.5968 Info Copied torrentseeds-api.yml +2023-03-15 17:53:44.5968 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml +2023-03-15 17:53:44.5968 Info Copied torrentsir.yml +2023-03-15 17:53:44.5968 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml +2023-03-15 17:53:44.5979 Info Copied torrentslocal.yml +2023-03-15 17:53:44.5979 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml +2023-03-15 17:53:44.5979 Info Copied torrentv.yml +2023-03-15 17:53:44.5979 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml +2023-03-15 17:53:44.5990 Info Copied torrentview.yml +2023-03-15 17:53:44.5990 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml +2023-03-15 17:53:44.5990 Info Copied torrentwhiz.yml +2023-03-15 17:53:44.5997 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml +2023-03-15 17:53:44.5997 Info Copied torrentz2eu.yml +2023-03-15 17:53:44.5997 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml +2023-03-15 17:53:44.5997 Info Copied torrentz2nz.yml +2023-03-15 17:53:44.6008 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml +2023-03-15 17:53:44.6008 Info Copied totallykids.yml +2023-03-15 17:53:44.6008 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml +2023-03-15 17:53:44.6017 Info Copied totheglory.yml +2023-03-15 17:53:44.6017 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml +2023-03-15 17:53:44.6017 Info Copied totheglorycookie.yml +2023-03-15 17:53:44.6017 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml +2023-03-15 17:53:44.6028 Info Copied traht.yml +2023-03-15 17:53:44.6028 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml +2023-03-15 17:53:44.6028 Info Copied trancetraffic.yml +2023-03-15 17:53:44.6028 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml +2023-03-15 17:53:44.6039 Info Copied trezzor.yml +2023-03-15 17:53:44.6039 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml +2023-03-15 17:53:44.6039 Info Copied tribalmixes.yml +2023-03-15 17:53:44.6039 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml +2023-03-15 17:53:44.6049 Info Copied trupornolabs.yml +2023-03-15 17:53:44.6049 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml +2023-03-15 17:53:44.6049 Info Copied turkseed.yml +2023-03-15 17:53:44.6049 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml +2023-03-15 17:53:44.6060 Info Copied turktorrent.yml +2023-03-15 17:53:44.6060 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml +2023-03-15 17:53:44.6060 Info Copied tvchaosuk.yml +2023-03-15 17:53:44.6067 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml +2023-03-15 17:53:44.6067 Info Copied tvroad.yml +2023-03-15 17:53:44.6067 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml +2023-03-15 17:53:44.6067 Info Copied twilight.yml +2023-03-15 17:53:44.6078 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml +2023-03-15 17:53:44.6078 Info Copied u2.yml +2023-03-15 17:53:44.6078 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml +2023-03-15 17:53:44.6087 Info Copied uhdbits.yml +2023-03-15 17:53:44.6087 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml +2023-03-15 17:53:44.6087 Info Copied uniondht.yml +2023-03-15 17:53:44.6087 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml +2023-03-15 17:53:44.6098 Info Copied unionfansub.yml +2023-03-15 17:53:44.6098 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml +2023-03-15 17:53:44.6098 Info Copied uniongang.yml +2023-03-15 17:53:44.6098 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml +2023-03-15 17:53:44.6109 Info Copied unleashthecartoons.yml +2023-03-15 17:53:44.6109 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml +2023-03-15 17:53:44.6109 Info Copied unlimitz.yml +2023-03-15 17:53:44.6109 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml +2023-03-15 17:53:44.6120 Info Copied vsthouse.yml +2023-03-15 17:53:44.6120 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml +2023-03-15 17:53:44.6120 Info Copied vsttorrents.yml +2023-03-15 17:53:44.6127 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml +2023-03-15 17:53:44.6127 Info Copied vtorrent.yml +2023-03-15 17:53:44.6127 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml +2023-03-15 17:53:44.6127 Info Copied whiteangel.yml +2023-03-15 17:53:44.6138 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml +2023-03-15 17:53:44.6138 Info Copied wihd.yml +2023-03-15 17:53:44.6138 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml +2023-03-15 17:53:44.6147 Info Copied world-of-tomorrow.yml +2023-03-15 17:53:44.6147 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml +2023-03-15 17:53:44.6147 Info Copied x-ite.me.yml +2023-03-15 17:53:44.6147 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml +2023-03-15 17:53:44.6158 Info Copied xbytes2.yml +2023-03-15 17:53:44.6158 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml +2023-03-15 17:53:44.6158 Info Copied xthor-api.yml +2023-03-15 17:53:44.6158 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml +2023-03-15 17:53:44.6168 Info Copied xtorrenty.yml +2023-03-15 17:53:44.6168 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml +2023-03-15 17:53:44.6168 Info Copied xtremebytes.yml +2023-03-15 17:53:44.6168 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml +2023-03-15 17:53:44.6180 Info Copied xwtclassics.yml +2023-03-15 17:53:44.6180 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml +2023-03-15 17:53:44.6180 Info Copied xwtorrents.yml +2023-03-15 17:53:44.6187 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml +2023-03-15 17:53:44.6187 Info Copied xxxadulttorrent.yml +2023-03-15 17:53:44.6187 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml +2023-03-15 17:53:44.6187 Info Copied xxxtor.yml +2023-03-15 17:53:44.6197 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml +2023-03-15 17:53:44.6197 Info Copied xxxtorrents.yml +2023-03-15 17:53:44.6197 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml +2023-03-15 17:53:44.6207 Info Copied ydypt.yml +2023-03-15 17:53:44.6207 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml +2023-03-15 17:53:44.6207 Info Copied yggcookie.yml +2023-03-15 17:53:44.6207 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml +2023-03-15 17:53:44.6218 Info Copied yggtorrent.yml +2023-03-15 17:53:44.6218 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml +2023-03-15 17:53:44.6218 Info Copied yourbittorrent.yml +2023-03-15 17:53:44.6218 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml +2023-03-15 17:53:44.6229 Info Copied yts.yml +2023-03-15 17:53:44.6229 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml +2023-03-15 17:53:44.6229 Info Copied zamundanet.yml +2023-03-15 17:53:44.6229 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml +2023-03-15 17:53:44.6296 Info Copied zelkaorg.yml +2023-03-15 17:53:44.6297 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml +2023-03-15 17:53:44.6297 Info Copied zetorrents.yml +2023-03-15 17:53:44.6297 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml +2023-03-15 17:53:44.6307 Info Copied zmpt.yml +2023-03-15 17:53:44.6307 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml +2023-03-15 17:53:44.6307 Info Copied zomb.yml +2023-03-15 17:53:44.6307 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml +2023-03-15 17:53:44.6318 Info Copied ztracker.yml +2023-03-15 17:53:44.6318 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll +2023-03-15 17:53:44.6318 Info Copied FlareSolverrSharp.dll +2023-03-15 17:53:44.6318 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll +2023-03-15 17:53:44.6335 Info Copied ICSharpCode.SharpZipLib.dll +2023-03-15 17:53:44.6337 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh +2023-03-15 17:53:44.6337 Info Copied install_service_systemd.sh +2023-03-15 17:53:44.6337 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/jackett to destination: /app/Jackett/jackett +2023-03-15 17:53:44.6348 Info Copied jackett +2023-03-15 17:53:44.6348 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh +2023-03-15 17:53:44.6348 Info Copied jackett_launcher.sh +2023-03-15 17:53:44.6348 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll +2023-03-15 17:53:44.6397 Info Copied Jackett.Common.dll +2023-03-15 17:53:44.6397 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb +2023-03-15 17:53:44.6408 Info Copied Jackett.Common.pdb +2023-03-15 17:53:44.6408 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json +2023-03-15 17:53:44.6408 Info Copied jackett.deps.json +2023-03-15 17:53:44.6418 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll +2023-03-15 17:53:44.6429 Info Copied jackett.dll +2023-03-15 17:53:44.6429 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb +2023-03-15 17:53:44.6429 Info Copied jackett.pdb +2023-03-15 17:53:44.6437 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json +2023-03-15 17:53:44.6437 Info Copied jackett.runtimeconfig.json +2023-03-15 17:53:44.6437 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater +2023-03-15 17:53:44.6449 Info Copied JackettUpdater +2023-03-15 17:53:44.6449 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json +2023-03-15 17:53:44.6449 Info Copied JackettUpdater.deps.json +2023-03-15 17:53:44.6449 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll +2023-03-15 17:53:44.6466 Info Copied JackettUpdater.dll +2023-03-15 17:53:44.6468 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb +2023-03-15 17:53:44.6468 Info Copied JackettUpdater.pdb +2023-03-15 17:53:44.6468 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json +2023-03-15 17:53:44.6478 Info Copied JackettUpdater.runtimeconfig.json +2023-03-15 17:53:44.6478 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so +2023-03-15 17:53:44.6514 Info Copied libclrjit.so +2023-03-15 17:53:44.6516 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so +2023-03-15 17:53:44.6629 Info Copied libcoreclr.so +2023-03-15 17:53:44.6629 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so +2023-03-15 17:53:44.6648 Info Copied libcoreclrtraceptprovider.so +2023-03-15 17:53:44.6648 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so +2023-03-15 17:53:44.6672 Info Copied libdbgshim.so +2023-03-15 17:53:44.6672 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so +2023-03-15 17:53:44.6683 Info Copied libhostfxr.so +2023-03-15 17:53:44.6683 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so +2023-03-15 17:53:44.6695 Info Copied libhostpolicy.so +2023-03-15 17:53:44.6697 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so +2023-03-15 17:53:44.6697 Info Copied libMono.Unix.so +2023-03-15 17:53:44.6697 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so +2023-03-15 17:53:44.6750 Info Copied libmscordaccore.so +2023-03-15 17:53:44.6750 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so +2023-03-15 17:53:44.6783 Info Copied libmscordbi.so +2023-03-15 17:53:44.6783 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so +2023-03-15 17:53:44.6791 Info Copied libSystem.Globalization.Native.so +2023-03-15 17:53:44.6791 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so +2023-03-15 17:53:44.6810 Info Copied libSystem.IO.Compression.Native.so +2023-03-15 17:53:44.6810 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so +2023-03-15 17:53:44.6817 Info Copied libSystem.Native.so +2023-03-15 17:53:44.6817 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so +2023-03-15 17:53:44.6817 Info Copied libSystem.Net.Security.Native.so +2023-03-15 17:53:44.6817 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so +2023-03-15 17:53:44.6833 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so +2023-03-15 17:53:44.6833 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/LICENSE to destination: /app/Jackett/LICENSE +2023-03-15 17:53:44.6838 Info Copied LICENSE +2023-03-15 17:53:44.6838 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll +2023-03-15 17:53:44.6838 Info Copied Microsoft.AspNetCore.Antiforgery.dll +2023-03-15 17:53:44.6847 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-03-15 17:53:44.6847 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-03-15 17:53:44.6847 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll +2023-03-15 17:53:44.6860 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll +2023-03-15 17:53:44.6860 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll +2023-03-15 17:53:44.6876 Info Copied Microsoft.AspNetCore.Authentication.Core.dll +2023-03-15 17:53:44.6876 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll +2023-03-15 17:53:44.6876 Info Copied Microsoft.AspNetCore.Authentication.dll +2023-03-15 17:53:44.6876 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll +2023-03-15 17:53:44.6893 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll +2023-03-15 17:53:44.6893 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll +2023-03-15 17:53:44.6900 Info Copied Microsoft.AspNetCore.Authorization.dll +2023-03-15 17:53:44.6900 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll +2023-03-15 17:53:44.6907 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll +2023-03-15 17:53:44.6907 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll +2023-03-15 17:53:44.6907 Info Copied Microsoft.AspNetCore.Components.Authorization.dll +2023-03-15 17:53:44.6907 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll +2023-03-15 17:53:44.6926 Info Copied Microsoft.AspNetCore.Components.dll +2023-03-15 17:53:44.6928 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll +2023-03-15 17:53:44.6928 Info Copied Microsoft.AspNetCore.Components.Forms.dll +2023-03-15 17:53:44.6928 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll +2023-03-15 17:53:44.6950 Info Copied Microsoft.AspNetCore.Components.Server.dll +2023-03-15 17:53:44.6950 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll +2023-03-15 17:53:44.6960 Info Copied Microsoft.AspNetCore.Components.Web.dll +2023-03-15 17:53:44.6960 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll +2023-03-15 17:53:44.6968 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll +2023-03-15 17:53:44.6968 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll +2023-03-15 17:53:44.6968 Info Copied Microsoft.AspNetCore.CookiePolicy.dll +2023-03-15 17:53:44.6968 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll +2023-03-15 17:53:44.6982 Info Copied Microsoft.AspNetCore.Cors.dll +2023-03-15 17:53:44.6982 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll +2023-03-15 17:53:44.6991 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll +2023-03-15 17:53:44.6991 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-03-15 17:53:44.6998 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-03-15 17:53:44.6998 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-03-15 17:53:44.6998 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-03-15 17:53:44.6998 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll +2023-03-15 17:53:44.7015 Info Copied Microsoft.AspNetCore.DataProtection.dll +2023-03-15 17:53:44.7017 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-03-15 17:53:44.7017 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-03-15 17:53:44.7017 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-03-15 17:53:44.7028 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-03-15 17:53:44.7028 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll +2023-03-15 17:53:44.7040 Info Copied Microsoft.AspNetCore.Diagnostics.dll +2023-03-15 17:53:44.7040 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-03-15 17:53:44.7040 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-03-15 17:53:44.7047 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll +2023-03-15 17:53:44.7047 Info Copied Microsoft.AspNetCore.dll +2023-03-15 17:53:44.7047 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll +2023-03-15 17:53:44.7060 Info Copied Microsoft.AspNetCore.HostFiltering.dll +2023-03-15 17:53:44.7060 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-03-15 17:53:44.7060 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-03-15 17:53:44.7068 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll +2023-03-15 17:53:44.7079 Info Copied Microsoft.AspNetCore.Hosting.dll +2023-03-15 17:53:44.7079 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-03-15 17:53:44.7079 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-03-15 17:53:44.7086 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll +2023-03-15 17:53:44.7086 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll +2023-03-15 17:53:44.7086 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll +2023-03-15 17:53:44.7108 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll +2023-03-15 17:53:44.7108 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll +2023-03-15 17:53:44.7108 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll +2023-03-15 17:53:44.7108 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll +2023-03-15 17:53:44.7124 Info Copied Microsoft.AspNetCore.Http.Connections.dll +2023-03-15 17:53:44.7124 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll +2023-03-15 17:53:44.7134 Info Copied Microsoft.AspNetCore.Http.dll +2023-03-15 17:53:44.7134 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll +2023-03-15 17:53:44.7145 Info Copied Microsoft.AspNetCore.Http.Extensions.dll +2023-03-15 17:53:44.7147 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll +2023-03-15 17:53:44.7147 Info Copied Microsoft.AspNetCore.Http.Features.dll +2023-03-15 17:53:44.7147 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll +2023-03-15 17:53:44.7160 Info Copied Microsoft.AspNetCore.Http.Results.dll +2023-03-15 17:53:44.7160 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll +2023-03-15 17:53:44.7168 Info Copied Microsoft.AspNetCore.HttpLogging.dll +2023-03-15 17:53:44.7168 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll +2023-03-15 17:53:44.7168 Info Copied Microsoft.AspNetCore.HttpOverrides.dll +2023-03-15 17:53:44.7177 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll +2023-03-15 17:53:44.7177 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll +2023-03-15 17:53:44.7177 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll +2023-03-15 17:53:44.7191 Info Copied Microsoft.AspNetCore.Identity.dll +2023-03-15 17:53:44.7191 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll +2023-03-15 17:53:44.7197 Info Copied Microsoft.AspNetCore.JsonPatch.dll +2023-03-15 17:53:44.7197 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll +2023-03-15 17:53:44.7197 Info Copied Microsoft.AspNetCore.Localization.dll +2023-03-15 17:53:44.7197 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll +2023-03-15 17:53:44.7209 Info Copied Microsoft.AspNetCore.Localization.Routing.dll +2023-03-15 17:53:44.7209 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll +2023-03-15 17:53:44.7209 Info Copied Microsoft.AspNetCore.Metadata.dll +2023-03-15 17:53:44.7209 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-03-15 17:53:44.7224 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-03-15 17:53:44.7224 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-03-15 17:53:44.7232 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-03-15 17:53:44.7232 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll +2023-03-15 17:53:44.7268 Info Copied Microsoft.AspNetCore.Mvc.Core.dll +2023-03-15 17:53:44.7268 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll +2023-03-15 17:53:44.7268 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll +2023-03-15 17:53:44.7268 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-03-15 17:53:44.7283 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-03-15 17:53:44.7283 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll +2023-03-15 17:53:44.7289 Info Copied Microsoft.AspNetCore.Mvc.dll +2023-03-15 17:53:44.7289 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-03-15 17:53:44.7289 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-03-15 17:53:44.7298 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-03-15 17:53:44.7298 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-03-15 17:53:44.7298 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll +2023-03-15 17:53:44.7311 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll +2023-03-15 17:53:44.7311 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-03-15 17:53:44.7319 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-03-15 17:53:44.7319 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll +2023-03-15 17:53:44.7329 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll +2023-03-15 17:53:44.7329 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-03-15 17:53:44.7342 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-03-15 17:53:44.7342 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-03-15 17:53:44.7359 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-03-15 17:53:44.7359 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-03-15 17:53:44.7384 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-03-15 17:53:44.7386 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll +2023-03-15 17:53:44.7386 Info Copied Microsoft.AspNetCore.Razor.dll +2023-03-15 17:53:44.7386 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll +2023-03-15 17:53:44.7398 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll +2023-03-15 17:53:44.7398 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-03-15 17:53:44.7398 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-03-15 17:53:44.7398 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll +2023-03-15 17:53:44.7412 Info Copied Microsoft.AspNetCore.ResponseCaching.dll +2023-03-15 17:53:44.7412 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll +2023-03-15 17:53:44.7419 Info Copied Microsoft.AspNetCore.ResponseCompression.dll +2023-03-15 17:53:44.7419 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll +2023-03-15 17:53:44.7428 Info Copied Microsoft.AspNetCore.Rewrite.dll +2023-03-15 17:53:44.7428 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll +2023-03-15 17:53:44.7442 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll +2023-03-15 17:53:44.7442 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll +2023-03-15 17:53:44.7459 Info Copied Microsoft.AspNetCore.Routing.dll +2023-03-15 17:53:44.7459 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll +2023-03-15 17:53:44.7473 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll +2023-03-15 17:53:44.7473 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll +2023-03-15 17:53:44.7489 Info Copied Microsoft.AspNetCore.Server.IIS.dll +2023-03-15 17:53:44.7489 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll +2023-03-15 17:53:44.7502 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll +2023-03-15 17:53:44.7502 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-03-15 17:53:44.7539 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-03-15 17:53:44.7539 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll +2023-03-15 17:53:44.7539 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll +2023-03-15 17:53:44.7547 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-03-15 17:53:44.7547 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-03-15 17:53:44.7547 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-03-15 17:53:44.7563 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-03-15 17:53:44.7563 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll +2023-03-15 17:53:44.7570 Info Copied Microsoft.AspNetCore.Session.dll +2023-03-15 17:53:44.7570 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll +2023-03-15 17:53:44.7578 Info Copied Microsoft.AspNetCore.SignalR.Common.dll +2023-03-15 17:53:44.7578 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll +2023-03-15 17:53:44.7590 Info Copied Microsoft.AspNetCore.SignalR.Core.dll +2023-03-15 17:53:44.7590 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll +2023-03-15 17:53:44.7590 Info Copied Microsoft.AspNetCore.SignalR.dll +2023-03-15 17:53:44.7597 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-03-15 17:53:44.7597 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-03-15 17:53:44.7597 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll +2023-03-15 17:53:44.7611 Info Copied Microsoft.AspNetCore.StaticFiles.dll +2023-03-15 17:53:44.7611 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll +2023-03-15 17:53:44.7617 Info Copied Microsoft.AspNetCore.WebSockets.dll +2023-03-15 17:53:44.7617 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll +2023-03-15 17:53:44.7617 Info Copied Microsoft.AspNetCore.WebUtilities.dll +2023-03-15 17:53:44.7628 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll +2023-03-15 17:53:44.7658 Info Copied Microsoft.CSharp.dll +2023-03-15 17:53:44.7658 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll +2023-03-15 17:53:44.7658 Info Copied Microsoft.Extensions.Caching.Abstractions.dll +2023-03-15 17:53:44.7667 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll +2023-03-15 17:53:44.7667 Info Copied Microsoft.Extensions.Caching.Memory.dll +2023-03-15 17:53:44.7667 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll +2023-03-15 17:53:44.7678 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll +2023-03-15 17:53:44.7678 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll +2023-03-15 17:53:44.7678 Info Copied Microsoft.Extensions.Configuration.Binder.dll +2023-03-15 17:53:44.7678 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll +2023-03-15 17:53:44.7690 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll +2023-03-15 17:53:44.7690 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll +2023-03-15 17:53:44.7697 Info Copied Microsoft.Extensions.Configuration.dll +2023-03-15 17:53:44.7697 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-03-15 17:53:44.7697 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-03-15 17:53:44.7697 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll +2023-03-15 17:53:44.7710 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll +2023-03-15 17:53:44.7710 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll +2023-03-15 17:53:44.7710 Info Copied Microsoft.Extensions.Configuration.Ini.dll +2023-03-15 17:53:44.7717 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll +2023-03-15 17:53:44.7717 Info Copied Microsoft.Extensions.Configuration.Json.dll +2023-03-15 17:53:44.7717 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-03-15 17:53:44.7728 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-03-15 17:53:44.7728 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll +2023-03-15 17:53:44.7728 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll +2023-03-15 17:53:44.7728 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll +2023-03-15 17:53:44.7740 Info Copied Microsoft.Extensions.Configuration.Xml.dll +2023-03-15 17:53:44.7740 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-03-15 17:53:44.8186 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-03-15 17:53:44.8188 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll +2023-03-15 17:53:44.8188 Info Copied Microsoft.Extensions.DependencyInjection.dll +2023-03-15 17:53:44.8198 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-03-15 17:53:44.8198 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-03-15 17:53:44.8198 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-03-15 17:53:44.8210 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-03-15 17:53:44.8210 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll +2023-03-15 17:53:44.8216 Info Copied Microsoft.Extensions.Features.dll +2023-03-15 17:53:44.8216 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll +2023-03-15 17:53:44.8216 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll +2023-03-15 17:53:44.8216 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll +2023-03-15 17:53:44.8228 Info Copied Microsoft.Extensions.FileProviders.Composite.dll +2023-03-15 17:53:44.8228 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll +2023-03-15 17:53:44.8228 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll +2023-03-15 17:53:44.8228 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll +2023-03-15 17:53:44.8242 Info Copied Microsoft.Extensions.FileProviders.Physical.dll +2023-03-15 17:53:44.8242 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll +2023-03-15 17:53:44.8249 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll +2023-03-15 17:53:44.8249 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll +2023-03-15 17:53:44.8257 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll +2023-03-15 17:53:44.8257 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll +2023-03-15 17:53:44.8257 Info Copied Microsoft.Extensions.Hosting.dll +2023-03-15 17:53:44.8267 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll +2023-03-15 17:53:44.8267 Info Copied Microsoft.Extensions.Http.dll +2023-03-15 17:53:44.8267 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll +2023-03-15 17:53:44.8294 Info Copied Microsoft.Extensions.Identity.Core.dll +2023-03-15 17:53:44.8294 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll +2023-03-15 17:53:44.8301 Info Copied Microsoft.Extensions.Identity.Stores.dll +2023-03-15 17:53:44.8301 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll +2023-03-15 17:53:44.8308 Info Copied Microsoft.Extensions.Localization.Abstractions.dll +2023-03-15 17:53:44.8308 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll +2023-03-15 17:53:44.8308 Info Copied Microsoft.Extensions.Localization.dll +2023-03-15 17:53:44.8308 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll +2023-03-15 17:53:44.8322 Info Copied Microsoft.Extensions.Logging.Abstractions.dll +2023-03-15 17:53:44.8322 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll +2023-03-15 17:53:44.8328 Info Copied Microsoft.Extensions.Logging.Configuration.dll +2023-03-15 17:53:44.8328 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll +2023-03-15 17:53:44.8328 Info Copied Microsoft.Extensions.Logging.Console.dll +2023-03-15 17:53:44.8337 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll +2023-03-15 17:53:44.8337 Info Copied Microsoft.Extensions.Logging.Debug.dll +2023-03-15 17:53:44.8337 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll +2023-03-15 17:53:44.8349 Info Copied Microsoft.Extensions.Logging.dll +2023-03-15 17:53:44.8349 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll +2023-03-15 17:53:44.8349 Info Copied Microsoft.Extensions.Logging.EventLog.dll +2023-03-15 17:53:44.8357 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll +2023-03-15 17:53:44.8357 Info Copied Microsoft.Extensions.Logging.EventSource.dll +2023-03-15 17:53:44.8357 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll +2023-03-15 17:53:44.8368 Info Copied Microsoft.Extensions.Logging.TraceSource.dll +2023-03-15 17:53:44.8368 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll +2023-03-15 17:53:44.8368 Info Copied Microsoft.Extensions.ObjectPool.dll +2023-03-15 17:53:44.8368 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-03-15 17:53:44.8381 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-03-15 17:53:44.8381 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll +2023-03-15 17:53:44.8387 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll +2023-03-15 17:53:44.8387 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll +2023-03-15 17:53:44.9400 Info Copied Microsoft.Extensions.Options.dll +2023-03-15 17:53:44.9400 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll +2023-03-15 17:53:44.9409 Info Copied Microsoft.Extensions.Primitives.dll +2023-03-15 17:53:44.9409 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll +2023-03-15 17:53:44.9409 Info Copied Microsoft.Extensions.WebEncoders.dll +2023-03-15 17:53:44.9417 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll +2023-03-15 17:53:44.9417 Info Copied Microsoft.JSInterop.dll +2023-03-15 17:53:44.9427 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll +2023-03-15 17:53:44.9427 Info Copied Microsoft.Net.Http.Headers.dll +2023-03-15 17:53:44.9437 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll +2023-03-15 17:53:44.9460 Info Copied Microsoft.VisualBasic.Core.dll +2023-03-15 17:53:44.9460 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll +2023-03-15 17:53:44.9466 Info Copied Microsoft.VisualBasic.dll +2023-03-15 17:53:44.9466 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll +2023-03-15 17:53:44.9466 Info Copied Microsoft.Win32.Primitives.dll +2023-03-15 17:53:44.9466 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll +2023-03-15 17:53:44.9479 Info Copied Microsoft.Win32.Registry.dll +2023-03-15 17:53:44.9479 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll +2023-03-15 17:53:44.9490 Info Copied MimeMapping.dll +2023-03-15 17:53:44.9490 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll +2023-03-15 17:53:44.9496 Info Copied Mono.Posix.dll +2023-03-15 17:53:44.9496 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll +2023-03-15 17:53:44.9496 Info Copied Mono.Unix.dll +2023-03-15 17:53:44.9507 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll +2023-03-15 17:53:44.9507 Info Copied mscorlib.dll +2023-03-15 17:53:44.9507 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll +2023-03-15 17:53:44.9519 Info Copied netstandard.dll +2023-03-15 17:53:44.9519 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll +2023-03-15 17:53:44.9526 Info Copied Newtonsoft.Json.Bson.dll +2023-03-15 17:53:44.9526 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll +2023-03-15 17:53:44.9541 Info Copied Newtonsoft.Json.dll +2023-03-15 17:53:44.9541 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll +2023-03-15 17:53:44.9557 Info Copied NLog.dll +2023-03-15 17:53:44.9557 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll +2023-03-15 17:53:44.9557 Info Copied NLog.Extensions.Logging.dll +2023-03-15 17:53:44.9557 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll +2023-03-15 17:53:44.9579 Info Copied NLog.Web.AspNetCore.dll +2023-03-15 17:53:44.9579 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll +2023-03-15 17:53:44.9579 Info Copied Org.Mentalis.dll +2023-03-15 17:53:44.9587 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll +2023-03-15 17:53:44.9587 Info Copied Polly.dll +2023-03-15 17:53:44.9597 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/README.md to destination: /app/Jackett/README.md +2023-03-15 17:53:44.9597 Info Copied README.md +2023-03-15 17:53:44.9597 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll +2023-03-15 17:53:45.1300 Info Copied SocksWebProxy.dll +2023-03-15 17:53:45.1307 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll +2023-03-15 17:53:45.1320 Info Copied System.AppContext.dll +2023-03-15 17:53:45.1320 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll +2023-03-15 17:53:45.1334 Info Copied System.Buffers.dll +2023-03-15 17:53:45.1338 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll +2023-03-15 17:53:45.1369 Info Copied System.Collections.Concurrent.dll +2023-03-15 17:53:45.1369 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll +2023-03-15 17:53:45.1394 Info Copied System.Collections.dll +2023-03-15 17:53:45.1398 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll +2023-03-15 17:53:45.1431 Info Copied System.Collections.Immutable.dll +2023-03-15 17:53:45.1431 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll +2023-03-15 17:53:45.1450 Info Copied System.Collections.NonGeneric.dll +2023-03-15 17:53:45.1450 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll +2023-03-15 17:53:45.1470 Info Copied System.Collections.Specialized.dll +2023-03-15 17:53:45.1470 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll +2023-03-15 17:53:45.1493 Info Copied System.ComponentModel.Annotations.dll +2023-03-15 17:53:45.1497 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll +2023-03-15 17:53:45.1875 Info Copied System.ComponentModel.DataAnnotations.dll +2023-03-15 17:53:45.1931 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll +2023-03-15 17:53:45.1941 Info Copied System.ComponentModel.dll +2023-03-15 17:53:45.1941 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll +2023-03-15 17:53:45.1955 Info Copied System.ComponentModel.EventBasedAsync.dll +2023-03-15 17:53:45.1959 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll +2023-03-15 17:53:45.1973 Info Copied System.ComponentModel.Primitives.dll +2023-03-15 17:53:45.1973 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll +2023-03-15 17:53:45.2011 Info Copied System.ComponentModel.TypeConverter.dll +2023-03-15 17:53:45.2011 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll +2023-03-15 17:53:45.2024 Info Copied System.Configuration.dll +2023-03-15 17:53:45.2028 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll +2023-03-15 17:53:45.2046 Info Copied System.Console.dll +2023-03-15 17:53:45.2050 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll +2023-03-15 17:53:45.2060 Info Copied System.Core.dll +2023-03-15 17:53:45.2060 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll +2023-03-15 17:53:45.2347 Info Copied System.Data.Common.dll +2023-03-15 17:53:45.2347 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll +2023-03-15 17:53:45.2362 Info Copied System.Data.DataSetExtensions.dll +2023-03-15 17:53:45.2362 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll +2023-03-15 17:53:45.2377 Info Copied System.Data.dll +2023-03-15 17:53:45.2377 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll +2023-03-15 17:53:45.2391 Info Copied System.Diagnostics.Contracts.dll +2023-03-15 17:53:45.2391 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll +2023-03-15 17:53:45.2404 Info Copied System.Diagnostics.Debug.dll +2023-03-15 17:53:45.2407 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll +2023-03-15 17:53:45.2443 Info Copied System.Diagnostics.DiagnosticSource.dll +2023-03-15 17:53:45.2447 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll +2023-03-15 17:53:45.2459 Info Copied System.Diagnostics.EventLog.dll +2023-03-15 17:53:45.2459 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll +2023-03-15 17:53:45.2475 Info Copied System.Diagnostics.FileVersionInfo.dll +2023-03-15 17:53:45.2479 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll +2023-03-15 17:53:45.2497 Info Copied System.Diagnostics.Process.dll +2023-03-15 17:53:45.2497 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll +2023-03-15 17:53:45.2512 Info Copied System.Diagnostics.StackTrace.dll +2023-03-15 17:53:45.2512 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll +2023-03-15 17:53:45.2526 Info Copied System.Diagnostics.TextWriterTraceListener.dll +2023-03-15 17:53:45.2530 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll +2023-03-15 17:53:45.2608 Info Copied System.Diagnostics.Tools.dll +2023-03-15 17:53:45.2608 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll +2023-03-15 17:53:45.2628 Info Copied System.Diagnostics.TraceSource.dll +2023-03-15 17:53:45.2628 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll +2023-03-15 17:53:45.2641 Info Copied System.Diagnostics.Tracing.dll +2023-03-15 17:53:45.2641 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.dll to destination: /app/Jackett/System.dll +2023-03-15 17:53:45.2656 Info Copied System.dll +2023-03-15 17:53:45.2660 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll +2023-03-15 17:53:45.2670 Info Copied System.Drawing.dll +2023-03-15 17:53:45.2670 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll +2023-03-15 17:53:45.2687 Info Copied System.Drawing.Primitives.dll +2023-03-15 17:53:45.2687 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll +2023-03-15 17:53:45.2700 Info Copied System.Dynamic.Runtime.dll +2023-03-15 17:53:45.2700 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll +2023-03-15 17:53:45.2719 Info Copied System.Formats.Asn1.dll +2023-03-15 17:53:45.2719 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll +2023-03-15 17:53:45.2732 Info Copied System.Globalization.Calendars.dll +2023-03-15 17:53:45.2732 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll +2023-03-15 17:53:45.2745 Info Copied System.Globalization.dll +2023-03-15 17:53:45.2749 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll +2023-03-15 17:53:45.2759 Info Copied System.Globalization.Extensions.dll +2023-03-15 17:53:45.2759 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll +2023-03-15 17:53:45.2777 Info Copied System.IO.Compression.Brotli.dll +2023-03-15 17:53:45.2777 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll +2023-03-15 17:53:45.2799 Info Copied System.IO.Compression.dll +2023-03-15 17:53:45.2799 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll +2023-03-15 17:53:45.2812 Info Copied System.IO.Compression.FileSystem.dll +2023-03-15 17:53:45.2812 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll +2023-03-15 17:53:45.2827 Info Copied System.IO.Compression.ZipFile.dll +2023-03-15 17:53:45.2827 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll +2023-03-15 17:53:45.2841 Info Copied System.IO.dll +2023-03-15 17:53:45.2841 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll +2023-03-15 17:53:45.2854 Info Copied System.IO.FileSystem.AccessControl.dll +2023-03-15 17:53:45.2858 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll +2023-03-15 17:53:45.2867 Info Copied System.IO.FileSystem.dll +2023-03-15 17:53:45.2867 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll +2023-03-15 17:53:45.3545 Info Copied System.IO.FileSystem.DriveInfo.dll +2023-03-15 17:53:45.3551 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll +2023-03-15 17:53:45.3562 Info Copied System.IO.FileSystem.Primitives.dll +2023-03-15 17:53:45.3562 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll +2023-03-15 17:53:45.3580 Info Copied System.IO.FileSystem.Watcher.dll +2023-03-15 17:53:45.3580 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll +2023-03-15 17:53:45.3598 Info Copied System.IO.IsolatedStorage.dll +2023-03-15 17:53:45.3598 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll +2023-03-15 17:53:45.3614 Info Copied System.IO.MemoryMappedFiles.dll +2023-03-15 17:53:45.3618 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll +2023-03-15 17:53:45.3634 Info Copied System.IO.Pipelines.dll +2023-03-15 17:53:45.3638 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll +2023-03-15 17:53:45.3647 Info Copied System.IO.Pipes.AccessControl.dll +2023-03-15 17:53:45.3647 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll +2023-03-15 17:53:45.3664 Info Copied System.IO.Pipes.dll +2023-03-15 17:53:45.3668 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll +2023-03-15 17:53:45.3678 Info Copied System.IO.UnmanagedMemoryStream.dll +2023-03-15 17:53:45.3678 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll +2023-03-15 17:53:45.3708 Info Copied System.Linq.dll +2023-03-15 17:53:45.3708 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll +2023-03-15 17:53:45.4257 Info Copied System.Linq.Expressions.dll +2023-03-15 17:53:45.4257 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll +2023-03-15 17:53:45.4304 Info Copied System.Linq.Parallel.dll +2023-03-15 17:53:45.4309 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll +2023-03-15 17:53:45.4328 Info Copied System.Linq.Queryable.dll +2023-03-15 17:53:45.4328 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll +2023-03-15 17:53:45.4350 Info Copied System.Memory.dll +2023-03-15 17:53:45.4350 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll +2023-03-15 17:53:45.4363 Info Copied System.Net.dll +2023-03-15 17:53:45.4368 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll +2023-03-15 17:53:45.4431 Info Copied System.Net.Http.dll +2023-03-15 17:53:45.4431 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll +2023-03-15 17:53:45.5280 Info Copied System.Net.Http.Json.dll +2023-03-15 17:53:45.5280 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll +2023-03-15 17:53:45.5309 Info Copied System.Net.HttpListener.dll +2023-03-15 17:53:45.5309 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll +2023-03-15 17:53:45.5341 Info Copied System.Net.Mail.dll +2023-03-15 17:53:45.5341 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll +2023-03-15 17:53:45.5360 Info Copied System.Net.NameResolution.dll +2023-03-15 17:53:45.5360 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll +2023-03-15 17:53:45.5399 Info Copied System.Net.NetworkInformation.dll +2023-03-15 17:53:45.5399 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll +2023-03-15 17:53:45.5419 Info Copied System.Net.Ping.dll +2023-03-15 17:53:45.5419 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll +2023-03-15 17:53:45.5439 Info Copied System.Net.Primitives.dll +2023-03-15 17:53:45.5439 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll +2023-03-15 17:53:45.5463 Info Copied System.Net.Quic.dll +2023-03-15 17:53:45.5467 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll +2023-03-15 17:53:45.5751 Info Copied System.Net.Requests.dll +2023-03-15 17:53:45.5759 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll +2023-03-15 17:53:45.5830 Info Copied System.Net.Security.dll +2023-03-15 17:53:45.5838 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll +2023-03-15 17:53:45.5859 Info Copied System.Net.ServicePoint.dll +2023-03-15 17:53:45.5859 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll +2023-03-15 17:53:45.5910 Info Copied System.Net.Sockets.dll +2023-03-15 17:53:45.5910 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll +2023-03-15 17:53:45.5943 Info Copied System.Net.WebClient.dll +2023-03-15 17:53:45.5949 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll +2023-03-15 17:53:45.6300 Info Copied System.Net.WebHeaderCollection.dll +2023-03-15 17:53:45.6307 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll +2023-03-15 17:53:45.6320 Info Copied System.Net.WebProxy.dll +2023-03-15 17:53:45.6320 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll +2023-03-15 17:53:45.6339 Info Copied System.Net.WebSockets.Client.dll +2023-03-15 17:53:45.6339 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll +2023-03-15 17:53:45.6358 Info Copied System.Net.WebSockets.dll +2023-03-15 17:53:45.6358 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll +2023-03-15 17:53:45.6371 Info Copied System.Numerics.dll +2023-03-15 17:53:45.6371 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll +2023-03-15 17:53:45.6384 Info Copied System.Numerics.Vectors.dll +2023-03-15 17:53:45.6388 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll +2023-03-15 17:53:45.6402 Info Copied System.ObjectModel.dll +2023-03-15 17:53:45.6402 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll +2023-03-15 17:53:45.6915 Info Copied System.Private.CoreLib.dll +2023-03-15 17:53:45.6923 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll +2023-03-15 17:53:45.8617 Info Copied System.Private.DataContractSerialization.dll +2023-03-15 17:53:45.8630 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll +2023-03-15 17:53:45.8669 Info Copied System.Private.Uri.dll +2023-03-15 17:53:45.8681 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll +2023-03-15 17:53:45.9233 Info Copied System.Private.Xml.dll +2023-03-15 17:53:45.9239 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll +2023-03-15 17:53:45.9269 Info Copied System.Private.Xml.Linq.dll +2023-03-15 17:53:45.9269 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll +2023-03-15 17:53:45.9288 Info Copied System.Reflection.DispatchProxy.dll +2023-03-15 17:53:45.9288 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll +2023-03-15 17:53:45.9302 Info Copied System.Reflection.dll +2023-03-15 17:53:45.9302 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll +2023-03-15 17:53:45.9316 Info Copied System.Reflection.Emit.dll +2023-03-15 17:53:45.9319 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll +2023-03-15 17:53:45.9329 Info Copied System.Reflection.Emit.ILGeneration.dll +2023-03-15 17:53:45.9329 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll +2023-03-15 17:53:45.9343 Info Copied System.Reflection.Emit.Lightweight.dll +2023-03-15 17:53:45.9347 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll +2023-03-15 17:53:45.9347 Info Copied System.Reflection.Extensions.dll +2023-03-15 17:53:45.9359 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll +2023-03-15 17:53:45.9440 Info Copied System.Reflection.Metadata.dll +2023-03-15 17:53:45.9440 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll +2023-03-15 17:53:45.9458 Info Copied System.Reflection.Primitives.dll +2023-03-15 17:53:45.9458 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll +2023-03-15 17:53:45.9472 Info Copied System.Reflection.TypeExtensions.dll +2023-03-15 17:53:45.9472 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll +2023-03-15 17:53:45.9485 Info Copied System.Resources.Reader.dll +2023-03-15 17:53:45.9489 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll +2023-03-15 17:53:45.9499 Info Copied System.Resources.ResourceManager.dll +2023-03-15 17:53:45.9499 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll +2023-03-15 17:53:45.9515 Info Copied System.Resources.Writer.dll +2023-03-15 17:53:45.9518 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll +2023-03-15 17:53:45.9529 Info Copied System.Runtime.CompilerServices.Unsafe.dll +2023-03-15 17:53:45.9529 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll +2023-03-15 17:53:45.9541 Info Copied System.Runtime.CompilerServices.VisualC.dll +2023-03-15 17:53:45.9541 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll +2023-03-15 17:53:45.9555 Info Copied System.Runtime.dll +2023-03-15 17:53:45.9558 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll +2023-03-15 17:53:45.9567 Info Copied System.Runtime.Extensions.dll +2023-03-15 17:53:45.9567 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll +2023-03-15 17:53:45.9579 Info Copied System.Runtime.Handles.dll +2023-03-15 17:53:45.9579 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll +2023-03-15 17:53:45.9594 Info Copied System.Runtime.InteropServices.dll +2023-03-15 17:53:45.9597 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll +2023-03-15 17:53:45.9608 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll +2023-03-15 17:53:45.9608 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll +2023-03-15 17:53:45.9620 Info Copied System.Runtime.Intrinsics.dll +2023-03-15 17:53:45.9620 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll +2023-03-15 17:53:45.9633 Info Copied System.Runtime.Loader.dll +2023-03-15 17:53:45.9637 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll +2023-03-15 17:53:45.9655 Info Copied System.Runtime.Numerics.dll +2023-03-15 17:53:45.9659 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll +2023-03-15 17:53:45.9669 Info Copied System.Runtime.Serialization.dll +2023-03-15 17:53:45.9669 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll +2023-03-15 17:53:45.9693 Info Copied System.Runtime.Serialization.Formatters.dll +2023-03-15 17:53:45.9698 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll +2023-03-15 17:53:46.0171 Info Copied System.Runtime.Serialization.Json.dll +2023-03-15 17:53:46.0177 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll +2023-03-15 17:53:46.0194 Info Copied System.Runtime.Serialization.Primitives.dll +2023-03-15 17:53:46.0198 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll +2023-03-15 17:53:46.0213 Info Copied System.Runtime.Serialization.Xml.dll +2023-03-15 17:53:46.0217 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll +2023-03-15 17:53:46.0234 Info Copied System.Security.AccessControl.dll +2023-03-15 17:53:46.0238 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll +2023-03-15 17:53:46.0259 Info Copied System.Security.Claims.dll +2023-03-15 17:53:46.0259 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll +2023-03-15 17:53:46.0309 Info Copied System.Security.Cryptography.Algorithms.dll +2023-03-15 17:53:46.0309 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll +2023-03-15 17:53:46.0330 Info Copied System.Security.Cryptography.Cng.dll +2023-03-15 17:53:46.0330 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll +2023-03-15 17:53:46.0354 Info Copied System.Security.Cryptography.Csp.dll +2023-03-15 17:53:46.0358 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll +2023-03-15 17:53:46.0378 Info Copied System.Security.Cryptography.Encoding.dll +2023-03-15 17:53:46.0378 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll +2023-03-15 17:53:46.0405 Info Copied System.Security.Cryptography.OpenSsl.dll +2023-03-15 17:53:46.0410 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll +2023-03-15 17:53:46.0469 Info Copied System.Security.Cryptography.Pkcs.dll +2023-03-15 17:53:46.0469 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll +2023-03-15 17:53:46.0495 Info Copied System.Security.Cryptography.Primitives.dll +2023-03-15 17:53:46.0500 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll +2023-03-15 17:53:46.0514 Info Copied System.Security.Cryptography.ProtectedData.dll +2023-03-15 17:53:46.0518 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll +2023-03-15 17:53:46.0561 Info Copied System.Security.Cryptography.X509Certificates.dll +2023-03-15 17:53:46.0561 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll +2023-03-15 17:53:46.0629 Info Copied System.Security.Cryptography.Xml.dll +2023-03-15 17:53:46.0629 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll +2023-03-15 17:53:46.0650 Info Copied System.Security.dll +2023-03-15 17:53:46.0650 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll +2023-03-15 17:53:46.0670 Info Copied System.Security.Principal.dll +2023-03-15 17:53:46.0670 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll +2023-03-15 17:53:46.0691 Info Copied System.Security.Principal.Windows.dll +2023-03-15 17:53:46.0691 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll +2023-03-15 17:53:46.0709 Info Copied System.Security.SecureString.dll +2023-03-15 17:53:46.0709 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll +2023-03-15 17:53:46.0728 Info Copied System.ServiceModel.Web.dll +2023-03-15 17:53:46.0728 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll +2023-03-15 17:53:46.0747 Info Copied System.ServiceProcess.dll +2023-03-15 17:53:46.0747 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll +2023-03-15 17:53:46.0765 Info Copied System.ServiceProcess.ServiceController.dll +2023-03-15 17:53:46.0770 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll +2023-03-15 17:53:46.0931 Info Copied System.Text.Encoding.CodePages.dll +2023-03-15 17:53:46.0938 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll +2023-03-15 17:53:46.0953 Info Copied System.Text.Encoding.dll +2023-03-15 17:53:46.0959 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll +2023-03-15 17:53:46.0973 Info Copied System.Text.Encoding.Extensions.dll +2023-03-15 17:53:46.0979 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll +2023-03-15 17:53:46.1004 Info Copied System.Text.Encodings.Web.dll +2023-03-15 17:53:46.1009 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll +2023-03-15 17:53:46.1253 Info Copied System.Text.Json.dll +2023-03-15 17:53:46.1261 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll +2023-03-15 17:53:46.1311 Info Copied System.Text.RegularExpressions.dll +2023-03-15 17:53:46.1311 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll +2023-03-15 17:53:46.1332 Info Copied System.Threading.Channels.dll +2023-03-15 17:53:46.1332 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll +2023-03-15 17:53:46.1354 Info Copied System.Threading.dll +2023-03-15 17:53:46.1360 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll +2023-03-15 17:53:46.1375 Info Copied System.Threading.Overlapped.dll +2023-03-15 17:53:46.1380 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll +2023-03-15 17:53:46.1433 Info Copied System.Threading.Tasks.Dataflow.dll +2023-03-15 17:53:46.1439 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll +2023-03-15 17:53:46.1854 Info Copied System.Threading.Tasks.dll +2023-03-15 17:53:46.1860 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll +2023-03-15 17:53:46.1885 Info Copied System.Threading.Tasks.Extensions.dll +2023-03-15 17:53:46.1888 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll +2023-03-15 17:53:46.1910 Info Copied System.Threading.Tasks.Parallel.dll +2023-03-15 17:53:46.1910 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll +2023-03-15 17:53:46.1923 Info Copied System.Threading.Thread.dll +2023-03-15 17:53:46.1927 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll +2023-03-15 17:53:46.1937 Info Copied System.Threading.ThreadPool.dll +2023-03-15 17:53:46.1937 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll +2023-03-15 17:53:46.1949 Info Copied System.Threading.Timer.dll +2023-03-15 17:53:46.1949 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll +2023-03-15 17:53:46.1961 Info Copied System.Transactions.dll +2023-03-15 17:53:46.1961 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll +2023-03-15 17:53:46.1987 Info Copied System.Transactions.Local.dll +2023-03-15 17:53:46.1987 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll +2023-03-15 17:53:46.2000 Info Copied System.ValueTuple.dll +2023-03-15 17:53:46.2000 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll +2023-03-15 17:53:46.2012 Info Copied System.Web.dll +2023-03-15 17:53:46.2012 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll +2023-03-15 17:53:46.2026 Info Copied System.Web.HttpUtility.dll +2023-03-15 17:53:46.2029 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll +2023-03-15 17:53:46.2038 Info Copied System.Windows.dll +2023-03-15 17:53:46.2038 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll +2023-03-15 17:53:46.2050 Info Copied System.Xml.dll +2023-03-15 17:53:46.2050 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll +2023-03-15 17:53:46.2062 Info Copied System.Xml.Linq.dll +2023-03-15 17:53:46.2062 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll +2023-03-15 17:53:46.2075 Info Copied System.Xml.ReaderWriter.dll +2023-03-15 17:53:46.2078 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll +2023-03-15 17:53:46.2087 Info Copied System.Xml.Serialization.dll +2023-03-15 17:53:46.2087 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll +2023-03-15 17:53:46.2099 Info Copied System.Xml.XDocument.dll +2023-03-15 17:53:46.2099 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll +2023-03-15 17:53:46.2111 Info Copied System.Xml.XmlDocument.dll +2023-03-15 17:53:46.2111 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll +2023-03-15 17:53:46.2122 Info Copied System.Xml.XmlSerializer.dll +2023-03-15 17:53:46.2122 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll +2023-03-15 17:53:46.2134 Info Copied System.Xml.XPath.dll +2023-03-15 17:53:46.2137 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll +2023-03-15 17:53:46.2137 Info Copied System.Xml.XPath.XDocument.dll +2023-03-15 17:53:46.2149 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll +2023-03-15 17:53:46.2160 Info Copied WindowsBase.dll +2023-03-15 17:53:46.2160 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll +2023-03-15 17:53:46.2183 Info Copied YamlDotNet.dll +2023-03-15 17:53:46.2187 Info File copying complete +2023-03-15 17:53:46.2213 Info Deleting file /app/Jackett/Definitions/cloudtorrents.yml +2023-03-15 17:53:46.2280 Info Deleting file /app/Jackett/Definitions/pornforall.yml +2023-03-15 17:53:46.2290 Info Deleting file /app/Jackett/Definitions/pornleech.yml +2023-03-15 17:53:46.2351 Info Deleting file /app/Jackett/Definitions/woot.yml +2023-03-15 17:53:46.2672 Info Killing process 135 +2023-03-15 17:53:49.3484 Info Process 135 didn't exit within 2 seconds after a SIGTERM +2023-03-16 18:54:01.7299 Info Jackett Updater v0.20.3609 +2023-03-16 18:54:01.8214 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "222" "--NoRestart" +2023-03-16 18:54:01.8249 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-16 18:54:02.0295 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb +2023-03-16 18:54:02.0302 Info Deleted /app/Jackett/DateTimeRoutines.pdb +2023-03-16 18:54:02.0302 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb +2023-03-16 18:54:02.0308 Info Deleted /app/Jackett/Jackett.Common.pdb +2023-03-16 18:54:02.0308 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb +2023-03-16 18:54:02.0308 Info Deleted /app/Jackett/JackettUpdater.pdb +2023-03-16 18:54:02.0308 Info Attempting to remove: /app/Jackett/jackett.pdb +2023-03-16 18:54:02.0319 Info Deleted /app/Jackett/jackett.pdb +2023-03-16 18:54:02.0319 Info Attempting to remove: /app/Jackett/jackett +2023-03-16 18:54:02.0319 Info Deleted /app/Jackett/jackett +2023-03-16 18:54:02.0319 Info Finding files in: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/ +2023-03-16 18:54:02.0379 Info 891 update files found +2023-03-16 18:54:02.0390 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll +2023-03-16 18:54:02.0436 Info Copied AngleSharp.dll +2023-03-16 18:54:02.0440 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll +2023-03-16 18:54:02.0447 Info Copied AngleSharp.Xml.dll +2023-03-16 18:54:02.0447 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll +2023-03-16 18:54:02.0460 Info Copied Autofac.dll +2023-03-16 18:54:02.0460 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll +2023-03-16 18:54:02.0469 Info Copied Autofac.Extensions.DependencyInjection.dll +2023-03-16 18:54:02.0469 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll +2023-03-16 18:54:02.0480 Info Copied AutoMapper.dll +2023-03-16 18:54:02.0480 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll +2023-03-16 18:54:02.0487 Info Copied BencodeNET.dll +2023-03-16 18:54:02.0487 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll +2023-03-16 18:54:02.0497 Info Copied CommandLine.dll +2023-03-16 18:54:02.0497 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css +2023-03-16 18:54:02.0497 Info Copied animate.css +2023-03-16 18:54:02.0507 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png +2023-03-16 18:54:02.0507 Info Copied apple-touch-icon.png +2023-03-16 18:54:02.0507 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png +2023-03-16 18:54:02.0518 Info Copied binding_dark.png +2023-03-16 18:54:02.0518 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css +2023-03-16 18:54:02.0527 Info Copied bootstrap.min.css +2023-03-16 18:54:02.0527 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js +2023-03-16 18:54:02.0527 Info Copied bootstrap.min.js +2023-03-16 18:54:02.0527 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js +2023-03-16 18:54:02.0541 Info Copied common.js +2023-03-16 18:54:02.0541 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css +2023-03-16 18:54:02.0547 Info Copied bootstrap-multiselect.css +2023-03-16 18:54:02.0547 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css +2023-03-16 18:54:02.0562 Info Copied font-awesome.min.css +2023-03-16 18:54:02.0562 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css +2023-03-16 18:54:02.0569 Info Copied jquery.dataTables.min.css +2023-03-16 18:54:02.0569 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css +2023-03-16 18:54:02.0569 Info Copied tagify.css +2023-03-16 18:54:02.0577 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css +2023-03-16 18:54:02.0577 Info Copied custom_mobile.css +2023-03-16 18:54:02.0577 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css +2023-03-16 18:54:02.0588 Info Copied custom.css +2023-03-16 18:54:02.0588 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js +2023-03-16 18:54:02.0588 Info Copied custom.js +2023-03-16 18:54:02.0597 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico +2023-03-16 18:54:02.0597 Info Copied favicon.ico +2023-03-16 18:54:02.0597 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot +2023-03-16 18:54:02.0611 Info Copied fontawesome-webfont.eot +2023-03-16 18:54:02.0611 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg +2023-03-16 18:54:02.0622 Info Copied fontawesome-webfont.svg +2023-03-16 18:54:02.0622 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf +2023-03-16 18:54:02.0631 Info Copied fontawesome-webfont.ttf +2023-03-16 18:54:02.0631 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff +2023-03-16 18:54:02.0647 Info Copied fontawesome-webfont.woff +2023-03-16 18:54:02.0647 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 +2023-03-16 18:54:02.0647 Info Copied fontawesome-webfont.woff2 +2023-03-16 18:54:02.0656 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf +2023-03-16 18:54:02.0656 Info Copied FontAwesome.otf +2023-03-16 18:54:02.0656 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot +2023-03-16 18:54:02.0671 Info Copied glyphicons-halflings-regular.eot +2023-03-16 18:54:02.0671 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg +2023-03-16 18:54:02.0679 Info Copied glyphicons-halflings-regular.svg +2023-03-16 18:54:02.0679 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf +2023-03-16 18:54:02.0686 Info Copied glyphicons-halflings-regular.ttf +2023-03-16 18:54:02.0686 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff +2023-03-16 18:54:02.0686 Info Copied glyphicons-halflings-regular.woff +2023-03-16 18:54:02.0686 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 +2023-03-16 18:54:02.0699 Info Copied glyphicons-halflings-regular.woff2 +2023-03-16 18:54:02.0699 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png +2023-03-16 18:54:02.0699 Info Copied sort_asc_disabled.png +2023-03-16 18:54:02.0707 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png +2023-03-16 18:54:02.0707 Info Copied sort_asc.png +2023-03-16 18:54:02.0707 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png +2023-03-16 18:54:02.0718 Info Copied sort_both.png +2023-03-16 18:54:02.0718 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png +2023-03-16 18:54:02.0718 Info Copied sort_desc_disabled.png +2023-03-16 18:54:02.0718 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png +2023-03-16 18:54:02.0730 Info Copied sort_desc.png +2023-03-16 18:54:02.0730 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html +2023-03-16 18:54:02.0737 Info Copied index.html +2023-03-16 18:54:02.0737 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png +2023-03-16 18:54:02.0737 Info Copied jacket_medium.png +2023-03-16 18:54:02.0737 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js +2023-03-16 18:54:02.0749 Info Copied api.js +2023-03-16 18:54:02.0749 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js +2023-03-16 18:54:02.0756 Info Copied bootstrap-multiselect.js +2023-03-16 18:54:02.0756 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js +2023-03-16 18:54:02.0756 Info Copied bootstrap-notify.js +2023-03-16 18:54:02.0756 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js +2023-03-16 18:54:02.0769 Info Copied filesize.min.js +2023-03-16 18:54:02.0769 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js +2023-03-16 18:54:02.0785 Info Copied handlebars.min.js +2023-03-16 18:54:02.0785 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js +2023-03-16 18:54:02.0785 Info Copied handlebarsextend.js +2023-03-16 18:54:02.0785 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js +2023-03-16 18:54:02.0797 Info Copied handlebarsmoment.js +2023-03-16 18:54:02.0797 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js +2023-03-16 18:54:02.0797 Info Copied jquery.dataTables.min.js +2023-03-16 18:54:02.0808 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js +2023-03-16 18:54:02.0808 Info Copied jquery.min.js +2023-03-16 18:54:02.0808 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js +2023-03-16 18:54:02.0822 Info Copied jQuery.tagify.min.js +2023-03-16 18:54:02.0822 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js +2023-03-16 18:54:02.0829 Info Copied moment.min.js +2023-03-16 18:54:02.0829 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js +2023-03-16 18:54:02.0837 Info Copied tagify.min.js +2023-03-16 18:54:02.0837 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html +2023-03-16 18:54:02.0837 Info Copied login.html +2023-03-16 18:54:02.0837 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/createdump to destination: /app/Jackett/createdump +2023-03-16 18:54:02.0852 Info Copied createdump +2023-03-16 18:54:02.0852 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll +2023-03-16 18:54:02.0866 Info Copied DateTimeRoutines.dll +2023-03-16 18:54:02.0866 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb +2023-03-16 18:54:02.0866 Info Copied DateTimeRoutines.pdb +2023-03-16 18:54:02.0866 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml +2023-03-16 18:54:02.0881 Info Copied 0daykiev.yml +2023-03-16 18:54:02.0881 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml +2023-03-16 18:54:02.0887 Info Copied 0magnet.yml +2023-03-16 18:54:02.0887 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml +2023-03-16 18:54:02.0887 Info Copied 1337x.yml +2023-03-16 18:54:02.0887 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml +2023-03-16 18:54:02.0900 Info Copied 1ptbar.yml +2023-03-16 18:54:02.0900 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml +2023-03-16 18:54:02.0907 Info Copied 2fast4you.yml +2023-03-16 18:54:02.0907 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml +2023-03-16 18:54:02.0907 Info Copied 2xfree.yml +2023-03-16 18:54:02.0907 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml +2023-03-16 18:54:02.0919 Info Copied 3changtrai.yml +2023-03-16 18:54:02.0919 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml +2023-03-16 18:54:02.0935 Info Copied 3dtorrents.yml +2023-03-16 18:54:02.0937 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml +2023-03-16 18:54:02.0937 Info Copied 4thd.yml +2023-03-16 18:54:02.0937 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml +2023-03-16 18:54:02.0948 Info Copied 52pt.yml +2023-03-16 18:54:02.0948 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml +2023-03-16 18:54:02.0948 Info Copied abnormal.yml +2023-03-16 18:54:02.0948 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml +2023-03-16 18:54:02.0961 Info Copied abtorrents.yml +2023-03-16 18:54:02.0961 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml +2023-03-16 18:54:02.0967 Info Copied acervos-api.yml +2023-03-16 18:54:02.0967 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml +2023-03-16 18:54:02.0967 Info Copied acgrip.yml +2023-03-16 18:54:02.0967 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml +2023-03-16 18:54:02.0979 Info Copied acgsou.yml +2023-03-16 18:54:02.0979 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml +2023-03-16 18:54:02.0979 Info Copied acidlounge.yml +2023-03-16 18:54:02.0987 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml +2023-03-16 18:54:02.0987 Info Copied acrossthetasman.yml +2023-03-16 18:54:02.0987 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml +2023-03-16 18:54:02.0998 Info Copied aftershock.yml +2023-03-16 18:54:02.0998 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml +2023-03-16 18:54:02.0998 Info Copied aidoruonline.yml +2023-03-16 18:54:02.0998 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml +2023-03-16 18:54:02.1011 Info Copied aither-api.yml +2023-03-16 18:54:02.1011 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml +2023-03-16 18:54:02.1017 Info Copied amigosshare.yml +2023-03-16 18:54:02.1017 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml +2023-03-16 18:54:02.1017 Info Copied anilibria.yml +2023-03-16 18:54:02.1017 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml +2023-03-16 18:54:02.1030 Info Copied anime-free.yml +2023-03-16 18:54:02.1030 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml +2023-03-16 18:54:02.1036 Info Copied animelayer.yml +2023-03-16 18:54:02.1036 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml +2023-03-16 18:54:02.1036 Info Copied animetracker.yml +2023-03-16 18:54:02.1036 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml +2023-03-16 18:54:02.1049 Info Copied animeworld-api.yml +2023-03-16 18:54:02.1049 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml +2023-03-16 18:54:02.1049 Info Copied anirena.yml +2023-03-16 18:54:02.1057 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml +2023-03-16 18:54:02.1057 Info Copied anisource.yml +2023-03-16 18:54:02.1057 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml +2023-03-16 18:54:02.1068 Info Copied anthelion-api.yml +2023-03-16 18:54:02.1068 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml +2023-03-16 18:54:02.1068 Info Copied arabafenice.yml +2023-03-16 18:54:02.1068 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml +2023-03-16 18:54:02.1080 Info Copied arabp2p.yml +2023-03-16 18:54:02.1080 Info Attempting to copy arabtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/arabtorrents.yml to destination: /app/Jackett/Definitions/arabtorrents.yml +2023-03-16 18:54:02.1087 Info Copied arabtorrents.yml +2023-03-16 18:54:02.1087 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml +2023-03-16 18:54:02.1087 Info Copied arenabg.yml +2023-03-16 18:54:02.1087 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml +2023-03-16 18:54:02.1100 Info Copied asiancinema.yml +2023-03-16 18:54:02.1100 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml +2023-03-16 18:54:02.1100 Info Copied asiandvdclub.yml +2023-03-16 18:54:02.1108 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml +2023-03-16 18:54:02.1108 Info Copied audiences.yml +2023-03-16 18:54:02.1108 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml +2023-03-16 18:54:02.1119 Info Copied audionews.yml +2023-03-16 18:54:02.1119 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml +2023-03-16 18:54:02.1119 Info Copied aussierules.yml +2023-03-16 18:54:02.1128 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml +2023-03-16 18:54:02.1128 Info Copied backups.yml +2023-03-16 18:54:02.1128 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml +2023-03-16 18:54:02.1139 Info Copied badasstorrents.yml +2023-03-16 18:54:02.1139 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml +2023-03-16 18:54:02.1139 Info Copied bangumi-moe.yml +2023-03-16 18:54:02.1148 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml +2023-03-16 18:54:02.1148 Info Copied beitai.yml +2023-03-16 18:54:02.1148 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml +2023-03-16 18:54:02.1159 Info Copied bestcore.yml +2023-03-16 18:54:02.1159 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml +2023-03-16 18:54:02.1159 Info Copied beyond-hd.yml +2023-03-16 18:54:02.1168 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml +2023-03-16 18:54:02.1168 Info Copied bibliotik.yml +2023-03-16 18:54:02.1168 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml +2023-03-16 18:54:02.1178 Info Copied bigfangroup.yml +2023-03-16 18:54:02.1178 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml +2023-03-16 18:54:02.1178 Info Copied bitbazis.yml +2023-03-16 18:54:02.1187 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml +2023-03-16 18:54:02.1187 Info Copied bitded.yml +2023-03-16 18:54:02.1187 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml +2023-03-16 18:54:02.1198 Info Copied bithorlo.yml +2023-03-16 18:54:02.1208 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml +2023-03-16 18:54:02.1208 Info Copied bithumen.yml +2023-03-16 18:54:02.1208 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml +2023-03-16 18:54:02.1219 Info Copied bitnova.yml +2023-03-16 18:54:02.1219 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml +2023-03-16 18:54:02.1219 Info Copied bitofvalor.yml +2023-03-16 18:54:02.1228 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml +2023-03-16 18:54:02.1228 Info Copied bitru.yml +2023-03-16 18:54:02.1228 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml +2023-03-16 18:54:02.1239 Info Copied bitsearch.yml +2023-03-16 18:54:02.1239 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml +2023-03-16 18:54:02.1239 Info Copied bitsexy.yml +2023-03-16 18:54:02.1247 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml +2023-03-16 18:54:02.1247 Info Copied bitspyder.yml +2023-03-16 18:54:02.1247 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml +2023-03-16 18:54:02.1258 Info Copied Bittorrentfiles.yml +2023-03-16 18:54:02.1258 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml +2023-03-16 18:54:02.1258 Info Copied bitturk.yml +2023-03-16 18:54:02.1258 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml +2023-03-16 18:54:02.1271 Info Copied bluebird.yml +2023-03-16 18:54:02.1271 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml +2023-03-16 18:54:02.1277 Info Copied blutopia-api.yml +2023-03-16 18:54:02.1277 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml +2023-03-16 18:54:02.1291 Info Copied booktracker.yml +2023-03-16 18:54:02.1291 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml +2023-03-16 18:54:02.1297 Info Copied bootytape.yml +2023-03-16 18:54:02.1297 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml +2023-03-16 18:54:02.1297 Info Copied borgzelle.yml +2023-03-16 18:54:02.1297 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml +2023-03-16 18:54:02.1310 Info Copied boxingtorrents.yml +2023-03-16 18:54:02.1310 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml +2023-03-16 18:54:02.1310 Info Copied broadcity.yml +2023-03-16 18:54:02.1319 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml +2023-03-16 18:54:02.1319 Info Copied brsociety-api.yml +2023-03-16 18:54:02.1319 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml +2023-03-16 18:54:02.1329 Info Copied bt4g.yml +2023-03-16 18:54:02.1329 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml +2023-03-16 18:54:02.1329 Info Copied btdigg.yml +2023-03-16 18:54:02.1337 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml +2023-03-16 18:54:02.1337 Info Copied btetree.yml +2023-03-16 18:54:02.1337 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml +2023-03-16 18:54:02.1348 Info Copied btmet.yml +2023-03-16 18:54:02.1348 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml +2023-03-16 18:54:02.1348 Info Copied btnext.yml +2023-03-16 18:54:02.1356 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml +2023-03-16 18:54:02.1356 Info Copied btschool.yml +2023-03-16 18:54:02.1356 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml +2023-03-16 18:54:02.1367 Info Copied btsow.yml +2023-03-16 18:54:02.1367 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml +2023-03-16 18:54:02.1367 Info Copied bulltorrent.yml +2023-03-16 18:54:02.1367 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml +2023-03-16 18:54:02.1380 Info Copied bwtorrents.yml +2023-03-16 18:54:02.1380 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml +2023-03-16 18:54:02.1387 Info Copied byrbt.yml +2023-03-16 18:54:02.1387 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml +2023-03-16 18:54:02.1387 Info Copied byrutor.yml +2023-03-16 18:54:02.1387 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml +2023-03-16 18:54:02.1400 Info Copied carpathians.yml +2023-03-16 18:54:02.1400 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml +2023-03-16 18:54:02.1400 Info Copied carphunter.yml +2023-03-16 18:54:02.1408 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml +2023-03-16 18:54:02.1408 Info Copied carpt.yml +2023-03-16 18:54:02.1408 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml +2023-03-16 18:54:02.1419 Info Copied cartoonchaos.yml +2023-03-16 18:54:02.1419 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml +2023-03-16 18:54:02.1419 Info Copied cathoderaytube.yml +2023-03-16 18:54:02.1427 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml +2023-03-16 18:54:02.1427 Info Copied catorrent.yml +2023-03-16 18:54:02.1427 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml +2023-03-16 18:54:02.1439 Info Copied ccfbits.yml +2023-03-16 18:54:02.1439 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml +2023-03-16 18:54:02.1449 Info Copied ceskeforum.yml +2023-03-16 18:54:02.1449 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml +2023-03-16 18:54:02.1459 Info Copied chdbits.yml +2023-03-16 18:54:02.1459 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml +2023-03-16 18:54:02.1469 Info Copied chilebt.yml +2023-03-16 18:54:02.1469 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml +2023-03-16 18:54:02.1479 Info Copied cinemageddon.yml +2023-03-16 18:54:02.1479 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml +2023-03-16 18:54:02.1489 Info Copied cinemamovies.yml +2023-03-16 18:54:02.1489 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml +2023-03-16 18:54:02.1499 Info Copied cinematik.yml +2023-03-16 18:54:02.1499 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml +2023-03-16 18:54:02.1509 Info Copied classix.yml +2023-03-16 18:54:02.1509 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml +2023-03-16 18:54:02.1519 Info Copied coastalcrew.yml +2023-03-16 18:54:02.1519 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml +2023-03-16 18:54:02.1527 Info Copied comicat.yml +2023-03-16 18:54:02.1527 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml +2023-03-16 18:54:02.1527 Info Copied concen.yml +2023-03-16 18:54:02.1527 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml +2023-03-16 18:54:02.1539 Info Copied concertos.yml +2023-03-16 18:54:02.1539 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml +2023-03-16 18:54:02.1539 Info Copied cpabien.yml +2023-03-16 18:54:02.1547 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml +2023-03-16 18:54:02.1547 Info Copied cpasbienclone.yml +2023-03-16 18:54:02.1547 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml +2023-03-16 18:54:02.1558 Info Copied cpasbiensi.yml +2023-03-16 18:54:02.1558 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml +2023-03-16 18:54:02.1558 Info Copied crackingpatching.yml +2023-03-16 18:54:02.1567 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml +2023-03-16 18:54:02.1567 Info Copied crazyhd.yml +2023-03-16 18:54:02.1567 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml +2023-03-16 18:54:02.1578 Info Copied crazyspirits.yml +2023-03-16 18:54:02.1578 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml +2023-03-16 18:54:02.1578 Info Copied crnaberza.yml +2023-03-16 18:54:02.1587 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml +2023-03-16 18:54:02.1587 Info Copied crt2fa.yml +2023-03-16 18:54:02.1587 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml +2023-03-16 18:54:02.1598 Info Copied danishbytes-api.yml +2023-03-16 18:54:02.1598 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml +2023-03-16 18:54:02.1613 Info Copied dariustracker.yml +2023-03-16 18:54:02.1613 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml +2023-03-16 18:54:02.1619 Info Copied dark-shadow.yml +2023-03-16 18:54:02.1619 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml +2023-03-16 18:54:02.1619 Info Copied datascene-api.yml +2023-03-16 18:54:02.1628 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml +2023-03-16 18:54:02.1628 Info Copied datatalli.yml +2023-03-16 18:54:02.1628 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml +2023-03-16 18:54:02.1639 Info Copied deildu.yml +2023-03-16 18:54:02.1639 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml +2023-03-16 18:54:02.1639 Info Copied demonoid.yml +2023-03-16 18:54:02.1647 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml +2023-03-16 18:54:02.1647 Info Copied desitorrents-api.yml +2023-03-16 18:54:02.1647 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml +2023-03-16 18:54:02.1658 Info Copied devil-torrents.yml +2023-03-16 18:54:02.1658 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml +2023-03-16 18:54:02.1658 Info Copied diablotorrent.yml +2023-03-16 18:54:02.1666 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml +2023-03-16 18:54:02.1666 Info Copied digitalcore.yml +2023-03-16 18:54:02.1666 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml +2023-03-16 18:54:02.1677 Info Copied dimeadozen.yml +2023-03-16 18:54:02.1677 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml +2023-03-16 18:54:02.1677 Info Copied discfan.yml +2023-03-16 18:54:02.1677 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml +2023-03-16 18:54:02.1690 Info Copied divteam.yml +2023-03-16 18:54:02.1690 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml +2023-03-16 18:54:02.1690 Info Copied dmhy.yml +2023-03-16 18:54:02.1698 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml +2023-03-16 18:54:02.1698 Info Copied docspedia.yml +2023-03-16 18:54:02.1698 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml +2023-03-16 18:54:02.1709 Info Copied dodder.yml +2023-03-16 18:54:02.1709 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml +2023-03-16 18:54:02.1709 Info Copied dreamtracker.yml +2023-03-16 18:54:02.1718 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml +2023-03-16 18:54:02.1718 Info Copied dxp.yml +2023-03-16 18:54:02.1718 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml +2023-03-16 18:54:02.1728 Info Copied ebookbay.yml +2023-03-16 18:54:02.1728 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml +2023-03-16 18:54:02.1728 Info Copied ebooks-shares.yml +2023-03-16 18:54:02.1737 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml +2023-03-16 18:54:02.1737 Info Copied ehentai.yml +2023-03-16 18:54:02.1737 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml +2023-03-16 18:54:02.1748 Info Copied electro-torrent.yml +2023-03-16 18:54:02.1748 Info Attempting to copy elitetorrent-pl.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/elitetorrent-pl.yml to destination: /app/Jackett/Definitions/elitetorrent-pl.yml +2023-03-16 18:54:02.1748 Info Copied elitetorrent-pl.yml +2023-03-16 18:54:02.1748 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml +2023-03-16 18:54:02.1760 Info Copied empornium.yml +2023-03-16 18:54:02.1760 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml +2023-03-16 18:54:02.1767 Info Copied empornium2fa.yml +2023-03-16 18:54:02.1767 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml +2023-03-16 18:54:02.1767 Info Copied eniahd.yml +2023-03-16 18:54:02.1767 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml +2023-03-16 18:54:02.1779 Info Copied esharenet.yml +2023-03-16 18:54:02.1779 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml +2023-03-16 18:54:02.1779 Info Copied estone.yml +2023-03-16 18:54:02.1788 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml +2023-03-16 18:54:02.1800 Info Copied exkinoray.yml +2023-03-16 18:54:02.1800 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml +2023-03-16 18:54:02.1807 Info Copied extratorrent-st.yml +2023-03-16 18:54:02.1807 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml +2023-03-16 18:54:02.1807 Info Copied extremebits.yml +2023-03-16 18:54:02.1807 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml +2023-03-16 18:54:02.1819 Info Copied extremetorrents.yml +2023-03-16 18:54:02.1819 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml +2023-03-16 18:54:02.1819 Info Copied extremlymtorrents.yml +2023-03-16 18:54:02.1828 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml +2023-03-16 18:54:02.1828 Info Copied exttorrents.yml +2023-03-16 18:54:02.1828 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml +2023-03-16 18:54:02.1839 Info Copied eztv.yml +2023-03-16 18:54:02.1839 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml +2023-03-16 18:54:02.1839 Info Copied falkonvisionteam.yml +2023-03-16 18:54:02.1848 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml +2023-03-16 18:54:02.1848 Info Copied fanoin.yml +2023-03-16 18:54:02.1848 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml +2023-03-16 18:54:02.1859 Info Copied fantasticheaven.yml +2023-03-16 18:54:02.1859 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml +2023-03-16 18:54:02.1859 Info Copied fantastiko.yml +2023-03-16 18:54:02.1867 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml +2023-03-16 18:54:02.1880 Info Copied femdomcult.yml +2023-03-16 18:54:02.1880 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml +2023-03-16 18:54:02.1880 Info Copied fenyarnyek-tracker.yml +2023-03-16 18:54:02.1888 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml +2023-03-16 18:54:02.1888 Info Copied file-tracker.yml +2023-03-16 18:54:02.1888 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml +2023-03-16 18:54:02.1900 Info Copied filelisting.yml +2023-03-16 18:54:02.1900 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml +2023-03-16 18:54:02.1900 Info Copied finelite.yml +2023-03-16 18:54:02.1908 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml +2023-03-16 18:54:02.1908 Info Copied finvip.yml +2023-03-16 18:54:02.1908 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml +2023-03-16 18:54:02.1919 Info Copied firebit.yml +2023-03-16 18:54:02.1919 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml +2023-03-16 18:54:02.1919 Info Copied fluxzone.yml +2023-03-16 18:54:02.1927 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml +2023-03-16 18:54:02.1927 Info Copied freshmeat.yml +2023-03-16 18:54:02.1927 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml +2023-03-16 18:54:02.1938 Info Copied frozenlayer.yml +2023-03-16 18:54:02.1938 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml +2023-03-16 18:54:02.1938 Info Copied ftuapps.yml +2023-03-16 18:54:02.1938 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml +2023-03-16 18:54:02.1950 Info Copied funkytorrents.yml +2023-03-16 18:54:02.1950 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml +2023-03-16 18:54:02.1957 Info Copied fuzer.yml +2023-03-16 18:54:02.1957 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml +2023-03-16 18:54:02.1957 Info Copied gainbound.yml +2023-03-16 18:54:02.1957 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml +2023-03-16 18:54:02.1970 Info Copied gamestorrents.yml +2023-03-16 18:54:02.1970 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml +2023-03-16 18:54:02.1970 Info Copied gay-torrents.yml +2023-03-16 18:54:02.1978 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml +2023-03-16 18:54:02.1978 Info Copied gay-torrentsorg.yml +2023-03-16 18:54:02.1978 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml +2023-03-16 18:54:02.1989 Info Copied gaytorrentru.yml +2023-03-16 18:54:02.1989 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml +2023-03-16 18:54:02.1989 Info Copied generationfree-api.yml +2023-03-16 18:54:02.1998 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml +2023-03-16 18:54:02.1998 Info Copied genesismovement.yml +2023-03-16 18:54:02.1998 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml +2023-03-16 18:54:02.2009 Info Copied gigatorrents.yml +2023-03-16 18:54:02.2009 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml +2023-03-16 18:54:02.2009 Info Copied gimmepeers.yml +2023-03-16 18:54:02.2017 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml +2023-03-16 18:54:02.2017 Info Copied girotorrent.yml +2023-03-16 18:54:02.2017 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml +2023-03-16 18:54:02.2028 Info Copied gktorrent.yml +2023-03-16 18:54:02.2028 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml +2023-03-16 18:54:02.2028 Info Copied glodls.yml +2023-03-16 18:54:02.2028 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml +2023-03-16 18:54:02.2040 Info Copied greekdiamond.yml +2023-03-16 18:54:02.2040 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml +2023-03-16 18:54:02.2047 Info Copied greekteam.yml +2023-03-16 18:54:02.2047 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml +2023-03-16 18:54:02.2047 Info Copied gtorrentpro.yml +2023-03-16 18:54:02.2047 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml +2023-03-16 18:54:02.2060 Info Copied haidan.yml +2023-03-16 18:54:02.2060 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml +2023-03-16 18:54:02.2060 Info Copied haitang.yml +2023-03-16 18:54:02.2068 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml +2023-03-16 18:54:02.2068 Info Copied happyfappy.yml +2023-03-16 18:54:02.2068 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml +2023-03-16 18:54:02.2078 Info Copied hawke-uno.yml +2023-03-16 18:54:02.2078 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml +2023-03-16 18:54:02.2078 Info Copied hd-unit3d-api.yml +2023-03-16 18:54:02.2086 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml +2023-03-16 18:54:02.2086 Info Copied hd4fans.yml +2023-03-16 18:54:02.2086 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml +2023-03-16 18:54:02.2097 Info Copied hdarea.yml +2023-03-16 18:54:02.2097 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml +2023-03-16 18:54:02.2097 Info Copied hdatmos.yml +2023-03-16 18:54:02.2097 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml +2023-03-16 18:54:02.2109 Info Copied hdc.yml +2023-03-16 18:54:02.2109 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml +2023-03-16 18:54:02.2109 Info Copied hdchina.yml +2023-03-16 18:54:02.2117 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml +2023-03-16 18:54:02.2117 Info Copied hdcztorrent.yml +2023-03-16 18:54:02.2117 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml +2023-03-16 18:54:02.2129 Info Copied hddolby.yml +2023-03-16 18:54:02.2129 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml +2023-03-16 18:54:02.2129 Info Copied hdfans.yml +2023-03-16 18:54:02.2137 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml +2023-03-16 18:54:02.2137 Info Copied hdforever.yml +2023-03-16 18:54:02.2137 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml +2023-03-16 18:54:02.2148 Info Copied hdgalaktik.yml +2023-03-16 18:54:02.2182 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml +2023-03-16 18:54:02.2188 Info Copied hdhome.yml +2023-03-16 18:54:02.2188 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml +2023-03-16 18:54:02.2188 Info Copied hdmayi.yml +2023-03-16 18:54:02.2196 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml +2023-03-16 18:54:02.2196 Info Copied hdmonkey.yml +2023-03-16 18:54:02.2196 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml +2023-03-16 18:54:02.2208 Info Copied hdolimpo-api.yml +2023-03-16 18:54:02.2208 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml +2023-03-16 18:54:02.2208 Info Copied hdonly.yml +2023-03-16 18:54:02.2217 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml +2023-03-16 18:54:02.2217 Info Copied hdroute.yml +2023-03-16 18:54:02.2217 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml +2023-03-16 18:54:02.2230 Info Copied hdsky.yml +2023-03-16 18:54:02.2230 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml +2023-03-16 18:54:02.2238 Info Copied hdtime.yml +2023-03-16 18:54:02.2238 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml +2023-03-16 18:54:02.2238 Info Copied hdtorrentsit.yml +2023-03-16 18:54:02.2246 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml +2023-03-16 18:54:02.2246 Info Copied hdturk.yml +2023-03-16 18:54:02.2246 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml +2023-03-16 18:54:02.2258 Info Copied hdu.yml +2023-03-16 18:54:02.2258 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml +2023-03-16 18:54:02.2258 Info Copied hdzone.yml +2023-03-16 18:54:02.2267 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml +2023-03-16 18:54:02.2267 Info Copied hebits.yml +2023-03-16 18:54:02.2267 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml +2023-03-16 18:54:02.2278 Info Copied hellashut.yml +2023-03-16 18:54:02.2278 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml +2023-03-16 18:54:02.2278 Info Copied hhanclub.yml +2023-03-16 18:54:02.2288 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml +2023-03-16 18:54:02.2288 Info Copied houseofdevil.yml +2023-03-16 18:54:02.2288 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml +2023-03-16 18:54:02.2300 Info Copied hqmusic.yml +2023-03-16 18:54:02.2300 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml +2023-03-16 18:54:02.2300 Info Copied huntorrent.yml +2023-03-16 18:54:02.2308 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml +2023-03-16 18:54:02.2308 Info Copied icc2022.yml +2023-03-16 18:54:02.2308 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml +2023-03-16 18:54:02.2319 Info Copied idope.yml +2023-03-16 18:54:02.2319 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml +2023-03-16 18:54:02.2319 Info Copied ihdbits.yml +2023-03-16 18:54:02.2329 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml +2023-03-16 18:54:02.2329 Info Copied ilcorsaroblu.yml +2023-03-16 18:54:02.2336 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml +2023-03-16 18:54:02.2336 Info Copied ilcorsaronero.yml +2023-03-16 18:54:02.2336 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml +2023-03-16 18:54:02.2348 Info Copied immortuos.yml +2023-03-16 18:54:02.2348 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml +2023-03-16 18:54:02.2348 Info Copied indietorrents.yml +2023-03-16 18:54:02.2357 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml +2023-03-16 18:54:02.2357 Info Copied insanetracker.yml +2023-03-16 18:54:02.2357 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml +2023-03-16 18:54:02.2369 Info Copied internetarchive.yml +2023-03-16 18:54:02.2369 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml +2023-03-16 18:54:02.2369 Info Copied isohunt2.yml +2023-03-16 18:54:02.2378 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml +2023-03-16 18:54:02.2378 Info Copied itorrent.yml +2023-03-16 18:54:02.2378 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml +2023-03-16 18:54:02.2389 Info Copied jav-torrent.yml +2023-03-16 18:54:02.2389 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml +2023-03-16 18:54:02.2389 Info Copied jme-reunit3d-api.yml +2023-03-16 18:54:02.2397 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml +2023-03-16 18:54:02.2397 Info Copied joyhd.yml +2023-03-16 18:54:02.2397 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml +2023-03-16 18:54:02.2408 Info Copied jpopsuki.yml +2023-03-16 18:54:02.2408 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml +2023-03-16 18:54:02.2408 Info Copied jptv.yml +2023-03-16 18:54:02.2408 Info Attempting to copy kamept.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/kamept.yml to destination: /app/Jackett/Definitions/kamept.yml +2023-03-16 18:54:02.2421 Info Copied kamept.yml +2023-03-16 18:54:02.2421 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml +2023-03-16 18:54:02.2428 Info Copied karagarga.yml +2023-03-16 18:54:02.2428 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml +2023-03-16 18:54:02.2428 Info Copied keepfriends.yml +2023-03-16 18:54:02.2437 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml +2023-03-16 18:54:02.2437 Info Copied kickasstorrents-to.yml +2023-03-16 18:54:02.2437 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml +2023-03-16 18:54:02.2447 Info Copied kickasstorrents-ws.yml +2023-03-16 18:54:02.2447 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml +2023-03-16 18:54:02.2447 Info Copied kinorun.yml +2023-03-16 18:54:02.2447 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml +2023-03-16 18:54:02.2460 Info Copied kinozal.yml +2023-03-16 18:54:02.2460 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml +2023-03-16 18:54:02.2467 Info Copied knaben.yml +2023-03-16 18:54:02.2467 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml +2023-03-16 18:54:02.2467 Info Copied korsar.yml +2023-03-16 18:54:02.2476 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml +2023-03-16 18:54:02.2476 Info Copied krazyzone.yml +2023-03-16 18:54:02.2476 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml +2023-03-16 18:54:02.2487 Info Copied kufirc.yml +2023-03-16 18:54:02.2487 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml +2023-03-16 18:54:02.2487 Info Copied lastfiles.yml +2023-03-16 18:54:02.2487 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml +2023-03-16 18:54:02.2501 Info Copied lat-team-api.yml +2023-03-16 18:54:02.2501 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml +2023-03-16 18:54:02.2507 Info Copied learnbits.yml +2023-03-16 18:54:02.2507 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml +2023-03-16 18:54:02.2507 Info Copied learnflakes.yml +2023-03-16 18:54:02.2507 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml +2023-03-16 18:54:02.2520 Info Copied leech24.yml +2023-03-16 18:54:02.2520 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml +2023-03-16 18:54:02.2527 Info Copied lemonhd.yml +2023-03-16 18:54:02.2527 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml +2023-03-16 18:54:02.2537 Info Copied lepornoinfo.yml +2023-03-16 18:54:02.2537 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml +2023-03-16 18:54:02.2547 Info Copied les-cinephiles.yml +2023-03-16 18:54:02.2547 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml +2023-03-16 18:54:02.2557 Info Copied lesaloon.yml +2023-03-16 18:54:02.2557 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml +2023-03-16 18:54:02.2567 Info Copied libranet.yml +2023-03-16 18:54:02.2567 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml +2023-03-16 18:54:02.2577 Info Copied limetorrents.yml +2023-03-16 18:54:02.2577 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml +2023-03-16 18:54:02.2588 Info Copied limetorrentsclone.yml +2023-03-16 18:54:02.2588 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml +2023-03-16 18:54:02.2598 Info Copied linkomanija.yml +2023-03-16 18:54:02.2598 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml +2023-03-16 18:54:02.2607 Info Copied linuxtracker.yml +2023-03-16 18:54:02.2607 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml +2023-03-16 18:54:02.2607 Info Copied locadora.yml +2023-03-16 18:54:02.2617 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml +2023-03-16 18:54:02.2617 Info Copied losslessclub.yml +2023-03-16 18:54:02.2617 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml +2023-03-16 18:54:02.2628 Info Copied lst.yml +2023-03-16 18:54:02.2628 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml +2023-03-16 18:54:02.2628 Info Copied mactorrentsdownload.yml +2023-03-16 18:54:02.2628 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml +2023-03-16 18:54:02.2640 Info Copied madsrevolution.yml +2023-03-16 18:54:02.2640 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml +2023-03-16 18:54:02.2647 Info Copied magicheaven.yml +2023-03-16 18:54:02.2647 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml +2023-03-16 18:54:02.2647 Info Copied magico.yml +2023-03-16 18:54:02.2647 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml +2023-03-16 18:54:02.2660 Info Copied majomparade.yml +2023-03-16 18:54:02.2660 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml +2023-03-16 18:54:02.2660 Info Copied marinetracker.yml +2023-03-16 18:54:02.2668 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml +2023-03-16 18:54:02.2668 Info Copied mazepa.yml +2023-03-16 18:54:02.2668 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml +2023-03-16 18:54:02.2679 Info Copied megamixtracker.yml +2023-03-16 18:54:02.2679 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml +2023-03-16 18:54:02.2679 Info Copied megapeer.yml +2023-03-16 18:54:02.2687 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml +2023-03-16 18:54:02.2687 Info Copied mesevilag.yml +2023-03-16 18:54:02.2687 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml +2023-03-16 18:54:02.2698 Info Copied metaltracker.yml +2023-03-16 18:54:02.2698 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml +2023-03-16 18:54:02.2698 Info Copied mikan.yml +2023-03-16 18:54:02.2698 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml +2023-03-16 18:54:02.2710 Info Copied milkie.yml +2023-03-16 18:54:02.2710 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml +2023-03-16 18:54:02.2710 Info Copied miobt.yml +2023-03-16 18:54:02.2718 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml +2023-03-16 18:54:02.2718 Info Copied mircrew.yml +2023-03-16 18:54:02.2718 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml +2023-03-16 18:54:02.2729 Info Copied mixtapetorrent.yml +2023-03-16 18:54:02.2729 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml +2023-03-16 18:54:02.2729 Info Copied mma-torrents.yml +2023-03-16 18:54:02.2737 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml +2023-03-16 18:54:02.2737 Info Copied mnv.yml +2023-03-16 18:54:02.2737 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml +2023-03-16 18:54:02.2748 Info Copied mojblink.yml +2023-03-16 18:54:02.2748 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml +2023-03-16 18:54:02.2748 Info Copied mousebits.yml +2023-03-16 18:54:02.2748 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml +2023-03-16 18:54:02.2768 Info Copied moviesdvdr.yml +2023-03-16 18:54:02.2768 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml +2023-03-16 18:54:02.2768 Info Copied moviesite.yml +2023-03-16 18:54:02.2776 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml +2023-03-16 18:54:02.2776 Info Copied movietorrent.yml +2023-03-16 18:54:02.2776 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml +2023-03-16 18:54:02.2786 Info Copied movietorrentz.yml +2023-03-16 18:54:02.2786 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml +2023-03-16 18:54:02.2786 Info Copied mteamtp.yml +2023-03-16 18:54:02.2786 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml +2023-03-16 18:54:02.2799 Info Copied mteamtp2fa.yml +2023-03-16 18:54:02.2799 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml +2023-03-16 18:54:02.2799 Info Copied muziekfabriek.yml +2023-03-16 18:54:02.2806 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml +2023-03-16 18:54:02.2806 Info Copied mvgroupforum.yml +2023-03-16 18:54:02.2806 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml +2023-03-16 18:54:02.2817 Info Copied mvgroupmain.yml +2023-03-16 18:54:02.2817 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml +2023-03-16 18:54:02.2817 Info Copied mypornclub.yml +2023-03-16 18:54:02.2817 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml +2023-03-16 18:54:02.2837 Info Copied myspleen.yml +2023-03-16 18:54:02.2837 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml +2023-03-16 18:54:02.2837 Info Copied nethd.yml +2023-03-16 18:54:02.2837 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml +2023-03-16 18:54:02.2849 Info Copied newretro.yml +2023-03-16 18:54:02.2849 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml +2023-03-16 18:54:02.2849 Info Copied newstudio.yml +2023-03-16 18:54:02.2857 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml +2023-03-16 18:54:02.2857 Info Copied newstudiol.yml +2023-03-16 18:54:02.2857 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml +2023-03-16 18:54:02.2877 Info Copied nicept.yml +2023-03-16 18:54:02.2877 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml +2023-03-16 18:54:02.2877 Info Copied nipponsei.yml +2023-03-16 18:54:02.2877 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml +2023-03-16 18:54:02.2889 Info Copied nntt.yml +2023-03-16 18:54:02.2889 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml +2023-03-16 18:54:02.2889 Info Copied noname-club.yml +2023-03-16 18:54:02.2898 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml +2023-03-16 18:54:02.2898 Info Copied noname-clubl.yml +2023-03-16 18:54:02.2898 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml +2023-03-16 18:54:02.2909 Info Copied nyaasi.yml +2023-03-16 18:54:02.2909 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml +2023-03-16 18:54:02.2909 Info Copied oldtoonsworld.yml +2023-03-16 18:54:02.2917 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml +2023-03-16 18:54:02.2917 Info Copied onejav.yml +2023-03-16 18:54:02.2917 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml +2023-03-16 18:54:02.2928 Info Copied opencd.yml +2023-03-16 18:54:02.2928 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml +2023-03-16 18:54:02.2928 Info Copied oshenpt.yml +2023-03-16 18:54:02.2937 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml +2023-03-16 18:54:02.2937 Info Copied ourbits.yml +2023-03-16 18:54:02.2937 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml +2023-03-16 18:54:02.2947 Info Copied p2pbg.yml +2023-03-16 18:54:02.2947 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml +2023-03-16 18:54:02.2947 Info Copied parnuxi.yml +2023-03-16 18:54:02.2947 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml +2023-03-16 18:54:02.2960 Info Copied partis.yml +2023-03-16 18:54:02.2998 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml +2023-03-16 18:54:02.2998 Info Copied pctorrent.yml +2023-03-16 18:54:02.2998 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml +2023-03-16 18:54:02.3008 Info Copied peeratiko.yml +2023-03-16 18:54:02.3008 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml +2023-03-16 18:54:02.3008 Info Copied peersfm.yml +2023-03-16 18:54:02.3008 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml +2023-03-16 18:54:02.3019 Info Copied pier720.yml +2023-03-16 18:54:02.3019 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml +2023-03-16 18:54:02.3019 Info Copied pignetwork.yml +2023-03-16 18:54:02.3019 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml +2023-03-16 18:54:02.3031 Info Copied piratbit.yml +2023-03-16 18:54:02.3031 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml +2023-03-16 18:54:02.3037 Info Copied piratbitl.yml +2023-03-16 18:54:02.3037 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml +2023-03-16 18:54:02.3037 Info Copied pixelcove.yml +2023-03-16 18:54:02.3037 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml +2023-03-16 18:54:02.3047 Info Copied pixelcove2fa.yml +2023-03-16 18:54:02.3047 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml +2023-03-16 18:54:02.3047 Info Copied polishsource.yml +2023-03-16 18:54:02.3047 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml +2023-03-16 18:54:02.3058 Info Copied polishtracker-api.yml +2023-03-16 18:54:02.3058 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml +2023-03-16 18:54:02.3058 Info Copied pornbay.yml +2023-03-16 18:54:02.3058 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml +2023-03-16 18:54:02.3068 Info Copied pornoslab.yml +2023-03-16 18:54:02.3068 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml +2023-03-16 18:54:02.3068 Info Copied pornotorrent.yml +2023-03-16 18:54:02.3068 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml +2023-03-16 18:54:02.3079 Info Copied portugas-api.yml +2023-03-16 18:54:02.3079 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml +2023-03-16 18:54:02.3079 Info Copied potuk.yml +2023-03-16 18:54:02.3079 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml +2023-03-16 18:54:02.3090 Info Copied proaudiotorrents.yml +2023-03-16 18:54:02.3090 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml +2023-03-16 18:54:02.3090 Info Copied proporno.yml +2023-03-16 18:54:02.3097 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml +2023-03-16 18:54:02.3097 Info Copied ptchina.yml +2023-03-16 18:54:02.3097 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml +2023-03-16 18:54:02.3097 Info Copied pterclub.yml +2023-03-16 18:54:02.3108 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml +2023-03-16 18:54:02.3108 Info Copied ptfiles.yml +2023-03-16 18:54:02.3108 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml +2023-03-16 18:54:02.3118 Info Copied pthome.yml +2023-03-16 18:54:02.3118 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml +2023-03-16 18:54:02.3118 Info Copied ptmsg.yml +2023-03-16 18:54:02.3118 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml +2023-03-16 18:54:02.3129 Info Copied ptsbao.yml +2023-03-16 18:54:02.3129 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml +2023-03-16 18:54:02.3129 Info Copied pttime.yml +2023-03-16 18:54:02.3137 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml +2023-03-16 18:54:02.3137 Info Copied punkshorror.yml +2023-03-16 18:54:02.3137 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml +2023-03-16 18:54:02.3147 Info Copied puntotorrent.yml +2023-03-16 18:54:02.3147 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml +2023-03-16 18:54:02.3147 Info Copied pussytorrents.yml +2023-03-16 18:54:02.3147 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml +2023-03-16 18:54:02.3158 Info Copied putao.yml +2023-03-16 18:54:02.3158 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml +2023-03-16 18:54:02.3158 Info Copied puurhollands.yml +2023-03-16 18:54:02.3158 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml +2023-03-16 18:54:02.3169 Info Copied pwtorrents.yml +2023-03-16 18:54:02.3169 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml +2023-03-16 18:54:02.3169 Info Copied r3vwtf.yml +2023-03-16 18:54:02.3169 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml +2023-03-16 18:54:02.3180 Info Copied racing4everyone-api.yml +2023-03-16 18:54:02.3180 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml +2023-03-16 18:54:02.3180 Info Copied racingforme.yml +2023-03-16 18:54:02.3187 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml +2023-03-16 18:54:02.3187 Info Copied rainbowtracker.yml +2023-03-16 18:54:02.3187 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml +2023-03-16 18:54:02.3187 Info Copied rapidzona.yml +2023-03-16 18:54:02.3198 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml +2023-03-16 18:54:02.3198 Info Copied redbits-api.yml +2023-03-16 18:54:02.3198 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml +2023-03-16 18:54:02.3207 Info Copied redstartorrent.yml +2023-03-16 18:54:02.3207 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml +2023-03-16 18:54:02.3207 Info Copied reelflix-api.yml +2023-03-16 18:54:02.3207 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml +2023-03-16 18:54:02.3217 Info Copied resurrectthenet.yml +2023-03-16 18:54:02.3217 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml +2023-03-16 18:54:02.3217 Info Copied rgfootball.yml +2023-03-16 18:54:02.3217 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml +2023-03-16 18:54:02.3229 Info Copied rintor.yml +2023-03-16 18:54:02.3229 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml +2023-03-16 18:54:02.3229 Info Copied rintornet.yml +2023-03-16 18:54:02.3229 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml +2023-03-16 18:54:02.3240 Info Copied riperam.yml +2023-03-16 18:54:02.3240 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml +2023-03-16 18:54:02.3240 Info Copied rockbox.yml +2023-03-16 18:54:02.3247 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml +2023-03-16 18:54:02.3247 Info Copied romanianmetaltorrents.yml +2023-03-16 18:54:02.3247 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml +2023-03-16 18:54:02.3256 Info Copied rptorrents.yml +2023-03-16 18:54:02.3256 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml +2023-03-16 18:54:02.3256 Info Copied rudub.yml +2023-03-16 18:54:02.3256 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml +2023-03-16 18:54:02.3268 Info Copied rus-media.yml +2023-03-16 18:54:02.3268 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml +2023-03-16 18:54:02.3268 Info Copied rustorka.yml +2023-03-16 18:54:02.3268 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml +2023-03-16 18:54:02.3280 Info Copied rutor.yml +2023-03-16 18:54:02.3280 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml +2023-03-16 18:54:02.3294 Info Copied rutracker-ru.yml +2023-03-16 18:54:02.3294 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml +2023-03-16 18:54:02.3294 Info Copied satclubbing.yml +2023-03-16 18:54:02.3294 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml +2023-03-16 18:54:02.3294 Info Copied scenerush.yml +2023-03-16 18:54:02.3294 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml +2023-03-16 18:54:02.3310 Info Copied sdbits.yml +2023-03-16 18:54:02.3310 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml +2023-03-16 18:54:02.3310 Info Copied seedfile.yml +2023-03-16 18:54:02.3317 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml +2023-03-16 18:54:02.3317 Info Copied seedoff.yml +2023-03-16 18:54:02.3317 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml +2023-03-16 18:54:02.3317 Info Copied selezen.yml +2023-03-16 18:54:02.3328 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml +2023-03-16 18:54:02.3328 Info Copied sexypics.yml +2023-03-16 18:54:02.3328 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml +2023-03-16 18:54:02.3337 Info Copied shanaproject.yml +2023-03-16 18:54:02.3337 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml +2023-03-16 18:54:02.3337 Info Copied shareisland-api.yml +2023-03-16 18:54:02.3337 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml +2023-03-16 18:54:02.3348 Info Copied sharewood.yml +2023-03-16 18:54:02.3348 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml +2023-03-16 18:54:02.3348 Info Copied sharkpt.yml +2023-03-16 18:54:02.3348 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml +2023-03-16 18:54:02.3358 Info Copied showrss.yml +2023-03-16 18:54:02.3358 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml +2023-03-16 18:54:02.3358 Info Copied siambit.yml +2023-03-16 18:54:02.3358 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml +2023-03-16 18:54:02.3370 Info Copied skipthecommercials-api.yml +2023-03-16 18:54:02.3370 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml +2023-03-16 18:54:02.3370 Info Copied skipthetrailers.yml +2023-03-16 18:54:02.3377 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml +2023-03-16 18:54:02.3377 Info Copied sktorrent-org.yml +2023-03-16 18:54:02.3377 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml +2023-03-16 18:54:02.3377 Info Copied sktorrent.yml +2023-03-16 18:54:02.3388 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml +2023-03-16 18:54:02.3388 Info Copied slosoul.yml +2023-03-16 18:54:02.3388 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml +2023-03-16 18:54:02.3397 Info Copied snowpt.yml +2023-03-16 18:54:02.3397 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml +2023-03-16 18:54:02.3397 Info Copied solidtorrents.yml +2023-03-16 18:54:02.3397 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml +2023-03-16 18:54:02.3408 Info Copied sosulki.yml +2023-03-16 18:54:02.3408 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml +2023-03-16 18:54:02.3408 Info Copied soulvoice.yml +2023-03-16 18:54:02.3408 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml +2023-03-16 18:54:02.3420 Info Copied speedmasterhd.yml +2023-03-16 18:54:02.3420 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml +2023-03-16 18:54:02.3420 Info Copied speedtorrentreloaded.yml +2023-03-16 18:54:02.3428 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml +2023-03-16 18:54:02.3428 Info Copied spidertk.yml +2023-03-16 18:54:02.3428 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml +2023-03-16 18:54:02.3437 Info Copied spiritofrevolution.yml +2023-03-16 18:54:02.3437 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml +2023-03-16 18:54:02.3437 Info Copied sporthd.yml +2023-03-16 18:54:02.3437 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml +2023-03-16 18:54:02.3448 Info Copied sportscult.yml +2023-03-16 18:54:02.3448 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml +2023-03-16 18:54:02.3448 Info Copied springsunday.yml +2023-03-16 18:54:02.3448 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml +2023-03-16 18:54:02.3459 Info Copied sugoimusic.yml +2023-03-16 18:54:02.3459 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml +2023-03-16 18:54:02.3459 Info Copied sukebeinyaasi.yml +2023-03-16 18:54:02.3459 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml +2023-03-16 18:54:02.3470 Info Copied superbits.yml +2023-03-16 18:54:02.3470 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml +2023-03-16 18:54:02.3470 Info Copied swarmazon-api.yml +2023-03-16 18:54:02.3476 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml +2023-03-16 18:54:02.3476 Info Copied tapochek.yml +2023-03-16 18:54:02.3476 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml +2023-03-16 18:54:02.3486 Info Copied tasmanit.yml +2023-03-16 18:54:02.3486 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml +2023-03-16 18:54:02.3486 Info Copied teamctgame.yml +2023-03-16 18:54:02.3486 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml +2023-03-16 18:54:02.3505 Info Copied teamhd.yml +2023-03-16 18:54:02.3507 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml +2023-03-16 18:54:02.3507 Info Copied teamos.yml +2023-03-16 18:54:02.3507 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml +2023-03-16 18:54:02.3516 Info Copied tekno3d.yml +2023-03-16 18:54:02.3516 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml +2023-03-16 18:54:02.3516 Info Copied tellytorrent-api.yml +2023-03-16 18:54:02.3516 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml +2023-03-16 18:54:02.3527 Info Copied teracod.yml +2023-03-16 18:54:02.3527 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml +2023-03-16 18:54:02.3527 Info Copied the-crazy-ones.yml +2023-03-16 18:54:02.3527 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml +2023-03-16 18:54:02.3538 Info Copied thedarkcommunity-api.yml +2023-03-16 18:54:02.3538 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml +2023-03-16 18:54:02.3538 Info Copied theempire.yml +2023-03-16 18:54:02.3538 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml +2023-03-16 18:54:02.3550 Info Copied thefallingangels.yml +2023-03-16 18:54:02.3550 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml +2023-03-16 18:54:02.3550 Info Copied thegeeks.yml +2023-03-16 18:54:02.3557 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml +2023-03-16 18:54:02.3557 Info Copied theleachzone.yml +2023-03-16 18:54:02.3557 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml +2023-03-16 18:54:02.3582 Info Copied themixingbowl.yml +2023-03-16 18:54:02.3582 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml +2023-03-16 18:54:02.3588 Info Copied thenewfun.yml +2023-03-16 18:54:02.3588 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml +2023-03-16 18:54:02.3588 Info Copied theoccult.yml +2023-03-16 18:54:02.3588 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml +2023-03-16 18:54:02.3600 Info Copied theoldschool-api.yml +2023-03-16 18:54:02.3600 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml +2023-03-16 18:54:02.3600 Info Copied thepiratebay.yml +2023-03-16 18:54:02.3607 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml +2023-03-16 18:54:02.3607 Info Copied theplace.yml +2023-03-16 18:54:02.3607 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml +2023-03-16 18:54:02.3616 Info Copied thesceneplace.yml +2023-03-16 18:54:02.3616 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml +2023-03-16 18:54:02.3616 Info Copied theshinning-api.yml +2023-03-16 18:54:02.3616 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml +2023-03-16 18:54:02.3627 Info Copied theshow.yml +2023-03-16 18:54:02.3627 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml +2023-03-16 18:54:02.3627 Info Copied thevault.yml +2023-03-16 18:54:02.3627 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml +2023-03-16 18:54:02.3638 Info Copied tjupt.yml +2023-03-16 18:54:02.3638 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml +2023-03-16 18:54:02.3638 Info Copied tlfbits.yml +2023-03-16 18:54:02.3638 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml +2023-03-16 18:54:02.3648 Info Copied tmghub.yml +2023-03-16 18:54:02.3648 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml +2023-03-16 18:54:02.3648 Info Copied tokyotosho.yml +2023-03-16 18:54:02.3648 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml +2023-03-16 18:54:02.3659 Info Copied torlock.yml +2023-03-16 18:54:02.3659 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml +2023-03-16 18:54:02.3659 Info Copied tornado.yml +2023-03-16 18:54:02.3666 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml +2023-03-16 18:54:02.3666 Info Copied torrent-explosiv.yml +2023-03-16 18:54:02.3666 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml +2023-03-16 18:54:02.3666 Info Copied torrent-pirat.yml +2023-03-16 18:54:02.3677 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml +2023-03-16 18:54:02.3677 Info Copied torrent-turk.yml +2023-03-16 18:54:02.3677 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml +2023-03-16 18:54:02.3686 Info Copied torrent9.yml +2023-03-16 18:54:02.3686 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml +2023-03-16 18:54:02.3686 Info Copied torrent911.yml +2023-03-16 18:54:02.3686 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml +2023-03-16 18:54:02.3698 Info Copied torrent9clone.yml +2023-03-16 18:54:02.3698 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml +2023-03-16 18:54:02.3698 Info Copied torrentbd.yml +2023-03-16 18:54:02.3698 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml +2023-03-16 18:54:02.3709 Info Copied torrentby.yml +2023-03-16 18:54:02.3709 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml +2023-03-16 18:54:02.3709 Info Copied torrentccf.yml +2023-03-16 18:54:02.3709 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml +2023-03-16 18:54:02.3720 Info Copied torrentcore.yml +2023-03-16 18:54:02.3720 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml +2023-03-16 18:54:02.3720 Info Copied torrentdownload.yml +2023-03-16 18:54:02.3727 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml +2023-03-16 18:54:02.3727 Info Copied torrentdownloads.yml +2023-03-16 18:54:02.3727 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml +2023-03-16 18:54:02.3727 Info Copied torrentfunk.yml +2023-03-16 18:54:02.3737 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml +2023-03-16 18:54:02.3737 Info Copied torrentgalaxy.yml +2023-03-16 18:54:02.3737 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml +2023-03-16 18:54:02.3747 Info Copied torrenthr.yml +2023-03-16 18:54:02.3747 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml +2023-03-16 18:54:02.3747 Info Copied torrenting.yml +2023-03-16 18:54:02.3747 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml +2023-03-16 18:54:02.3758 Info Copied torrentkitty.yml +2023-03-16 18:54:02.3758 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml +2023-03-16 18:54:02.3758 Info Copied torrentland.yml +2023-03-16 18:54:02.3758 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml +2023-03-16 18:54:02.3769 Info Copied torrentleech-pl.yml +2023-03-16 18:54:02.3769 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml +2023-03-16 18:54:02.3769 Info Copied torrentleech.yml +2023-03-16 18:54:02.3769 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml +2023-03-16 18:54:02.3878 Info Copied torrentlt.yml +2023-03-16 18:54:02.3878 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml +2023-03-16 18:54:02.3878 Info Copied torrentmasters.yml +2023-03-16 18:54:02.3878 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml +2023-03-16 18:54:02.3889 Info Copied torrentoyunindir.yml +2023-03-16 18:54:02.3889 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml +2023-03-16 18:54:02.3889 Info Copied torrentproject2.yml +2023-03-16 18:54:02.3889 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml +2023-03-16 18:54:02.3900 Info Copied torrentqq.yml +2023-03-16 18:54:02.3900 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml +2023-03-16 18:54:02.3900 Info Copied torrentsectorcrew.yml +2023-03-16 18:54:02.3907 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml +2023-03-16 18:54:02.3907 Info Copied torrentseeds-api.yml +2023-03-16 18:54:02.3907 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml +2023-03-16 18:54:02.3907 Info Copied torrentsir.yml +2023-03-16 18:54:02.3918 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml +2023-03-16 18:54:02.3918 Info Copied torrentslocal.yml +2023-03-16 18:54:02.3918 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml +2023-03-16 18:54:02.3927 Info Copied torrentv.yml +2023-03-16 18:54:02.3927 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml +2023-03-16 18:54:02.3927 Info Copied torrentview.yml +2023-03-16 18:54:02.3927 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml +2023-03-16 18:54:02.3938 Info Copied torrentwhiz.yml +2023-03-16 18:54:02.3938 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml +2023-03-16 18:54:02.3938 Info Copied torrentz2eu.yml +2023-03-16 18:54:02.3938 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml +2023-03-16 18:54:02.3948 Info Copied torrentz2nz.yml +2023-03-16 18:54:02.3948 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml +2023-03-16 18:54:02.3948 Info Copied totallykids.yml +2023-03-16 18:54:02.3948 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml +2023-03-16 18:54:02.3959 Info Copied totheglory.yml +2023-03-16 18:54:02.3959 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml +2023-03-16 18:54:02.3959 Info Copied totheglorycookie.yml +2023-03-16 18:54:02.3959 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml +2023-03-16 18:54:02.3969 Info Copied traht.yml +2023-03-16 18:54:02.3969 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml +2023-03-16 18:54:02.3969 Info Copied trancetraffic.yml +2023-03-16 18:54:02.3969 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml +2023-03-16 18:54:02.3980 Info Copied trezzor.yml +2023-03-16 18:54:02.3980 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml +2023-03-16 18:54:02.3980 Info Copied tribalmixes.yml +2023-03-16 18:54:02.3987 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml +2023-03-16 18:54:02.3987 Info Copied trupornolabs.yml +2023-03-16 18:54:02.3987 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml +2023-03-16 18:54:02.3987 Info Copied turkseed.yml +2023-03-16 18:54:02.3998 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml +2023-03-16 18:54:02.3998 Info Copied turktorrent.yml +2023-03-16 18:54:02.3998 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml +2023-03-16 18:54:02.4008 Info Copied tvchaosuk.yml +2023-03-16 18:54:02.4008 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml +2023-03-16 18:54:02.4008 Info Copied tvroad.yml +2023-03-16 18:54:02.4008 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml +2023-03-16 18:54:02.4019 Info Copied twilight.yml +2023-03-16 18:54:02.4019 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml +2023-03-16 18:54:02.4019 Info Copied u2.yml +2023-03-16 18:54:02.4027 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml +2023-03-16 18:54:02.4027 Info Copied uhdbits.yml +2023-03-16 18:54:02.4027 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml +2023-03-16 18:54:02.4037 Info Copied uniondht.yml +2023-03-16 18:54:02.4037 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml +2023-03-16 18:54:02.4037 Info Copied unionfansub.yml +2023-03-16 18:54:02.4037 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml +2023-03-16 18:54:02.4048 Info Copied uniongang.yml +2023-03-16 18:54:02.4048 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml +2023-03-16 18:54:02.4048 Info Copied unleashthecartoons.yml +2023-03-16 18:54:02.4048 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml +2023-03-16 18:54:02.4059 Info Copied unlimitz.yml +2023-03-16 18:54:02.4059 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml +2023-03-16 18:54:02.4059 Info Copied vsthouse.yml +2023-03-16 18:54:02.4067 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml +2023-03-16 18:54:02.4067 Info Copied vsttorrents.yml +2023-03-16 18:54:02.4067 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml +2023-03-16 18:54:02.4067 Info Copied vtorrent.yml +2023-03-16 18:54:02.4078 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml +2023-03-16 18:54:02.4193 Info Copied whiteangel.yml +2023-03-16 18:54:02.4193 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml +2023-03-16 18:54:02.4200 Info Copied wihd.yml +2023-03-16 18:54:02.4200 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml +2023-03-16 18:54:02.4200 Info Copied world-of-tomorrow.yml +2023-03-16 18:54:02.4208 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml +2023-03-16 18:54:02.4208 Info Copied x-ite.me.yml +2023-03-16 18:54:02.4208 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml +2023-03-16 18:54:02.4218 Info Copied xbytes2.yml +2023-03-16 18:54:02.4218 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml +2023-03-16 18:54:02.4218 Info Copied xthor-api.yml +2023-03-16 18:54:02.4218 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml +2023-03-16 18:54:02.4229 Info Copied xtorrenty.yml +2023-03-16 18:54:02.4229 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml +2023-03-16 18:54:02.4229 Info Copied xtremebytes.yml +2023-03-16 18:54:02.4236 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml +2023-03-16 18:54:02.4236 Info Copied xwtclassics.yml +2023-03-16 18:54:02.4236 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml +2023-03-16 18:54:02.4236 Info Copied xwtorrents.yml +2023-03-16 18:54:02.4248 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml +2023-03-16 18:54:02.4248 Info Copied xxxadulttorrent.yml +2023-03-16 18:54:02.4248 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml +2023-03-16 18:54:02.4257 Info Copied xxxtor.yml +2023-03-16 18:54:02.4257 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml +2023-03-16 18:54:02.4257 Info Copied xxxtorrents.yml +2023-03-16 18:54:02.4257 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml +2023-03-16 18:54:02.4268 Info Copied ydypt.yml +2023-03-16 18:54:02.4268 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml +2023-03-16 18:54:02.4268 Info Copied yggcookie.yml +2023-03-16 18:54:02.4268 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml +2023-03-16 18:54:02.4280 Info Copied yggtorrent.yml +2023-03-16 18:54:02.4280 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml +2023-03-16 18:54:02.4280 Info Copied yourbittorrent.yml +2023-03-16 18:54:02.4287 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml +2023-03-16 18:54:02.4287 Info Copied yts.yml +2023-03-16 18:54:02.4287 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml +2023-03-16 18:54:02.4296 Info Copied zamundanet.yml +2023-03-16 18:54:02.4296 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml +2023-03-16 18:54:02.4296 Info Copied zelkaorg.yml +2023-03-16 18:54:02.4296 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml +2023-03-16 18:54:02.4307 Info Copied zetorrents.yml +2023-03-16 18:54:02.4307 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml +2023-03-16 18:54:02.4307 Info Copied zmpt.yml +2023-03-16 18:54:02.4307 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml +2023-03-16 18:54:02.4318 Info Copied zomb.yml +2023-03-16 18:54:02.4318 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml +2023-03-16 18:54:02.4318 Info Copied ztracker.yml +2023-03-16 18:54:02.4327 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll +2023-03-16 18:54:02.4327 Info Copied FlareSolverrSharp.dll +2023-03-16 18:54:02.4327 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll +2023-03-16 18:54:02.4341 Info Copied ICSharpCode.SharpZipLib.dll +2023-03-16 18:54:02.4341 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh +2023-03-16 18:54:02.4347 Info Copied install_service_systemd.sh +2023-03-16 18:54:02.4347 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/jackett to destination: /app/Jackett/jackett +2023-03-16 18:54:02.4363 Info Copied jackett +2023-03-16 18:54:02.4363 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh +2023-03-16 18:54:02.4363 Info Copied jackett_launcher.sh +2023-03-16 18:54:02.4363 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll +2023-03-16 18:54:02.4411 Info Copied Jackett.Common.dll +2023-03-16 18:54:02.4411 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb +2023-03-16 18:54:02.4423 Info Copied Jackett.Common.pdb +2023-03-16 18:54:02.4423 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json +2023-03-16 18:54:02.4431 Info Copied jackett.deps.json +2023-03-16 18:54:02.4431 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll +2023-03-16 18:54:02.4443 Info Copied jackett.dll +2023-03-16 18:54:02.4443 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb +2023-03-16 18:54:02.4450 Info Copied jackett.pdb +2023-03-16 18:54:02.4450 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json +2023-03-16 18:54:02.4450 Info Copied jackett.runtimeconfig.json +2023-03-16 18:54:02.4457 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater +2023-03-16 18:54:02.4457 Info Copied JackettUpdater +2023-03-16 18:54:02.4457 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json +2023-03-16 18:54:02.4469 Info Copied JackettUpdater.deps.json +2023-03-16 18:54:02.4469 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll +2023-03-16 18:54:02.4488 Info Copied JackettUpdater.dll +2023-03-16 18:54:02.4488 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb +2023-03-16 18:54:02.4488 Info Copied JackettUpdater.pdb +2023-03-16 18:54:02.4496 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json +2023-03-16 18:54:02.4496 Info Copied JackettUpdater.runtimeconfig.json +2023-03-16 18:54:02.4496 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so +2023-03-16 18:54:02.4557 Info Copied libclrjit.so +2023-03-16 18:54:02.4557 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so +2023-03-16 18:54:02.4697 Info Copied libcoreclr.so +2023-03-16 18:54:02.4697 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so +2023-03-16 18:54:02.4718 Info Copied libcoreclrtraceptprovider.so +2023-03-16 18:54:02.4718 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so +2023-03-16 18:54:02.4734 Info Copied libdbgshim.so +2023-03-16 18:54:02.4734 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so +2023-03-16 18:54:02.4745 Info Copied libhostfxr.so +2023-03-16 18:54:02.4747 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so +2023-03-16 18:54:02.4757 Info Copied libhostpolicy.so +2023-03-16 18:54:02.4757 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so +2023-03-16 18:54:02.4757 Info Copied libMono.Unix.so +2023-03-16 18:54:02.4766 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so +2023-03-16 18:54:02.4815 Info Copied libmscordaccore.so +2023-03-16 18:54:02.4817 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so +2023-03-16 18:54:02.4860 Info Copied libmscordbi.so +2023-03-16 18:54:02.4860 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so +2023-03-16 18:54:02.4877 Info Copied libSystem.Globalization.Native.so +2023-03-16 18:54:02.4877 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so +2023-03-16 18:54:02.4897 Info Copied libSystem.IO.Compression.Native.so +2023-03-16 18:54:02.4897 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so +2023-03-16 18:54:02.4897 Info Copied libSystem.Native.so +2023-03-16 18:54:02.4897 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so +2023-03-16 18:54:02.4910 Info Copied libSystem.Net.Security.Native.so +2023-03-16 18:54:02.4910 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so +2023-03-16 18:54:02.4920 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so +2023-03-16 18:54:02.4920 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/LICENSE to destination: /app/Jackett/LICENSE +2023-03-16 18:54:02.4920 Info Copied LICENSE +2023-03-16 18:54:02.4928 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll +2023-03-16 18:54:02.4928 Info Copied Microsoft.AspNetCore.Antiforgery.dll +2023-03-16 18:54:02.4928 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-03-16 18:54:02.4940 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-03-16 18:54:02.4940 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll +2023-03-16 18:54:02.4948 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll +2023-03-16 18:54:02.4948 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll +2023-03-16 18:54:02.4948 Info Copied Microsoft.AspNetCore.Authentication.Core.dll +2023-03-16 18:54:02.4957 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll +2023-03-16 18:54:02.4957 Info Copied Microsoft.AspNetCore.Authentication.dll +2023-03-16 18:54:02.4957 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll +2023-03-16 18:54:02.4972 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll +2023-03-16 18:54:02.4972 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll +2023-03-16 18:54:02.4979 Info Copied Microsoft.AspNetCore.Authorization.dll +2023-03-16 18:54:02.4979 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll +2023-03-16 18:54:02.4979 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll +2023-03-16 18:54:02.4988 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll +2023-03-16 18:54:02.4988 Info Copied Microsoft.AspNetCore.Components.Authorization.dll +2023-03-16 18:54:02.4988 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll +2023-03-16 18:54:02.5009 Info Copied Microsoft.AspNetCore.Components.dll +2023-03-16 18:54:02.5009 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll +2023-03-16 18:54:02.5009 Info Copied Microsoft.AspNetCore.Components.Forms.dll +2023-03-16 18:54:02.5018 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll +2023-03-16 18:54:02.5034 Info Copied Microsoft.AspNetCore.Components.Server.dll +2023-03-16 18:54:02.5034 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll +2023-03-16 18:54:02.5044 Info Copied Microsoft.AspNetCore.Components.Web.dll +2023-03-16 18:54:02.5044 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll +2023-03-16 18:54:02.5052 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll +2023-03-16 18:54:02.5052 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll +2023-03-16 18:54:02.5058 Info Copied Microsoft.AspNetCore.CookiePolicy.dll +2023-03-16 18:54:02.5058 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll +2023-03-16 18:54:02.5058 Info Copied Microsoft.AspNetCore.Cors.dll +2023-03-16 18:54:02.5067 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll +2023-03-16 18:54:02.5067 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll +2023-03-16 18:54:02.5067 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-03-16 18:54:02.5078 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-03-16 18:54:02.5078 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-03-16 18:54:02.5078 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-03-16 18:54:02.5078 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll +2023-03-16 18:54:02.5097 Info Copied Microsoft.AspNetCore.DataProtection.dll +2023-03-16 18:54:02.5097 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-03-16 18:54:02.5097 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-03-16 18:54:02.5097 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-03-16 18:54:02.5109 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-03-16 18:54:02.5109 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll +2023-03-16 18:54:02.5121 Info Copied Microsoft.AspNetCore.Diagnostics.dll +2023-03-16 18:54:02.5121 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-03-16 18:54:02.5128 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-03-16 18:54:02.5128 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll +2023-03-16 18:54:02.5128 Info Copied Microsoft.AspNetCore.dll +2023-03-16 18:54:02.5137 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll +2023-03-16 18:54:02.5137 Info Copied Microsoft.AspNetCore.HostFiltering.dll +2023-03-16 18:54:02.5137 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-03-16 18:54:02.5150 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-03-16 18:54:02.5150 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll +2023-03-16 18:54:02.5162 Info Copied Microsoft.AspNetCore.Hosting.dll +2023-03-16 18:54:02.5162 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-03-16 18:54:02.5170 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-03-16 18:54:02.5170 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll +2023-03-16 18:54:02.5177 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll +2023-03-16 18:54:02.5177 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll +2023-03-16 18:54:02.5188 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll +2023-03-16 18:54:02.5188 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll +2023-03-16 18:54:02.5188 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll +2023-03-16 18:54:02.5197 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll +2023-03-16 18:54:02.5208 Info Copied Microsoft.AspNetCore.Http.Connections.dll +2023-03-16 18:54:02.5208 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll +2023-03-16 18:54:02.5219 Info Copied Microsoft.AspNetCore.Http.dll +2023-03-16 18:54:02.5219 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll +2023-03-16 18:54:02.5239 Info Copied Microsoft.AspNetCore.Http.Extensions.dll +2023-03-16 18:54:02.5239 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll +2023-03-16 18:54:02.5247 Info Copied Microsoft.AspNetCore.Http.Features.dll +2023-03-16 18:54:02.5247 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll +2023-03-16 18:54:02.5273 Info Copied Microsoft.AspNetCore.Http.Results.dll +2023-03-16 18:54:02.5279 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll +2023-03-16 18:54:02.5298 Info Copied Microsoft.AspNetCore.HttpLogging.dll +2023-03-16 18:54:02.5298 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll +2023-03-16 18:54:02.5318 Info Copied Microsoft.AspNetCore.HttpOverrides.dll +2023-03-16 18:54:02.5318 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll +2023-03-16 18:54:02.5336 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll +2023-03-16 18:54:02.5341 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll +2023-03-16 18:54:02.5361 Info Copied Microsoft.AspNetCore.Identity.dll +2023-03-16 18:54:02.5361 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll +2023-03-16 18:54:02.5379 Info Copied Microsoft.AspNetCore.JsonPatch.dll +2023-03-16 18:54:02.5379 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll +2023-03-16 18:54:02.5398 Info Copied Microsoft.AspNetCore.Localization.dll +2023-03-16 18:54:02.5398 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll +2023-03-16 18:54:02.5416 Info Copied Microsoft.AspNetCore.Localization.Routing.dll +2023-03-16 18:54:02.5420 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll +2023-03-16 18:54:02.5434 Info Copied Microsoft.AspNetCore.Metadata.dll +2023-03-16 18:54:02.5438 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-03-16 18:54:02.5459 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-03-16 18:54:02.5459 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-03-16 18:54:02.5483 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-03-16 18:54:02.5487 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll +2023-03-16 18:54:02.5565 Info Copied Microsoft.AspNetCore.Mvc.Core.dll +2023-03-16 18:54:02.5570 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll +2023-03-16 18:54:02.5584 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll +2023-03-16 18:54:02.5589 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-03-16 18:54:02.5606 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-03-16 18:54:02.5610 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll +2023-03-16 18:54:02.5624 Info Copied Microsoft.AspNetCore.Mvc.dll +2023-03-16 18:54:02.5629 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-03-16 18:54:02.5642 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-03-16 18:54:02.5642 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-03-16 18:54:02.5663 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-03-16 18:54:02.5668 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll +2023-03-16 18:54:02.5681 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll +2023-03-16 18:54:02.5681 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-03-16 18:54:02.5703 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-03-16 18:54:02.5708 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll +2023-03-16 18:54:02.5728 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll +2023-03-16 18:54:02.5728 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-03-16 18:54:02.5761 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-03-16 18:54:02.5761 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-03-16 18:54:02.5788 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-03-16 18:54:02.5788 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-03-16 18:54:02.5832 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-03-16 18:54:02.5837 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll +2023-03-16 18:54:02.5852 Info Copied Microsoft.AspNetCore.Razor.dll +2023-03-16 18:54:02.5852 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll +2023-03-16 18:54:02.5872 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll +2023-03-16 18:54:02.5877 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-03-16 18:54:02.5890 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-03-16 18:54:02.5890 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll +2023-03-16 18:54:02.5912 Info Copied Microsoft.AspNetCore.ResponseCaching.dll +2023-03-16 18:54:02.5917 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll +2023-03-16 18:54:02.5932 Info Copied Microsoft.AspNetCore.ResponseCompression.dll +2023-03-16 18:54:02.5937 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll +2023-03-16 18:54:02.5958 Info Copied Microsoft.AspNetCore.Rewrite.dll +2023-03-16 18:54:02.5958 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll +2023-03-16 18:54:02.5977 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll +2023-03-16 18:54:02.5977 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll +2023-03-16 18:54:02.6044 Info Copied Microsoft.AspNetCore.Routing.dll +2023-03-16 18:54:02.6051 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll +2023-03-16 18:54:02.6104 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll +2023-03-16 18:54:02.6110 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll +2023-03-16 18:54:02.6165 Info Copied Microsoft.AspNetCore.Server.IIS.dll +2023-03-16 18:54:02.6171 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll +2023-03-16 18:54:02.6189 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll +2023-03-16 18:54:02.6189 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-03-16 18:54:02.6359 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-03-16 18:54:02.6359 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll +2023-03-16 18:54:02.6382 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll +2023-03-16 18:54:02.6388 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-03-16 18:54:02.6420 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-03-16 18:54:02.6420 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-03-16 18:54:02.6451 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-03-16 18:54:02.6457 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll +2023-03-16 18:54:02.6474 Info Copied Microsoft.AspNetCore.Session.dll +2023-03-16 18:54:02.6478 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll +2023-03-16 18:54:02.6492 Info Copied Microsoft.AspNetCore.SignalR.Common.dll +2023-03-16 18:54:02.6492 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll +2023-03-16 18:54:02.6520 Info Copied Microsoft.AspNetCore.SignalR.Core.dll +2023-03-16 18:54:02.6520 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll +2023-03-16 18:54:02.6533 Info Copied Microsoft.AspNetCore.SignalR.dll +2023-03-16 18:54:02.6538 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-03-16 18:54:02.6552 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-03-16 18:54:02.6552 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll +2023-03-16 18:54:02.6572 Info Copied Microsoft.AspNetCore.StaticFiles.dll +2023-03-16 18:54:02.6572 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll +2023-03-16 18:54:02.6589 Info Copied Microsoft.AspNetCore.WebSockets.dll +2023-03-16 18:54:02.6589 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll +2023-03-16 18:54:02.6610 Info Copied Microsoft.AspNetCore.WebUtilities.dll +2023-03-16 18:54:02.6610 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll +2023-03-16 18:54:02.6652 Info Copied Microsoft.CSharp.dll +2023-03-16 18:54:02.6652 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll +2023-03-16 18:54:02.6668 Info Copied Microsoft.Extensions.Caching.Abstractions.dll +2023-03-16 18:54:02.6668 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll +2023-03-16 18:54:02.6685 Info Copied Microsoft.Extensions.Caching.Memory.dll +2023-03-16 18:54:02.6689 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll +2023-03-16 18:54:02.6700 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll +2023-03-16 18:54:02.6700 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll +2023-03-16 18:54:02.6716 Info Copied Microsoft.Extensions.Configuration.Binder.dll +2023-03-16 18:54:02.6720 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll +2023-03-16 18:54:02.6731 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll +2023-03-16 18:54:02.6731 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll +2023-03-16 18:54:02.6748 Info Copied Microsoft.Extensions.Configuration.dll +2023-03-16 18:54:02.6748 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-03-16 18:54:02.6761 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-03-16 18:54:02.6761 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll +2023-03-16 18:54:02.6777 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll +2023-03-16 18:54:02.6777 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll +2023-03-16 18:54:02.6791 Info Copied Microsoft.Extensions.Configuration.Ini.dll +2023-03-16 18:54:02.6791 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll +2023-03-16 18:54:02.6806 Info Copied Microsoft.Extensions.Configuration.Json.dll +2023-03-16 18:54:02.6810 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-03-16 18:54:02.6821 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-03-16 18:54:02.6821 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll +2023-03-16 18:54:02.6835 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll +2023-03-16 18:54:02.6839 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll +2023-03-16 18:54:02.7228 Info Copied Microsoft.Extensions.Configuration.Xml.dll +2023-03-16 18:54:02.7228 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-03-16 18:54:02.7251 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-03-16 18:54:02.7251 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll +2023-03-16 18:54:02.7274 Info Copied Microsoft.Extensions.DependencyInjection.dll +2023-03-16 18:54:02.7278 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-03-16 18:54:02.7290 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-03-16 18:54:02.7290 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-03-16 18:54:02.7308 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-03-16 18:54:02.7308 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll +2023-03-16 18:54:02.7322 Info Copied Microsoft.Extensions.Features.dll +2023-03-16 18:54:02.7322 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll +2023-03-16 18:54:02.7339 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll +2023-03-16 18:54:02.7339 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll +2023-03-16 18:54:02.7353 Info Copied Microsoft.Extensions.FileProviders.Composite.dll +2023-03-16 18:54:02.7357 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll +2023-03-16 18:54:02.7370 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll +2023-03-16 18:54:02.7370 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll +2023-03-16 18:54:02.7401 Info Copied Microsoft.Extensions.FileProviders.Physical.dll +2023-03-16 18:54:02.7401 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll +2023-03-16 18:54:02.7419 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll +2023-03-16 18:54:02.7419 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll +2023-03-16 18:54:02.7464 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll +2023-03-16 18:54:02.7469 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll +2023-03-16 18:54:02.7484 Info Copied Microsoft.Extensions.Hosting.dll +2023-03-16 18:54:02.7488 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll +2023-03-16 18:54:02.7504 Info Copied Microsoft.Extensions.Http.dll +2023-03-16 18:54:02.7508 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll +2023-03-16 18:54:02.7533 Info Copied Microsoft.Extensions.Identity.Core.dll +2023-03-16 18:54:02.7537 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll +2023-03-16 18:54:02.7551 Info Copied Microsoft.Extensions.Identity.Stores.dll +2023-03-16 18:54:02.7551 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll +2023-03-16 18:54:02.7566 Info Copied Microsoft.Extensions.Localization.Abstractions.dll +2023-03-16 18:54:02.7569 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll +2023-03-16 18:54:02.7580 Info Copied Microsoft.Extensions.Localization.dll +2023-03-16 18:54:02.7580 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll +2023-03-16 18:54:02.7600 Info Copied Microsoft.Extensions.Logging.Abstractions.dll +2023-03-16 18:54:02.7600 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll +2023-03-16 18:54:02.7615 Info Copied Microsoft.Extensions.Logging.Configuration.dll +2023-03-16 18:54:02.7619 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll +2023-03-16 18:54:02.7634 Info Copied Microsoft.Extensions.Logging.Console.dll +2023-03-16 18:54:02.7638 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll +2023-03-16 18:54:02.7648 Info Copied Microsoft.Extensions.Logging.Debug.dll +2023-03-16 18:54:02.7648 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll +2023-03-16 18:54:02.7664 Info Copied Microsoft.Extensions.Logging.dll +2023-03-16 18:54:02.7669 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll +2023-03-16 18:54:02.7680 Info Copied Microsoft.Extensions.Logging.EventLog.dll +2023-03-16 18:54:02.7680 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll +2023-03-16 18:54:02.7696 Info Copied Microsoft.Extensions.Logging.EventSource.dll +2023-03-16 18:54:02.7700 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll +2023-03-16 18:54:02.7711 Info Copied Microsoft.Extensions.Logging.TraceSource.dll +2023-03-16 18:54:02.7711 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll +2023-03-16 18:54:02.7726 Info Copied Microsoft.Extensions.ObjectPool.dll +2023-03-16 18:54:02.7731 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-03-16 18:54:02.7743 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-03-16 18:54:02.7748 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll +2023-03-16 18:54:02.7759 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll +2023-03-16 18:54:02.7759 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll +2023-03-16 18:54:02.7778 Info Copied Microsoft.Extensions.Options.dll +2023-03-16 18:54:02.7778 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll +2023-03-16 18:54:02.7796 Info Copied Microsoft.Extensions.Primitives.dll +2023-03-16 18:54:02.7801 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll +2023-03-16 18:54:02.7813 Info Copied Microsoft.Extensions.WebEncoders.dll +2023-03-16 18:54:02.7817 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll +2023-03-16 18:54:02.7833 Info Copied Microsoft.JSInterop.dll +2023-03-16 18:54:02.7837 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll +2023-03-16 18:54:02.7856 Info Copied Microsoft.Net.Http.Headers.dll +2023-03-16 18:54:02.7861 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll +2023-03-16 18:54:02.8435 Info Copied Microsoft.VisualBasic.Core.dll +2023-03-16 18:54:02.8442 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll +2023-03-16 18:54:02.8453 Info Copied Microsoft.VisualBasic.dll +2023-03-16 18:54:02.8458 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll +2023-03-16 18:54:02.8480 Info Copied Microsoft.Win32.Primitives.dll +2023-03-16 18:54:02.8480 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll +2023-03-16 18:54:02.8498 Info Copied Microsoft.Win32.Registry.dll +2023-03-16 18:54:02.8498 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll +2023-03-16 18:54:02.8523 Info Copied MimeMapping.dll +2023-03-16 18:54:02.8528 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll +2023-03-16 18:54:02.8546 Info Copied Mono.Posix.dll +2023-03-16 18:54:02.8551 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll +2023-03-16 18:54:02.8568 Info Copied Mono.Unix.dll +2023-03-16 18:54:02.8568 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll +2023-03-16 18:54:02.8583 Info Copied mscorlib.dll +2023-03-16 18:54:02.8588 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll +2023-03-16 18:54:02.8601 Info Copied netstandard.dll +2023-03-16 18:54:02.8601 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll +2023-03-16 18:54:02.8750 Info Copied Newtonsoft.Json.Bson.dll +2023-03-16 18:54:02.8758 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll +2023-03-16 18:54:02.8796 Info Copied Newtonsoft.Json.dll +2023-03-16 18:54:02.8802 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll +2023-03-16 18:54:02.8839 Info Copied NLog.dll +2023-03-16 18:54:02.8839 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll +2023-03-16 18:54:02.8856 Info Copied NLog.Extensions.Logging.dll +2023-03-16 18:54:02.8861 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll +2023-03-16 18:54:02.8877 Info Copied NLog.Web.AspNetCore.dll +2023-03-16 18:54:02.8877 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll +2023-03-16 18:54:02.8892 Info Copied Org.Mentalis.dll +2023-03-16 18:54:02.8897 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll +2023-03-16 18:54:02.8918 Info Copied Polly.dll +2023-03-16 18:54:02.8918 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/README.md to destination: /app/Jackett/README.md +2023-03-16 18:54:02.8932 Info Copied README.md +2023-03-16 18:54:02.8937 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll +2023-03-16 18:54:02.8947 Info Copied SocksWebProxy.dll +2023-03-16 18:54:02.8947 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll +2023-03-16 18:54:02.9848 Info Copied System.AppContext.dll +2023-03-16 18:54:02.9868 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll +2023-03-16 18:54:02.9868 Info Copied System.Buffers.dll +2023-03-16 18:54:02.9886 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll +2023-03-16 18:54:02.9914 Info Copied System.Collections.Concurrent.dll +2023-03-16 18:54:02.9920 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll +2023-03-16 18:54:02.9943 Info Copied System.Collections.dll +2023-03-16 18:54:02.9948 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll +2023-03-16 18:54:02.9991 Info Copied System.Collections.Immutable.dll +2023-03-16 18:54:02.9997 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll +2023-03-16 18:54:03.0014 Info Copied System.Collections.NonGeneric.dll +2023-03-16 18:54:03.0020 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll +2023-03-16 18:54:03.0036 Info Copied System.Collections.Specialized.dll +2023-03-16 18:54:03.0041 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll +2023-03-16 18:54:03.0426 Info Copied System.ComponentModel.Annotations.dll +2023-03-16 18:54:03.0434 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll +2023-03-16 18:54:03.0503 Info Copied System.ComponentModel.DataAnnotations.dll +2023-03-16 18:54:03.0508 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll +2023-03-16 18:54:03.0520 Info Copied System.ComponentModel.dll +2023-03-16 18:54:03.0520 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll +2023-03-16 18:54:03.0535 Info Copied System.ComponentModel.EventBasedAsync.dll +2023-03-16 18:54:03.0539 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll +2023-03-16 18:54:03.0553 Info Copied System.ComponentModel.Primitives.dll +2023-03-16 18:54:03.0557 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll +2023-03-16 18:54:03.0597 Info Copied System.ComponentModel.TypeConverter.dll +2023-03-16 18:54:03.0597 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll +2023-03-16 18:54:03.0611 Info Copied System.Configuration.dll +2023-03-16 18:54:03.0611 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll +2023-03-16 18:54:03.1073 Info Copied System.Console.dll +2023-03-16 18:54:03.1081 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll +2023-03-16 18:54:03.1097 Info Copied System.Core.dll +2023-03-16 18:54:03.1097 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll +2023-03-16 18:54:03.1228 Info Copied System.Data.Common.dll +2023-03-16 18:54:03.1228 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll +2023-03-16 18:54:03.1243 Info Copied System.Data.DataSetExtensions.dll +2023-03-16 18:54:03.1243 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll +2023-03-16 18:54:03.1256 Info Copied System.Data.dll +2023-03-16 18:54:03.1261 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll +2023-03-16 18:54:03.1846 Info Copied System.Diagnostics.Contracts.dll +2023-03-16 18:54:03.1854 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll +2023-03-16 18:54:03.1872 Info Copied System.Diagnostics.Debug.dll +2023-03-16 18:54:03.1872 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll +2023-03-16 18:54:03.1938 Info Copied System.Diagnostics.DiagnosticSource.dll +2023-03-16 18:54:03.1938 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll +2023-03-16 18:54:03.1971 Info Copied System.Diagnostics.EventLog.dll +2023-03-16 18:54:03.1971 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll +2023-03-16 18:54:03.1994 Info Copied System.Diagnostics.FileVersionInfo.dll +2023-03-16 18:54:03.2000 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll +2023-03-16 18:54:03.2042 Info Copied System.Diagnostics.Process.dll +2023-03-16 18:54:03.2047 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll +2023-03-16 18:54:03.2079 Info Copied System.Diagnostics.StackTrace.dll +2023-03-16 18:54:03.2079 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll +2023-03-16 18:54:03.2100 Info Copied System.Diagnostics.TextWriterTraceListener.dll +2023-03-16 18:54:03.2100 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll +2023-03-16 18:54:03.2115 Info Copied System.Diagnostics.Tools.dll +2023-03-16 18:54:03.2124 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll +2023-03-16 18:54:03.2139 Info Copied System.Diagnostics.TraceSource.dll +2023-03-16 18:54:03.2139 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll +2023-03-16 18:54:03.2159 Info Copied System.Diagnostics.Tracing.dll +2023-03-16 18:54:03.2159 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.dll to destination: /app/Jackett/System.dll +2023-03-16 18:54:03.2173 Info Copied System.dll +2023-03-16 18:54:03.2177 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll +2023-03-16 18:54:03.2187 Info Copied System.Drawing.dll +2023-03-16 18:54:03.2187 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll +2023-03-16 18:54:03.2204 Info Copied System.Drawing.Primitives.dll +2023-03-16 18:54:03.2209 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll +2023-03-16 18:54:03.2218 Info Copied System.Dynamic.Runtime.dll +2023-03-16 18:54:03.2218 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll +2023-03-16 18:54:03.2240 Info Copied System.Formats.Asn1.dll +2023-03-16 18:54:03.2240 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll +2023-03-16 18:54:03.2253 Info Copied System.Globalization.Calendars.dll +2023-03-16 18:54:03.2258 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll +2023-03-16 18:54:03.2267 Info Copied System.Globalization.dll +2023-03-16 18:54:03.2267 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll +2023-03-16 18:54:03.2279 Info Copied System.Globalization.Extensions.dll +2023-03-16 18:54:03.2279 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll +2023-03-16 18:54:03.2297 Info Copied System.IO.Compression.Brotli.dll +2023-03-16 18:54:03.2297 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll +2023-03-16 18:54:03.2833 Info Copied System.IO.Compression.dll +2023-03-16 18:54:03.2840 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll +2023-03-16 18:54:03.2851 Info Copied System.IO.Compression.FileSystem.dll +2023-03-16 18:54:03.2851 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll +2023-03-16 18:54:03.2868 Info Copied System.IO.Compression.ZipFile.dll +2023-03-16 18:54:03.2868 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll +2023-03-16 18:54:03.2881 Info Copied System.IO.dll +2023-03-16 18:54:03.2887 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll +2023-03-16 18:54:03.2898 Info Copied System.IO.FileSystem.AccessControl.dll +2023-03-16 18:54:03.2898 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll +2023-03-16 18:54:03.2912 Info Copied System.IO.FileSystem.dll +2023-03-16 18:54:03.2912 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll +2023-03-16 18:54:03.2929 Info Copied System.IO.FileSystem.DriveInfo.dll +2023-03-16 18:54:03.2929 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll +2023-03-16 18:54:03.2941 Info Copied System.IO.FileSystem.Primitives.dll +2023-03-16 18:54:03.2941 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll +2023-03-16 18:54:03.2958 Info Copied System.IO.FileSystem.Watcher.dll +2023-03-16 18:54:03.2958 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll +2023-03-16 18:54:03.2975 Info Copied System.IO.IsolatedStorage.dll +2023-03-16 18:54:03.2979 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll +2023-03-16 18:54:03.2994 Info Copied System.IO.MemoryMappedFiles.dll +2023-03-16 18:54:03.3010 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll +2023-03-16 18:54:03.3108 Info Copied System.IO.Pipelines.dll +2023-03-16 18:54:03.3108 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll +2023-03-16 18:54:03.3124 Info Copied System.IO.Pipes.AccessControl.dll +2023-03-16 18:54:03.3128 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll +2023-03-16 18:54:03.3143 Info Copied System.IO.Pipes.dll +2023-03-16 18:54:03.3143 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll +2023-03-16 18:54:03.3157 Info Copied System.IO.UnmanagedMemoryStream.dll +2023-03-16 18:54:03.3157 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll +2023-03-16 18:54:03.3189 Info Copied System.Linq.dll +2023-03-16 18:54:03.3189 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll +2023-03-16 18:54:03.3466 Info Copied System.Linq.Expressions.dll +2023-03-16 18:54:03.3472 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll +2023-03-16 18:54:03.3515 Info Copied System.Linq.Parallel.dll +2023-03-16 18:54:03.3520 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll +2023-03-16 18:54:03.3539 Info Copied System.Linq.Queryable.dll +2023-03-16 18:54:03.3539 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll +2023-03-16 18:54:03.3560 Info Copied System.Memory.dll +2023-03-16 18:54:03.3560 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll +2023-03-16 18:54:03.3576 Info Copied System.Net.dll +2023-03-16 18:54:03.3581 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll +2023-03-16 18:54:03.4115 Info Copied System.Net.Http.dll +2023-03-16 18:54:03.4121 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll +2023-03-16 18:54:03.4135 Info Copied System.Net.Http.Json.dll +2023-03-16 18:54:03.4139 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll +2023-03-16 18:54:03.4160 Info Copied System.Net.HttpListener.dll +2023-03-16 18:54:03.4160 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll +2023-03-16 18:54:03.4192 Info Copied System.Net.Mail.dll +2023-03-16 18:54:03.4192 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll +2023-03-16 18:54:03.4210 Info Copied System.Net.NameResolution.dll +2023-03-16 18:54:03.4210 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll +2023-03-16 18:54:03.4229 Info Copied System.Net.NetworkInformation.dll +2023-03-16 18:54:03.4229 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll +2023-03-16 18:54:03.4246 Info Copied System.Net.Ping.dll +2023-03-16 18:54:03.4250 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll +2023-03-16 18:54:03.4267 Info Copied System.Net.Primitives.dll +2023-03-16 18:54:03.4267 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll +2023-03-16 18:54:03.4294 Info Copied System.Net.Quic.dll +2023-03-16 18:54:03.4298 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll +2023-03-16 18:54:03.4500 Info Copied System.Net.Requests.dll +2023-03-16 18:54:03.4507 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll +2023-03-16 18:54:03.4541 Info Copied System.Net.Security.dll +2023-03-16 18:54:03.4541 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll +2023-03-16 18:54:03.4556 Info Copied System.Net.ServicePoint.dll +2023-03-16 18:54:03.4560 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll +2023-03-16 18:54:03.4587 Info Copied System.Net.Sockets.dll +2023-03-16 18:54:03.4587 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll +2023-03-16 18:54:03.4606 Info Copied System.Net.WebClient.dll +2023-03-16 18:54:03.4610 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll +2023-03-16 18:54:03.4621 Info Copied System.Net.WebHeaderCollection.dll +2023-03-16 18:54:03.4621 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll +2023-03-16 18:54:03.4635 Info Copied System.Net.WebProxy.dll +2023-03-16 18:54:03.4639 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll +2023-03-16 18:54:03.4652 Info Copied System.Net.WebSockets.Client.dll +2023-03-16 18:54:03.4652 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll +2023-03-16 18:54:03.4670 Info Copied System.Net.WebSockets.dll +2023-03-16 18:54:03.4670 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll +2023-03-16 18:54:03.4683 Info Copied System.Numerics.dll +2023-03-16 18:54:03.4687 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll +2023-03-16 18:54:03.4697 Info Copied System.Numerics.Vectors.dll +2023-03-16 18:54:03.4697 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll +2023-03-16 18:54:03.4713 Info Copied System.ObjectModel.dll +2023-03-16 18:54:03.4717 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll +2023-03-16 18:54:03.5211 Info Copied System.Private.CoreLib.dll +2023-03-16 18:54:03.5217 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll +2023-03-16 18:54:03.5285 Info Copied System.Private.DataContractSerialization.dll +2023-03-16 18:54:03.5287 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll +2023-03-16 18:54:03.5287 Info Copied System.Private.Uri.dll +2023-03-16 18:54:03.5297 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll +2023-03-16 18:54:03.5744 Info Copied System.Private.Xml.dll +2023-03-16 18:54:03.5747 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll +2023-03-16 18:54:03.5758 Info Copied System.Private.Xml.Linq.dll +2023-03-16 18:54:03.5758 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll +2023-03-16 18:54:03.5758 Info Copied System.Reflection.DispatchProxy.dll +2023-03-16 18:54:03.5758 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll +2023-03-16 18:54:03.5770 Info Copied System.Reflection.dll +2023-03-16 18:54:03.5770 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll +2023-03-16 18:54:03.5770 Info Copied System.Reflection.Emit.dll +2023-03-16 18:54:03.5777 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll +2023-03-16 18:54:03.5777 Info Copied System.Reflection.Emit.ILGeneration.dll +2023-03-16 18:54:03.5777 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll +2023-03-16 18:54:03.5777 Info Copied System.Reflection.Emit.Lightweight.dll +2023-03-16 18:54:03.5788 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll +2023-03-16 18:54:03.5788 Info Copied System.Reflection.Extensions.dll +2023-03-16 18:54:03.5788 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll +2023-03-16 18:54:03.5813 Info Copied System.Reflection.Metadata.dll +2023-03-16 18:54:03.5813 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll +2023-03-16 18:54:03.5823 Info Copied System.Reflection.Primitives.dll +2023-03-16 18:54:03.5823 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll +2023-03-16 18:54:03.5829 Info Copied System.Reflection.TypeExtensions.dll +2023-03-16 18:54:03.5829 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll +2023-03-16 18:54:03.5829 Info Copied System.Resources.Reader.dll +2023-03-16 18:54:03.5829 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll +2023-03-16 18:54:03.5838 Info Copied System.Resources.ResourceManager.dll +2023-03-16 18:54:03.5838 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll +2023-03-16 18:54:03.5838 Info Copied System.Resources.Writer.dll +2023-03-16 18:54:03.5838 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll +2023-03-16 18:54:03.5852 Info Copied System.Runtime.CompilerServices.Unsafe.dll +2023-03-16 18:54:03.5852 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll +2023-03-16 18:54:03.5857 Info Copied System.Runtime.CompilerServices.VisualC.dll +2023-03-16 18:54:03.5857 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll +2023-03-16 18:54:03.5857 Info Copied System.Runtime.dll +2023-03-16 18:54:03.5857 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll +2023-03-16 18:54:03.5868 Info Copied System.Runtime.Extensions.dll +2023-03-16 18:54:03.5868 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll +2023-03-16 18:54:03.5868 Info Copied System.Runtime.Handles.dll +2023-03-16 18:54:03.5868 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll +2023-03-16 18:54:03.5882 Info Copied System.Runtime.InteropServices.dll +2023-03-16 18:54:03.5882 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll +2023-03-16 18:54:03.5888 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll +2023-03-16 18:54:03.5888 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll +2023-03-16 18:54:03.5888 Info Copied System.Runtime.Intrinsics.dll +2023-03-16 18:54:03.5888 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll +2023-03-16 18:54:03.5898 Info Copied System.Runtime.Loader.dll +2023-03-16 18:54:03.5898 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll +2023-03-16 18:54:03.5915 Info Copied System.Runtime.Numerics.dll +2023-03-16 18:54:03.5917 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll +2023-03-16 18:54:03.5917 Info Copied System.Runtime.Serialization.dll +2023-03-16 18:54:03.5917 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll +2023-03-16 18:54:03.7262 Info Copied System.Runtime.Serialization.Formatters.dll +2023-03-16 18:54:03.7268 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll +2023-03-16 18:54:03.7268 Info Copied System.Runtime.Serialization.Json.dll +2023-03-16 18:54:03.7277 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll +2023-03-16 18:54:03.7277 Info Copied System.Runtime.Serialization.Primitives.dll +2023-03-16 18:54:03.7277 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll +2023-03-16 18:54:03.7292 Info Copied System.Runtime.Serialization.Xml.dll +2023-03-16 18:54:03.7292 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll +2023-03-16 18:54:03.7300 Info Copied System.Security.AccessControl.dll +2023-03-16 18:54:03.7300 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll +2023-03-16 18:54:03.7310 Info Copied System.Security.Claims.dll +2023-03-16 18:54:03.7310 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll +2023-03-16 18:54:03.7344 Info Copied System.Security.Cryptography.Algorithms.dll +2023-03-16 18:54:03.7347 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll +2023-03-16 18:54:03.7347 Info Copied System.Security.Cryptography.Cng.dll +2023-03-16 18:54:03.7347 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll +2023-03-16 18:54:03.7360 Info Copied System.Security.Cryptography.Csp.dll +2023-03-16 18:54:03.7360 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll +2023-03-16 18:54:03.7371 Info Copied System.Security.Cryptography.Encoding.dll +2023-03-16 18:54:03.7371 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll +2023-03-16 18:54:03.7385 Info Copied System.Security.Cryptography.OpenSsl.dll +2023-03-16 18:54:03.7387 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll +2023-03-16 18:54:03.7404 Info Copied System.Security.Cryptography.Pkcs.dll +2023-03-16 18:54:03.7404 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll +2023-03-16 18:54:03.7412 Info Copied System.Security.Cryptography.Primitives.dll +2023-03-16 18:54:03.7412 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll +2023-03-16 18:54:03.7418 Info Copied System.Security.Cryptography.ProtectedData.dll +2023-03-16 18:54:03.7418 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll +2023-03-16 18:54:03.7435 Info Copied System.Security.Cryptography.X509Certificates.dll +2023-03-16 18:54:03.7437 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll +2023-03-16 18:54:03.7448 Info Copied System.Security.Cryptography.Xml.dll +2023-03-16 18:54:03.7448 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll +2023-03-16 18:54:03.7448 Info Copied System.Security.dll +2023-03-16 18:54:03.7448 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll +2023-03-16 18:54:03.7458 Info Copied System.Security.Principal.dll +2023-03-16 18:54:03.7458 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll +2023-03-16 18:54:03.7967 Info Copied System.Security.Principal.Windows.dll +2023-03-16 18:54:03.7967 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll +2023-03-16 18:54:03.7967 Info Copied System.Security.SecureString.dll +2023-03-16 18:54:03.7967 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll +2023-03-16 18:54:03.7978 Info Copied System.ServiceModel.Web.dll +2023-03-16 18:54:03.7978 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll +2023-03-16 18:54:03.7978 Info Copied System.ServiceProcess.dll +2023-03-16 18:54:03.7978 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll +2023-03-16 18:54:03.7989 Info Copied System.ServiceProcess.ServiceController.dll +2023-03-16 18:54:03.7989 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll +2023-03-16 18:54:03.8007 Info Copied System.Text.Encoding.CodePages.dll +2023-03-16 18:54:03.8007 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll +2023-03-16 18:54:03.8007 Info Copied System.Text.Encoding.dll +2023-03-16 18:54:03.8007 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll +2023-03-16 18:54:03.8018 Info Copied System.Text.Encoding.Extensions.dll +2023-03-16 18:54:03.8018 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll +2023-03-16 18:54:03.8018 Info Copied System.Text.Encodings.Web.dll +2023-03-16 18:54:03.8027 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll +2023-03-16 18:54:03.8051 Info Copied System.Text.Json.dll +2023-03-16 18:54:03.8051 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll +2023-03-16 18:54:03.8066 Info Copied System.Text.RegularExpressions.dll +2023-03-16 18:54:03.8066 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll +2023-03-16 18:54:03.8066 Info Copied System.Threading.Channels.dll +2023-03-16 18:54:03.8066 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll +2023-03-16 18:54:03.8081 Info Copied System.Threading.dll +2023-03-16 18:54:03.8081 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll +2023-03-16 18:54:03.8087 Info Copied System.Threading.Overlapped.dll +2023-03-16 18:54:03.8087 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll +2023-03-16 18:54:03.8110 Info Copied System.Threading.Tasks.Dataflow.dll +2023-03-16 18:54:03.8110 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll +2023-03-16 18:54:03.8110 Info Copied System.Threading.Tasks.dll +2023-03-16 18:54:03.8117 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll +2023-03-16 18:54:03.8117 Info Copied System.Threading.Tasks.Extensions.dll +2023-03-16 18:54:03.8117 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll +2023-03-16 18:54:03.8129 Info Copied System.Threading.Tasks.Parallel.dll +2023-03-16 18:54:03.8129 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll +2023-03-16 18:54:03.8129 Info Copied System.Threading.Thread.dll +2023-03-16 18:54:03.8129 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll +2023-03-16 18:54:03.8139 Info Copied System.Threading.ThreadPool.dll +2023-03-16 18:54:03.8139 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll +2023-03-16 18:54:03.8139 Info Copied System.Threading.Timer.dll +2023-03-16 18:54:03.8139 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll +2023-03-16 18:54:03.8150 Info Copied System.Transactions.dll +2023-03-16 18:54:03.8150 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll +2023-03-16 18:54:03.8161 Info Copied System.Transactions.Local.dll +2023-03-16 18:54:03.8161 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll +2023-03-16 18:54:03.8161 Info Copied System.ValueTuple.dll +2023-03-16 18:54:03.8167 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll +2023-03-16 18:54:03.9037 Info Copied System.Web.dll +2023-03-16 18:54:03.9037 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll +2023-03-16 18:54:03.9037 Info Copied System.Web.HttpUtility.dll +2023-03-16 18:54:03.9037 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll +2023-03-16 18:54:03.9050 Info Copied System.Windows.dll +2023-03-16 18:54:03.9050 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll +2023-03-16 18:54:03.9050 Info Copied System.Xml.dll +2023-03-16 18:54:03.9057 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll +2023-03-16 18:54:03.9057 Info Copied System.Xml.Linq.dll +2023-03-16 18:54:03.9057 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll +2023-03-16 18:54:03.9066 Info Copied System.Xml.ReaderWriter.dll +2023-03-16 18:54:03.9066 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll +2023-03-16 18:54:03.9066 Info Copied System.Xml.Serialization.dll +2023-03-16 18:54:03.9066 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll +2023-03-16 18:54:03.9077 Info Copied System.Xml.XDocument.dll +2023-03-16 18:54:03.9077 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll +2023-03-16 18:54:03.9077 Info Copied System.Xml.XmlDocument.dll +2023-03-16 18:54:03.9077 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll +2023-03-16 18:54:03.9088 Info Copied System.Xml.XmlSerializer.dll +2023-03-16 18:54:03.9088 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll +2023-03-16 18:54:03.9088 Info Copied System.Xml.XPath.dll +2023-03-16 18:54:03.9088 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll +2023-03-16 18:54:03.9098 Info Copied System.Xml.XPath.XDocument.dll +2023-03-16 18:54:03.9098 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll +2023-03-16 18:54:03.9098 Info Copied WindowsBase.dll +2023-03-16 18:54:03.9098 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll +2023-03-16 18:54:03.9113 Info Copied YamlDotNet.dll +2023-03-16 18:54:03.9113 Info File copying complete +2023-03-16 18:54:03.9242 Info Killing process 222 +2023-03-16 18:54:06.9972 Info Process 222 didn't exit within 2 seconds after a SIGTERM +2023-03-17 19:54:21.0083 Info Jackett Updater v0.20.3617 +2023-03-17 19:54:21.1027 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "307" "--NoRestart" +2023-03-17 19:54:21.1063 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-17 19:54:21.3162 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb +2023-03-17 19:54:21.3169 Info Deleted /app/Jackett/DateTimeRoutines.pdb +2023-03-17 19:54:21.3169 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb +2023-03-17 19:54:21.3169 Info Deleted /app/Jackett/Jackett.Common.pdb +2023-03-17 19:54:21.3177 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb +2023-03-17 19:54:21.3177 Info Deleted /app/Jackett/JackettUpdater.pdb +2023-03-17 19:54:21.3177 Info Attempting to remove: /app/Jackett/jackett.pdb +2023-03-17 19:54:21.3177 Info Deleted /app/Jackett/jackett.pdb +2023-03-17 19:54:21.3188 Info Attempting to remove: /app/Jackett/jackett +2023-03-17 19:54:21.3188 Info Deleted /app/Jackett/jackett +2023-03-17 19:54:21.3188 Info Finding files in: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/ +2023-03-17 19:54:21.3261 Info 892 update files found +2023-03-17 19:54:21.3274 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll +2023-03-17 19:54:21.3297 Info Copied AngleSharp.dll +2023-03-17 19:54:21.3297 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll +2023-03-17 19:54:21.3297 Info Copied AngleSharp.Xml.dll +2023-03-17 19:54:21.3307 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll +2023-03-17 19:54:21.3318 Info Copied Autofac.dll +2023-03-17 19:54:21.3318 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll +2023-03-17 19:54:21.3327 Info Copied Autofac.Extensions.DependencyInjection.dll +2023-03-17 19:54:21.3327 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll +2023-03-17 19:54:21.3339 Info Copied AutoMapper.dll +2023-03-17 19:54:21.3339 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll +2023-03-17 19:54:21.3355 Info Copied BencodeNET.dll +2023-03-17 19:54:21.3355 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll +2023-03-17 19:54:21.3367 Info Copied CommandLine.dll +2023-03-17 19:54:21.3367 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css +2023-03-17 19:54:21.3367 Info Copied animate.css +2023-03-17 19:54:21.3377 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png +2023-03-17 19:54:21.3377 Info Copied apple-touch-icon.png +2023-03-17 19:54:21.3377 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png +2023-03-17 19:54:21.3389 Info Copied binding_dark.png +2023-03-17 19:54:21.3389 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css +2023-03-17 19:54:21.3398 Info Copied bootstrap.min.css +2023-03-17 19:54:21.3398 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js +2023-03-17 19:54:21.3398 Info Copied bootstrap.min.js +2023-03-17 19:54:21.3407 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js +2023-03-17 19:54:21.3407 Info Copied common.js +2023-03-17 19:54:21.3407 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css +2023-03-17 19:54:21.3418 Info Copied bootstrap-multiselect.css +2023-03-17 19:54:21.3418 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css +2023-03-17 19:54:21.3418 Info Copied font-awesome.min.css +2023-03-17 19:54:21.3427 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css +2023-03-17 19:54:21.3427 Info Copied jquery.dataTables.min.css +2023-03-17 19:54:21.3427 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css +2023-03-17 19:54:21.3438 Info Copied tagify.css +2023-03-17 19:54:21.3438 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css +2023-03-17 19:54:21.3438 Info Copied custom_mobile.css +2023-03-17 19:54:21.3438 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css +2023-03-17 19:54:21.3450 Info Copied custom.css +2023-03-17 19:54:21.3450 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js +2023-03-17 19:54:21.3458 Info Copied custom.js +2023-03-17 19:54:21.3458 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico +2023-03-17 19:54:21.3475 Info Copied favicon.ico +2023-03-17 19:54:21.3478 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot +2023-03-17 19:54:21.3492 Info Copied fontawesome-webfont.eot +2023-03-17 19:54:21.3492 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg +2023-03-17 19:54:21.3504 Info Copied fontawesome-webfont.svg +2023-03-17 19:54:21.3504 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf +2023-03-17 19:54:21.3513 Info Copied fontawesome-webfont.ttf +2023-03-17 19:54:21.3513 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff +2023-03-17 19:54:21.3522 Info Copied fontawesome-webfont.woff +2023-03-17 19:54:21.3522 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 +2023-03-17 19:54:21.3529 Info Copied fontawesome-webfont.woff2 +2023-03-17 19:54:21.3529 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf +2023-03-17 19:54:21.3538 Info Copied FontAwesome.otf +2023-03-17 19:54:21.3538 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot +2023-03-17 19:54:21.3538 Info Copied glyphicons-halflings-regular.eot +2023-03-17 19:54:21.3547 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg +2023-03-17 19:54:21.3547 Info Copied glyphicons-halflings-regular.svg +2023-03-17 19:54:21.3547 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf +2023-03-17 19:54:21.3562 Info Copied glyphicons-halflings-regular.ttf +2023-03-17 19:54:21.3562 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff +2023-03-17 19:54:21.3569 Info Copied glyphicons-halflings-regular.woff +2023-03-17 19:54:21.3569 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 +2023-03-17 19:54:21.3569 Info Copied glyphicons-halflings-regular.woff2 +2023-03-17 19:54:21.3578 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png +2023-03-17 19:54:21.3578 Info Copied sort_asc_disabled.png +2023-03-17 19:54:21.3578 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png +2023-03-17 19:54:21.3589 Info Copied sort_asc.png +2023-03-17 19:54:21.3589 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png +2023-03-17 19:54:21.3589 Info Copied sort_both.png +2023-03-17 19:54:21.3597 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png +2023-03-17 19:54:21.3597 Info Copied sort_desc_disabled.png +2023-03-17 19:54:21.3597 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png +2023-03-17 19:54:21.3608 Info Copied sort_desc.png +2023-03-17 19:54:21.3608 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html +2023-03-17 19:54:21.3608 Info Copied index.html +2023-03-17 19:54:21.3618 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png +2023-03-17 19:54:21.3618 Info Copied jacket_medium.png +2023-03-17 19:54:21.3618 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js +2023-03-17 19:54:21.3629 Info Copied api.js +2023-03-17 19:54:21.3629 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js +2023-03-17 19:54:21.3629 Info Copied bootstrap-multiselect.js +2023-03-17 19:54:21.3638 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js +2023-03-17 19:54:21.3638 Info Copied bootstrap-notify.js +2023-03-17 19:54:21.3638 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js +2023-03-17 19:54:21.3650 Info Copied filesize.min.js +2023-03-17 19:54:21.3650 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js +2023-03-17 19:54:21.3658 Info Copied handlebars.min.js +2023-03-17 19:54:21.3658 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js +2023-03-17 19:54:21.3658 Info Copied handlebarsextend.js +2023-03-17 19:54:21.3667 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js +2023-03-17 19:54:21.3667 Info Copied handlebarsmoment.js +2023-03-17 19:54:21.3667 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js +2023-03-17 19:54:21.3680 Info Copied jquery.dataTables.min.js +2023-03-17 19:54:21.3680 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js +2023-03-17 19:54:21.3689 Info Copied jquery.min.js +2023-03-17 19:54:21.3689 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js +2023-03-17 19:54:21.3697 Info Copied jQuery.tagify.min.js +2023-03-17 19:54:21.3697 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js +2023-03-17 19:54:21.3713 Info Copied moment.min.js +2023-03-17 19:54:21.3713 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js +2023-03-17 19:54:21.3720 Info Copied tagify.min.js +2023-03-17 19:54:21.3720 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html +2023-03-17 19:54:21.3727 Info Copied login.html +2023-03-17 19:54:21.3727 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/createdump to destination: /app/Jackett/createdump +2023-03-17 19:54:21.3727 Info Copied createdump +2023-03-17 19:54:21.3756 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll +2023-03-17 19:54:21.3783 Info Copied DateTimeRoutines.dll +2023-03-17 19:54:21.3788 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb +2023-03-17 19:54:21.3802 Info Copied DateTimeRoutines.pdb +2023-03-17 19:54:21.3802 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml +2023-03-17 19:54:21.3817 Info Copied 0daykiev.yml +2023-03-17 19:54:21.3817 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml +2023-03-17 19:54:21.3833 Info Copied 0magnet.yml +2023-03-17 19:54:21.3838 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml +2023-03-17 19:54:21.3849 Info Copied 1337x.yml +2023-03-17 19:54:21.3849 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml +2023-03-17 19:54:21.3864 Info Copied 1ptbar.yml +2023-03-17 19:54:21.3869 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml +2023-03-17 19:54:21.3880 Info Copied 2fast4you.yml +2023-03-17 19:54:21.3880 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml +2023-03-17 19:54:21.3895 Info Copied 2xfree.yml +2023-03-17 19:54:21.3900 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml +2023-03-17 19:54:21.3911 Info Copied 3changtrai.yml +2023-03-17 19:54:21.3911 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml +2023-03-17 19:54:21.3926 Info Copied 3dtorrents.yml +2023-03-17 19:54:21.3931 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml +2023-03-17 19:54:21.3944 Info Copied 4thd.yml +2023-03-17 19:54:21.3950 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml +2023-03-17 19:54:21.3960 Info Copied 52pt.yml +2023-03-17 19:54:21.3960 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml +2023-03-17 19:54:21.3975 Info Copied abnormal.yml +2023-03-17 19:54:21.3981 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml +2023-03-17 19:54:21.3993 Info Copied abtorrents.yml +2023-03-17 19:54:21.3998 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml +2023-03-17 19:54:21.4009 Info Copied acervos-api.yml +2023-03-17 19:54:21.4009 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml +2023-03-17 19:54:21.4025 Info Copied acgrip.yml +2023-03-17 19:54:21.4030 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml +2023-03-17 19:54:21.4040 Info Copied acgsou.yml +2023-03-17 19:54:21.4040 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml +2023-03-17 19:54:21.4055 Info Copied acidlounge.yml +2023-03-17 19:54:21.4061 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml +2023-03-17 19:54:21.4071 Info Copied acrossthetasman.yml +2023-03-17 19:54:21.4071 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml +2023-03-17 19:54:21.4087 Info Copied aftershock.yml +2023-03-17 19:54:21.4087 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml +2023-03-17 19:54:21.4102 Info Copied aidoruonline.yml +2023-03-17 19:54:21.4107 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml +2023-03-17 19:54:21.4118 Info Copied aither-api.yml +2023-03-17 19:54:21.4118 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml +2023-03-17 19:54:21.4133 Info Copied amigosshare.yml +2023-03-17 19:54:21.4138 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml +2023-03-17 19:54:21.4149 Info Copied anilibria.yml +2023-03-17 19:54:21.4149 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml +2023-03-17 19:54:21.4164 Info Copied anime-free.yml +2023-03-17 19:54:21.4168 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml +2023-03-17 19:54:21.4178 Info Copied animelayer.yml +2023-03-17 19:54:21.4178 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml +2023-03-17 19:54:21.4193 Info Copied animetracker.yml +2023-03-17 19:54:21.4210 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml +2023-03-17 19:54:21.4222 Info Copied animeworld-api.yml +2023-03-17 19:54:21.4222 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml +2023-03-17 19:54:21.4237 Info Copied anirena.yml +2023-03-17 19:54:21.4237 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml +2023-03-17 19:54:21.4252 Info Copied anisource.yml +2023-03-17 19:54:21.4257 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml +2023-03-17 19:54:21.4268 Info Copied anthelion-api.yml +2023-03-17 19:54:21.4268 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml +2023-03-17 19:54:21.4283 Info Copied arabafenice.yml +2023-03-17 19:54:21.4288 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml +2023-03-17 19:54:21.4298 Info Copied arabp2p.yml +2023-03-17 19:54:21.4298 Info Attempting to copy arabtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/arabtorrents.yml to destination: /app/Jackett/Definitions/arabtorrents.yml +2023-03-17 19:54:21.4314 Info Copied arabtorrents.yml +2023-03-17 19:54:21.4319 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml +2023-03-17 19:54:21.4329 Info Copied arenabg.yml +2023-03-17 19:54:21.4329 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml +2023-03-17 19:54:21.4345 Info Copied asiancinema.yml +2023-03-17 19:54:21.4350 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml +2023-03-17 19:54:21.4360 Info Copied asiandvdclub.yml +2023-03-17 19:54:21.4399 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml +2023-03-17 19:54:21.4412 Info Copied audiences.yml +2023-03-17 19:54:21.4417 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml +2023-03-17 19:54:21.4430 Info Copied audionews.yml +2023-03-17 19:54:21.4430 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml +2023-03-17 19:54:21.4447 Info Copied aussierules.yml +2023-03-17 19:54:21.4447 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml +2023-03-17 19:54:21.4465 Info Copied backups.yml +2023-03-17 19:54:21.4471 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml +2023-03-17 19:54:21.4484 Info Copied badasstorrents.yml +2023-03-17 19:54:21.4491 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml +2023-03-17 19:54:21.4504 Info Copied bangumi-moe.yml +2023-03-17 19:54:21.4511 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml +2023-03-17 19:54:21.4523 Info Copied beitai.yml +2023-03-17 19:54:21.4529 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml +2023-03-17 19:54:21.4541 Info Copied bestcore.yml +2023-03-17 19:54:21.4547 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml +2023-03-17 19:54:21.4558 Info Copied beyond-hd.yml +2023-03-17 19:54:21.4558 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml +2023-03-17 19:54:21.4575 Info Copied bibliotik.yml +2023-03-17 19:54:21.4580 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml +2023-03-17 19:54:21.4591 Info Copied bigfangroup.yml +2023-03-17 19:54:21.4598 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml +2023-03-17 19:54:21.4608 Info Copied bitbazis.yml +2023-03-17 19:54:21.4608 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml +2023-03-17 19:54:21.4625 Info Copied bitded.yml +2023-03-17 19:54:21.4630 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml +2023-03-17 19:54:21.4641 Info Copied bithorlo.yml +2023-03-17 19:54:21.4647 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml +2023-03-17 19:54:21.4659 Info Copied bithumen.yml +2023-03-17 19:54:21.4669 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml +2023-03-17 19:54:21.4680 Info Copied bitnova.yml +2023-03-17 19:54:21.4680 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml +2023-03-17 19:54:21.4696 Info Copied bitofvalor.yml +2023-03-17 19:54:21.4702 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml +2023-03-17 19:54:21.4714 Info Copied bitru.yml +2023-03-17 19:54:21.4718 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml +2023-03-17 19:54:21.4729 Info Copied bitsearch.yml +2023-03-17 19:54:21.4729 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml +2023-03-17 19:54:21.4748 Info Copied bitsexy.yml +2023-03-17 19:54:21.4748 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml +2023-03-17 19:54:21.4763 Info Copied bitspyder.yml +2023-03-17 19:54:21.4768 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml +2023-03-17 19:54:21.4780 Info Copied Bittorrentfiles.yml +2023-03-17 19:54:21.4780 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml +2023-03-17 19:54:21.4794 Info Copied bitturk.yml +2023-03-17 19:54:21.4800 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml +2023-03-17 19:54:21.4810 Info Copied bluebird.yml +2023-03-17 19:54:21.4810 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml +2023-03-17 19:54:21.4826 Info Copied blutopia-api.yml +2023-03-17 19:54:21.4830 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml +2023-03-17 19:54:21.4841 Info Copied booktracker.yml +2023-03-17 19:54:21.4841 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml +2023-03-17 19:54:21.4857 Info Copied bootytape.yml +2023-03-17 19:54:21.4857 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml +2023-03-17 19:54:21.4872 Info Copied borgzelle.yml +2023-03-17 19:54:21.4877 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml +2023-03-17 19:54:21.4889 Info Copied boxingtorrents.yml +2023-03-17 19:54:21.4889 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml +2023-03-17 19:54:21.4905 Info Copied broadcity.yml +2023-03-17 19:54:21.4910 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml +2023-03-17 19:54:21.4921 Info Copied brsociety-api.yml +2023-03-17 19:54:21.4921 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml +2023-03-17 19:54:21.4935 Info Copied bt4g.yml +2023-03-17 19:54:21.4940 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml +2023-03-17 19:54:21.4950 Info Copied btdigg.yml +2023-03-17 19:54:21.4950 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml +2023-03-17 19:54:21.4965 Info Copied btetree.yml +2023-03-17 19:54:21.4970 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml +2023-03-17 19:54:21.4981 Info Copied btmet.yml +2023-03-17 19:54:21.4981 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml +2023-03-17 19:54:21.4996 Info Copied btnext.yml +2023-03-17 19:54:21.5001 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml +2023-03-17 19:54:21.5011 Info Copied btschool.yml +2023-03-17 19:54:21.5011 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml +2023-03-17 19:54:21.5027 Info Copied btsow.yml +2023-03-17 19:54:21.5027 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml +2023-03-17 19:54:21.5040 Info Copied bulltorrent.yml +2023-03-17 19:54:21.5040 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml +2023-03-17 19:54:21.5057 Info Copied bwtorrents.yml +2023-03-17 19:54:21.5057 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml +2023-03-17 19:54:21.5072 Info Copied byrbt.yml +2023-03-17 19:54:21.5077 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml +2023-03-17 19:54:21.5088 Info Copied byrutor.yml +2023-03-17 19:54:21.5088 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml +2023-03-17 19:54:21.5104 Info Copied carpathians.yml +2023-03-17 19:54:21.5108 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml +2023-03-17 19:54:21.5119 Info Copied carphunter.yml +2023-03-17 19:54:21.5119 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml +2023-03-17 19:54:21.5134 Info Copied carpt.yml +2023-03-17 19:54:21.5139 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml +2023-03-17 19:54:21.5150 Info Copied cartoonchaos.yml +2023-03-17 19:54:21.5150 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml +2023-03-17 19:54:21.5167 Info Copied cathoderaytube.yml +2023-03-17 19:54:21.5171 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml +2023-03-17 19:54:21.5181 Info Copied catorrent.yml +2023-03-17 19:54:21.5181 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml +2023-03-17 19:54:21.5195 Info Copied ccfbits.yml +2023-03-17 19:54:21.5200 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml +2023-03-17 19:54:21.5211 Info Copied ceskeforum.yml +2023-03-17 19:54:21.5211 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml +2023-03-17 19:54:21.5225 Info Copied chdbits.yml +2023-03-17 19:54:21.5230 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml +2023-03-17 19:54:21.5240 Info Copied chilebt.yml +2023-03-17 19:54:21.5240 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml +2023-03-17 19:54:21.5255 Info Copied cinemageddon.yml +2023-03-17 19:54:21.5260 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml +2023-03-17 19:54:21.5271 Info Copied cinemamovies.yml +2023-03-17 19:54:21.5271 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml +2023-03-17 19:54:21.5285 Info Copied cinematik.yml +2023-03-17 19:54:21.5290 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml +2023-03-17 19:54:21.5300 Info Copied classix.yml +2023-03-17 19:54:21.5300 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml +2023-03-17 19:54:21.5315 Info Copied coastalcrew.yml +2023-03-17 19:54:21.5319 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml +2023-03-17 19:54:21.5329 Info Copied comicat.yml +2023-03-17 19:54:21.5329 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml +2023-03-17 19:54:21.5343 Info Copied concen.yml +2023-03-17 19:54:21.5348 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml +2023-03-17 19:54:21.5359 Info Copied concertos.yml +2023-03-17 19:54:21.5359 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml +2023-03-17 19:54:21.5373 Info Copied cpabien.yml +2023-03-17 19:54:21.5378 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml +2023-03-17 19:54:21.5388 Info Copied cpasbienclone.yml +2023-03-17 19:54:21.5388 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml +2023-03-17 19:54:21.5402 Info Copied cpasbiensi.yml +2023-03-17 19:54:21.5402 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml +2023-03-17 19:54:21.5416 Info Copied crackingpatching.yml +2023-03-17 19:54:21.5421 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml +2023-03-17 19:54:21.5431 Info Copied crazyhd.yml +2023-03-17 19:54:21.5431 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml +2023-03-17 19:54:21.5445 Info Copied crazyspirits.yml +2023-03-17 19:54:21.5450 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml +2023-03-17 19:54:21.5460 Info Copied crnaberza.yml +2023-03-17 19:54:21.5460 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml +2023-03-17 19:54:21.5475 Info Copied crt2fa.yml +2023-03-17 19:54:21.5479 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml +2023-03-17 19:54:21.5489 Info Copied danishbytes-api.yml +2023-03-17 19:54:21.5489 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml +2023-03-17 19:54:21.5505 Info Copied dariustracker.yml +2023-03-17 19:54:21.5509 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml +2023-03-17 19:54:21.5520 Info Copied dark-shadow.yml +2023-03-17 19:54:21.5520 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml +2023-03-17 19:54:21.5560 Info Copied datascene-api.yml +2023-03-17 19:54:21.5560 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml +2023-03-17 19:54:21.5574 Info Copied datatalli.yml +2023-03-17 19:54:21.5579 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml +2023-03-17 19:54:21.5590 Info Copied deildu.yml +2023-03-17 19:54:21.5590 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml +2023-03-17 19:54:21.5605 Info Copied demonoid.yml +2023-03-17 19:54:21.5609 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml +2023-03-17 19:54:21.5620 Info Copied desitorrents-api.yml +2023-03-17 19:54:21.5620 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml +2023-03-17 19:54:21.5635 Info Copied devil-torrents.yml +2023-03-17 19:54:21.5639 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml +2023-03-17 19:54:21.5662 Info Copied diablotorrent.yml +2023-03-17 19:54:21.5662 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml +2023-03-17 19:54:21.5677 Info Copied digitalcore.yml +2023-03-17 19:54:21.5677 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml +2023-03-17 19:54:21.5692 Info Copied dimeadozen.yml +2023-03-17 19:54:21.5697 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml +2023-03-17 19:54:21.5707 Info Copied discfan.yml +2023-03-17 19:54:21.5707 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml +2023-03-17 19:54:21.5722 Info Copied divteam.yml +2023-03-17 19:54:21.5722 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml +2023-03-17 19:54:21.5736 Info Copied dmhy.yml +2023-03-17 19:54:21.5741 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml +2023-03-17 19:54:21.5751 Info Copied docspedia.yml +2023-03-17 19:54:21.5751 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml +2023-03-17 19:54:21.5765 Info Copied dodder.yml +2023-03-17 19:54:21.5770 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml +2023-03-17 19:54:21.5781 Info Copied dreamtracker.yml +2023-03-17 19:54:21.5781 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml +2023-03-17 19:54:21.5796 Info Copied dxp.yml +2023-03-17 19:54:21.5800 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml +2023-03-17 19:54:21.5810 Info Copied ebookbay.yml +2023-03-17 19:54:21.5810 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml +2023-03-17 19:54:21.5826 Info Copied ebooks-shares.yml +2023-03-17 19:54:21.5830 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml +2023-03-17 19:54:21.5840 Info Copied ehentai.yml +2023-03-17 19:54:21.5840 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml +2023-03-17 19:54:21.5854 Info Copied electro-torrent.yml +2023-03-17 19:54:21.5860 Info Attempting to copy elitetorrent-pl.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/elitetorrent-pl.yml to destination: /app/Jackett/Definitions/elitetorrent-pl.yml +2023-03-17 19:54:21.5870 Info Copied elitetorrent-pl.yml +2023-03-17 19:54:21.5870 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml +2023-03-17 19:54:21.5885 Info Copied empornium.yml +2023-03-17 19:54:21.5889 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml +2023-03-17 19:54:21.5901 Info Copied empornium2fa.yml +2023-03-17 19:54:21.5901 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml +2023-03-17 19:54:21.5915 Info Copied eniahd.yml +2023-03-17 19:54:21.5920 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml +2023-03-17 19:54:21.5930 Info Copied esharenet.yml +2023-03-17 19:54:21.5930 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml +2023-03-17 19:54:21.5945 Info Copied estone.yml +2023-03-17 19:54:21.5950 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml +2023-03-17 19:54:21.5960 Info Copied exkinoray.yml +2023-03-17 19:54:21.5960 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml +2023-03-17 19:54:21.5975 Info Copied extratorrent-st.yml +2023-03-17 19:54:21.5980 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml +2023-03-17 19:54:21.5990 Info Copied extremebits.yml +2023-03-17 19:54:21.5990 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml +2023-03-17 19:54:21.6005 Info Copied extremetorrents.yml +2023-03-17 19:54:21.6010 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml +2023-03-17 19:54:21.6020 Info Copied extremlymtorrents.yml +2023-03-17 19:54:21.6020 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml +2023-03-17 19:54:21.6035 Info Copied exttorrents.yml +2023-03-17 19:54:21.6039 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml +2023-03-17 19:54:21.6050 Info Copied eztv.yml +2023-03-17 19:54:21.6050 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml +2023-03-17 19:54:21.6068 Info Copied falkonvisionteam.yml +2023-03-17 19:54:21.6068 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml +2023-03-17 19:54:21.6083 Info Copied fanoin.yml +2023-03-17 19:54:21.6087 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml +2023-03-17 19:54:21.6098 Info Copied fantasticheaven.yml +2023-03-17 19:54:21.6098 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml +2023-03-17 19:54:21.6113 Info Copied fantastiko.yml +2023-03-17 19:54:21.6117 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml +2023-03-17 19:54:21.6127 Info Copied femdomcult.yml +2023-03-17 19:54:21.6127 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml +2023-03-17 19:54:21.6142 Info Copied fenyarnyek-tracker.yml +2023-03-17 19:54:21.6147 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml +2023-03-17 19:54:21.6158 Info Copied file-tracker.yml +2023-03-17 19:54:21.6174 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml +2023-03-17 19:54:21.6174 Info Copied filelisting.yml +2023-03-17 19:54:21.6189 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml +2023-03-17 19:54:21.6199 Info Copied finelite.yml +2023-03-17 19:54:21.6199 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml +2023-03-17 19:54:21.6214 Info Copied finvip.yml +2023-03-17 19:54:21.6218 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml +2023-03-17 19:54:21.6229 Info Copied firebit.yml +2023-03-17 19:54:21.6229 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml +2023-03-17 19:54:21.6244 Info Copied fluxzone.yml +2023-03-17 19:54:21.6248 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml +2023-03-17 19:54:21.6260 Info Copied freshmeat.yml +2023-03-17 19:54:21.6260 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml +2023-03-17 19:54:21.6274 Info Copied frozenlayer.yml +2023-03-17 19:54:21.6279 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml +2023-03-17 19:54:21.6290 Info Copied ftuapps.yml +2023-03-17 19:54:21.6290 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml +2023-03-17 19:54:21.6305 Info Copied funkytorrents.yml +2023-03-17 19:54:21.6310 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml +2023-03-17 19:54:21.6321 Info Copied fuzer.yml +2023-03-17 19:54:21.6321 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml +2023-03-17 19:54:21.6335 Info Copied gainbound.yml +2023-03-17 19:54:21.6340 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml +2023-03-17 19:54:21.6350 Info Copied gamestorrents.yml +2023-03-17 19:54:21.6350 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml +2023-03-17 19:54:21.6365 Info Copied gay-torrents.yml +2023-03-17 19:54:21.6369 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml +2023-03-17 19:54:21.6380 Info Copied gay-torrentsorg.yml +2023-03-17 19:54:21.6380 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml +2023-03-17 19:54:21.6395 Info Copied gaytorrentru.yml +2023-03-17 19:54:21.6400 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml +2023-03-17 19:54:21.6411 Info Copied generationfree-api.yml +2023-03-17 19:54:21.6411 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml +2023-03-17 19:54:21.6427 Info Copied genesismovement.yml +2023-03-17 19:54:21.6427 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml +2023-03-17 19:54:21.6441 Info Copied gigatorrents.yml +2023-03-17 19:54:21.6441 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml +2023-03-17 19:54:21.6456 Info Copied gimmepeers.yml +2023-03-17 19:54:21.6461 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml +2023-03-17 19:54:21.6471 Info Copied girotorrent.yml +2023-03-17 19:54:21.6471 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml +2023-03-17 19:54:21.6486 Info Copied gktorrent.yml +2023-03-17 19:54:21.6491 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml +2023-03-17 19:54:21.6501 Info Copied glodls.yml +2023-03-17 19:54:21.6501 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml +2023-03-17 19:54:21.6517 Info Copied greekdiamond.yml +2023-03-17 19:54:21.6517 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml +2023-03-17 19:54:21.6531 Info Copied greekteam.yml +2023-03-17 19:54:21.6531 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml +2023-03-17 19:54:21.6546 Info Copied gtorrentpro.yml +2023-03-17 19:54:21.6551 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml +2023-03-17 19:54:21.6561 Info Copied haidan.yml +2023-03-17 19:54:21.6561 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml +2023-03-17 19:54:21.6576 Info Copied haitang.yml +2023-03-17 19:54:21.6581 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml +2023-03-17 19:54:21.6590 Info Copied happyfappy.yml +2023-03-17 19:54:21.6590 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml +2023-03-17 19:54:21.6605 Info Copied hawke-uno.yml +2023-03-17 19:54:21.6610 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml +2023-03-17 19:54:21.6620 Info Copied hd-unit3d-api.yml +2023-03-17 19:54:21.6620 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml +2023-03-17 19:54:21.6636 Info Copied hd4fans.yml +2023-03-17 19:54:21.6640 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml +2023-03-17 19:54:21.6651 Info Copied hdarea.yml +2023-03-17 19:54:21.6651 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml +2023-03-17 19:54:21.6665 Info Copied hdatmos.yml +2023-03-17 19:54:21.6670 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml +2023-03-17 19:54:21.6680 Info Copied hdc.yml +2023-03-17 19:54:21.6680 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml +2023-03-17 19:54:21.6695 Info Copied hdchina.yml +2023-03-17 19:54:21.6700 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml +2023-03-17 19:54:21.6712 Info Copied hdcztorrent.yml +2023-03-17 19:54:21.6712 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml +2023-03-17 19:54:21.6726 Info Copied hddolby.yml +2023-03-17 19:54:21.6731 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml +2023-03-17 19:54:21.6754 Info Copied hdfans.yml +2023-03-17 19:54:21.6760 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml +2023-03-17 19:54:21.6770 Info Copied hdforever.yml +2023-03-17 19:54:21.6770 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml +2023-03-17 19:54:21.6784 Info Copied hdgalaktik.yml +2023-03-17 19:54:21.6789 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml +2023-03-17 19:54:21.6799 Info Copied hdhome.yml +2023-03-17 19:54:21.6799 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml +2023-03-17 19:54:21.6814 Info Copied hdmayi.yml +2023-03-17 19:54:21.6819 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml +2023-03-17 19:54:21.6829 Info Copied hdmonkey.yml +2023-03-17 19:54:21.6829 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml +2023-03-17 19:54:21.6842 Info Copied hdolimpo-api.yml +2023-03-17 19:54:21.6848 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml +2023-03-17 19:54:21.6859 Info Copied hdonly.yml +2023-03-17 19:54:21.6859 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml +2023-03-17 19:54:21.6872 Info Copied hdroute.yml +2023-03-17 19:54:21.6872 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml +2023-03-17 19:54:21.6887 Info Copied hdsky.yml +2023-03-17 19:54:21.6887 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml +2023-03-17 19:54:21.6902 Info Copied hdtime.yml +2023-03-17 19:54:21.6902 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml +2023-03-17 19:54:21.6917 Info Copied hdtorrentsit.yml +2023-03-17 19:54:21.6917 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml +2023-03-17 19:54:21.6930 Info Copied hdturk.yml +2023-03-17 19:54:21.6930 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml +2023-03-17 19:54:21.6945 Info Copied hdu.yml +2023-03-17 19:54:21.6950 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml +2023-03-17 19:54:21.6960 Info Copied hdzone.yml +2023-03-17 19:54:21.6960 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml +2023-03-17 19:54:21.6975 Info Copied hebits.yml +2023-03-17 19:54:21.6980 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml +2023-03-17 19:54:21.6990 Info Copied hellashut.yml +2023-03-17 19:54:21.6990 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml +2023-03-17 19:54:21.7005 Info Copied hhanclub.yml +2023-03-17 19:54:21.7009 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml +2023-03-17 19:54:21.7020 Info Copied houseofdevil.yml +2023-03-17 19:54:21.7020 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml +2023-03-17 19:54:21.7048 Info Copied hqmusic.yml +2023-03-17 19:54:21.7048 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml +2023-03-17 19:54:21.7063 Info Copied huntorrent.yml +2023-03-17 19:54:21.7068 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml +2023-03-17 19:54:21.7079 Info Copied icc2022.yml +2023-03-17 19:54:21.7079 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml +2023-03-17 19:54:21.7093 Info Copied idope.yml +2023-03-17 19:54:21.7097 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml +2023-03-17 19:54:21.7109 Info Copied ihdbits.yml +2023-03-17 19:54:21.7109 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml +2023-03-17 19:54:21.7123 Info Copied ilcorsaroblu.yml +2023-03-17 19:54:21.7128 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml +2023-03-17 19:54:21.7139 Info Copied ilcorsaronero.yml +2023-03-17 19:54:21.7139 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml +2023-03-17 19:54:21.7153 Info Copied immortuos.yml +2023-03-17 19:54:21.7158 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml +2023-03-17 19:54:21.7168 Info Copied indietorrents.yml +2023-03-17 19:54:21.7168 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml +2023-03-17 19:54:21.7183 Info Copied insanetracker.yml +2023-03-17 19:54:21.7188 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml +2023-03-17 19:54:21.7197 Info Copied internetarchive.yml +2023-03-17 19:54:21.7197 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml +2023-03-17 19:54:21.7211 Info Copied isohunt2.yml +2023-03-17 19:54:21.7211 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml +2023-03-17 19:54:21.7226 Info Copied itorrent.yml +2023-03-17 19:54:21.7231 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml +2023-03-17 19:54:21.7240 Info Copied jav-torrent.yml +2023-03-17 19:54:21.7240 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml +2023-03-17 19:54:21.7255 Info Copied jme-reunit3d-api.yml +2023-03-17 19:54:21.7260 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml +2023-03-17 19:54:21.7270 Info Copied joyhd.yml +2023-03-17 19:54:21.7270 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml +2023-03-17 19:54:21.7283 Info Copied jpopsuki.yml +2023-03-17 19:54:21.7288 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml +2023-03-17 19:54:21.7300 Info Copied jptv.yml +2023-03-17 19:54:21.7300 Info Attempting to copy kamept.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/kamept.yml to destination: /app/Jackett/Definitions/kamept.yml +2023-03-17 19:54:21.7315 Info Copied kamept.yml +2023-03-17 19:54:21.7319 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml +2023-03-17 19:54:21.7330 Info Copied karagarga.yml +2023-03-17 19:54:21.7330 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml +2023-03-17 19:54:21.7344 Info Copied keepfriends.yml +2023-03-17 19:54:21.7349 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml +2023-03-17 19:54:21.7359 Info Copied kickasstorrents-to.yml +2023-03-17 19:54:21.7359 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml +2023-03-17 19:54:21.7374 Info Copied kickasstorrents-ws.yml +2023-03-17 19:54:21.7379 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml +2023-03-17 19:54:21.7389 Info Copied kinorun.yml +2023-03-17 19:54:21.7389 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml +2023-03-17 19:54:21.7404 Info Copied kinozal.yml +2023-03-17 19:54:21.7408 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml +2023-03-17 19:54:21.7419 Info Copied knaben.yml +2023-03-17 19:54:21.7419 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml +2023-03-17 19:54:21.7448 Info Copied korsar.yml +2023-03-17 19:54:21.7448 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml +2023-03-17 19:54:21.7464 Info Copied krazyzone.yml +2023-03-17 19:54:21.7469 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml +2023-03-17 19:54:21.7479 Info Copied kufirc.yml +2023-03-17 19:54:21.7479 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml +2023-03-17 19:54:21.7494 Info Copied lastfiles.yml +2023-03-17 19:54:21.7514 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml +2023-03-17 19:54:21.7524 Info Copied lat-team-api.yml +2023-03-17 19:54:21.7529 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml +2023-03-17 19:54:21.7540 Info Copied learnbits.yml +2023-03-17 19:54:21.7540 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml +2023-03-17 19:54:21.7554 Info Copied learnflakes.yml +2023-03-17 19:54:21.7559 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml +2023-03-17 19:54:21.7569 Info Copied leech24.yml +2023-03-17 19:54:21.7569 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml +2023-03-17 19:54:21.7583 Info Copied lemonhd.yml +2023-03-17 19:54:21.7588 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml +2023-03-17 19:54:21.7598 Info Copied lepornoinfo.yml +2023-03-17 19:54:21.7598 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml +2023-03-17 19:54:21.7614 Info Copied les-cinephiles.yml +2023-03-17 19:54:21.7619 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml +2023-03-17 19:54:21.7629 Info Copied lesaloon.yml +2023-03-17 19:54:21.7629 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml +2023-03-17 19:54:21.7643 Info Copied libranet.yml +2023-03-17 19:54:21.7648 Info Attempting to copy lightning-tor.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/lightning-tor.yml to destination: /app/Jackett/Definitions/lightning-tor.yml +2023-03-17 19:54:21.7661 Info Copied lightning-tor.yml +2023-03-17 19:54:21.7661 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml +2023-03-17 19:54:21.7675 Info Copied limetorrents.yml +2023-03-17 19:54:21.7679 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml +2023-03-17 19:54:21.7689 Info Copied limetorrentsclone.yml +2023-03-17 19:54:21.7689 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml +2023-03-17 19:54:21.7704 Info Copied linkomanija.yml +2023-03-17 19:54:21.7708 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml +2023-03-17 19:54:21.7719 Info Copied linuxtracker.yml +2023-03-17 19:54:21.7719 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml +2023-03-17 19:54:21.7732 Info Copied locadora.yml +2023-03-17 19:54:21.7738 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml +2023-03-17 19:54:21.7761 Info Copied losslessclub.yml +2023-03-17 19:54:21.7761 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml +2023-03-17 19:54:21.7775 Info Copied lst.yml +2023-03-17 19:54:21.7780 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml +2023-03-17 19:54:21.7790 Info Copied mactorrentsdownload.yml +2023-03-17 19:54:21.7790 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml +2023-03-17 19:54:21.7805 Info Copied madsrevolution.yml +2023-03-17 19:54:21.7809 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml +2023-03-17 19:54:21.7820 Info Copied magicheaven.yml +2023-03-17 19:54:21.7820 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml +2023-03-17 19:54:21.7834 Info Copied magico.yml +2023-03-17 19:54:21.7839 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml +2023-03-17 19:54:21.7849 Info Copied majomparade.yml +2023-03-17 19:54:21.7849 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml +2023-03-17 19:54:21.7864 Info Copied marinetracker.yml +2023-03-17 19:54:21.7868 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml +2023-03-17 19:54:21.7879 Info Copied mazepa.yml +2023-03-17 19:54:21.7879 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml +2023-03-17 19:54:21.7894 Info Copied megamixtracker.yml +2023-03-17 19:54:21.7899 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml +2023-03-17 19:54:21.7909 Info Copied megapeer.yml +2023-03-17 19:54:21.7909 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml +2023-03-17 19:54:21.7923 Info Copied mesevilag.yml +2023-03-17 19:54:21.7928 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml +2023-03-17 19:54:21.7938 Info Copied metaltracker.yml +2023-03-17 19:54:21.7938 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml +2023-03-17 19:54:21.7952 Info Copied mikan.yml +2023-03-17 19:54:21.7957 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml +2023-03-17 19:54:21.7957 Info Copied milkie.yml +2023-03-17 19:54:21.7972 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml +2023-03-17 19:54:21.7982 Info Copied miobt.yml +2023-03-17 19:54:21.7982 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml +2023-03-17 19:54:21.7995 Info Copied mircrew.yml +2023-03-17 19:54:21.8000 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml +2023-03-17 19:54:21.8010 Info Copied mixtapetorrent.yml +2023-03-17 19:54:21.8010 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml +2023-03-17 19:54:21.8051 Info Copied mma-torrents.yml +2023-03-17 19:54:21.8051 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml +2023-03-17 19:54:21.8067 Info Copied mnv.yml +2023-03-17 19:54:21.8067 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml +2023-03-17 19:54:21.8081 Info Copied mojblink.yml +2023-03-17 19:54:21.8081 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml +2023-03-17 19:54:21.8095 Info Copied mousebits.yml +2023-03-17 19:54:21.8100 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml +2023-03-17 19:54:21.8110 Info Copied moviesdvdr.yml +2023-03-17 19:54:21.8110 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml +2023-03-17 19:54:21.8124 Info Copied moviesite.yml +2023-03-17 19:54:21.8128 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml +2023-03-17 19:54:21.8138 Info Copied movietorrent.yml +2023-03-17 19:54:21.8138 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml +2023-03-17 19:54:21.8152 Info Copied movietorrentz.yml +2023-03-17 19:54:21.8152 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml +2023-03-17 19:54:21.8166 Info Copied mteamtp.yml +2023-03-17 19:54:21.8170 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml +2023-03-17 19:54:21.8182 Info Copied mteamtp2fa.yml +2023-03-17 19:54:21.8182 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml +2023-03-17 19:54:21.8196 Info Copied muziekfabriek.yml +2023-03-17 19:54:21.8200 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml +2023-03-17 19:54:21.8210 Info Copied mvgroupforum.yml +2023-03-17 19:54:21.8210 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml +2023-03-17 19:54:21.8225 Info Copied mvgroupmain.yml +2023-03-17 19:54:21.8230 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml +2023-03-17 19:54:21.8252 Info Copied mypornclub.yml +2023-03-17 19:54:21.8252 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml +2023-03-17 19:54:21.8267 Info Copied myspleen.yml +2023-03-17 19:54:21.8267 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml +2023-03-17 19:54:21.8281 Info Copied nethd.yml +2023-03-17 19:54:21.8281 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml +2023-03-17 19:54:21.8296 Info Copied newretro.yml +2023-03-17 19:54:21.8301 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml +2023-03-17 19:54:21.8310 Info Copied newstudio.yml +2023-03-17 19:54:21.8310 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml +2023-03-17 19:54:21.8337 Info Copied newstudiol.yml +2023-03-17 19:54:21.8337 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml +2023-03-17 19:54:21.8363 Info Copied nicept.yml +2023-03-17 19:54:21.8367 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml +2023-03-17 19:54:21.8378 Info Copied nipponsei.yml +2023-03-17 19:54:21.8378 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml +2023-03-17 19:54:21.8393 Info Copied nntt.yml +2023-03-17 19:54:21.8397 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml +2023-03-17 19:54:21.8409 Info Copied noname-club.yml +2023-03-17 19:54:21.8409 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml +2023-03-17 19:54:21.8424 Info Copied noname-clubl.yml +2023-03-17 19:54:21.8429 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml +2023-03-17 19:54:21.8440 Info Copied nyaasi.yml +2023-03-17 19:54:21.8440 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml +2023-03-17 19:54:21.8454 Info Copied oldtoonsworld.yml +2023-03-17 19:54:21.8460 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml +2023-03-17 19:54:21.8469 Info Copied onejav.yml +2023-03-17 19:54:21.8469 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml +2023-03-17 19:54:21.8485 Info Copied opencd.yml +2023-03-17 19:54:21.8490 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml +2023-03-17 19:54:21.8500 Info Copied oshenpt.yml +2023-03-17 19:54:21.8500 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml +2023-03-17 19:54:21.8513 Info Copied ourbits.yml +2023-03-17 19:54:21.8518 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml +2023-03-17 19:54:21.8529 Info Copied p2pbg.yml +2023-03-17 19:54:21.8529 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml +2023-03-17 19:54:21.8628 Info Copied parnuxi.yml +2023-03-17 19:54:21.8628 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml +2023-03-17 19:54:21.8641 Info Copied partis.yml +2023-03-17 19:54:21.8641 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml +2023-03-17 19:54:21.8654 Info Copied pctorrent.yml +2023-03-17 19:54:21.8658 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml +2023-03-17 19:54:21.8668 Info Copied peeratiko.yml +2023-03-17 19:54:21.8668 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml +2023-03-17 19:54:21.8681 Info Copied peersfm.yml +2023-03-17 19:54:21.8681 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml +2023-03-17 19:54:21.8694 Info Copied pier720.yml +2023-03-17 19:54:21.8697 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml +2023-03-17 19:54:21.8707 Info Copied pignetwork.yml +2023-03-17 19:54:21.8707 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml +2023-03-17 19:54:21.8721 Info Copied piratbit.yml +2023-03-17 19:54:21.8721 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml +2023-03-17 19:54:21.8736 Info Copied piratbitl.yml +2023-03-17 19:54:21.8741 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml +2023-03-17 19:54:21.8750 Info Copied pixelcove.yml +2023-03-17 19:54:21.8750 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml +2023-03-17 19:54:21.8763 Info Copied pixelcove2fa.yml +2023-03-17 19:54:21.8763 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml +2023-03-17 19:54:21.8776 Info Copied polishsource.yml +2023-03-17 19:54:21.8780 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml +2023-03-17 19:54:21.8789 Info Copied polishtracker-api.yml +2023-03-17 19:54:21.8789 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml +2023-03-17 19:54:21.8801 Info Copied pornbay.yml +2023-03-17 19:54:21.8801 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml +2023-03-17 19:54:21.8814 Info Copied pornoslab.yml +2023-03-17 19:54:21.8818 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml +2023-03-17 19:54:21.8827 Info Copied pornotorrent.yml +2023-03-17 19:54:21.8827 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml +2023-03-17 19:54:21.8840 Info Copied portugas-api.yml +2023-03-17 19:54:21.8840 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml +2023-03-17 19:54:21.8853 Info Copied potuk.yml +2023-03-17 19:54:21.8853 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml +2023-03-17 19:54:21.8865 Info Copied proaudiotorrents.yml +2023-03-17 19:54:21.8869 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml +2023-03-17 19:54:21.8879 Info Copied proporno.yml +2023-03-17 19:54:21.8879 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml +2023-03-17 19:54:21.8892 Info Copied ptchina.yml +2023-03-17 19:54:21.8892 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml +2023-03-17 19:54:21.8906 Info Copied pterclub.yml +2023-03-17 19:54:21.8910 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml +2023-03-17 19:54:21.8919 Info Copied ptfiles.yml +2023-03-17 19:54:21.8919 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml +2023-03-17 19:54:21.8932 Info Copied pthome.yml +2023-03-17 19:54:21.8932 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml +2023-03-17 19:54:21.8945 Info Copied ptmsg.yml +2023-03-17 19:54:21.8949 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml +2023-03-17 19:54:21.8960 Info Copied ptsbao.yml +2023-03-17 19:54:21.8960 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml +2023-03-17 19:54:21.8972 Info Copied pttime.yml +2023-03-17 19:54:21.8972 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml +2023-03-17 19:54:21.8986 Info Copied punkshorror.yml +2023-03-17 19:54:21.8989 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml +2023-03-17 19:54:21.8989 Info Copied puntotorrent.yml +2023-03-17 19:54:21.8989 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml +2023-03-17 19:54:21.8998 Info Copied pussytorrents.yml +2023-03-17 19:54:21.8998 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml +2023-03-17 19:54:21.8998 Info Copied putao.yml +2023-03-17 19:54:21.8998 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml +2023-03-17 19:54:21.9009 Info Copied puurhollands.yml +2023-03-17 19:54:21.9009 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml +2023-03-17 19:54:21.9009 Info Copied pwtorrents.yml +2023-03-17 19:54:21.9009 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml +2023-03-17 19:54:21.9019 Info Copied r3vwtf.yml +2023-03-17 19:54:21.9019 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml +2023-03-17 19:54:21.9019 Info Copied racing4everyone-api.yml +2023-03-17 19:54:21.9019 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml +2023-03-17 19:54:21.9030 Info Copied racingforme.yml +2023-03-17 19:54:21.9030 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml +2023-03-17 19:54:21.9030 Info Copied rainbowtracker.yml +2023-03-17 19:54:21.9036 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml +2023-03-17 19:54:21.9036 Info Copied rapidzona.yml +2023-03-17 19:54:21.9036 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml +2023-03-17 19:54:21.9036 Info Copied redbits-api.yml +2023-03-17 19:54:21.9047 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml +2023-03-17 19:54:21.9047 Info Copied redstartorrent.yml +2023-03-17 19:54:21.9047 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml +2023-03-17 19:54:21.9047 Info Copied reelflix-api.yml +2023-03-17 19:54:21.9057 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml +2023-03-17 19:54:21.9057 Info Copied resurrectthenet.yml +2023-03-17 19:54:21.9057 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml +2023-03-17 19:54:21.9067 Info Copied rgfootball.yml +2023-03-17 19:54:21.9067 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml +2023-03-17 19:54:21.9067 Info Copied rintor.yml +2023-03-17 19:54:21.9067 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml +2023-03-17 19:54:21.9078 Info Copied rintornet.yml +2023-03-17 19:54:21.9078 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml +2023-03-17 19:54:21.9078 Info Copied riperam.yml +2023-03-17 19:54:21.9078 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml +2023-03-17 19:54:21.9089 Info Copied rockbox.yml +2023-03-17 19:54:21.9089 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml +2023-03-17 19:54:21.9089 Info Copied romanianmetaltorrents.yml +2023-03-17 19:54:21.9089 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml +2023-03-17 19:54:21.9100 Info Copied rptorrents.yml +2023-03-17 19:54:21.9100 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml +2023-03-17 19:54:21.9100 Info Copied rudub.yml +2023-03-17 19:54:21.9100 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml +2023-03-17 19:54:21.9110 Info Copied rus-media.yml +2023-03-17 19:54:21.9110 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml +2023-03-17 19:54:21.9116 Info Copied rustorka.yml +2023-03-17 19:54:21.9116 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml +2023-03-17 19:54:21.9116 Info Copied rutor.yml +2023-03-17 19:54:21.9116 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml +2023-03-17 19:54:21.9127 Info Copied rutracker-ru.yml +2023-03-17 19:54:21.9127 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml +2023-03-17 19:54:21.9127 Info Copied satclubbing.yml +2023-03-17 19:54:21.9127 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml +2023-03-17 19:54:21.9138 Info Copied scenerush.yml +2023-03-17 19:54:21.9138 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml +2023-03-17 19:54:21.9138 Info Copied sdbits.yml +2023-03-17 19:54:21.9138 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml +2023-03-17 19:54:21.9148 Info Copied seedfile.yml +2023-03-17 19:54:21.9148 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml +2023-03-17 19:54:21.9148 Info Copied seedoff.yml +2023-03-17 19:54:21.9148 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml +2023-03-17 19:54:21.9158 Info Copied selezen.yml +2023-03-17 19:54:21.9158 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml +2023-03-17 19:54:21.9158 Info Copied sexypics.yml +2023-03-17 19:54:21.9158 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml +2023-03-17 19:54:21.9169 Info Copied shanaproject.yml +2023-03-17 19:54:21.9169 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml +2023-03-17 19:54:21.9169 Info Copied shareisland-api.yml +2023-03-17 19:54:21.9169 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml +2023-03-17 19:54:21.9179 Info Copied sharewood.yml +2023-03-17 19:54:21.9179 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml +2023-03-17 19:54:21.9179 Info Copied sharkpt.yml +2023-03-17 19:54:21.9179 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml +2023-03-17 19:54:21.9190 Info Copied showrss.yml +2023-03-17 19:54:21.9190 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml +2023-03-17 19:54:21.9190 Info Copied siambit.yml +2023-03-17 19:54:21.9196 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml +2023-03-17 19:54:21.9196 Info Copied skipthecommercials-api.yml +2023-03-17 19:54:21.9196 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml +2023-03-17 19:54:21.9196 Info Copied skipthetrailers.yml +2023-03-17 19:54:21.9207 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml +2023-03-17 19:54:21.9207 Info Copied sktorrent-org.yml +2023-03-17 19:54:21.9207 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml +2023-03-17 19:54:21.9216 Info Copied sktorrent.yml +2023-03-17 19:54:21.9216 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml +2023-03-17 19:54:21.9216 Info Copied slosoul.yml +2023-03-17 19:54:21.9216 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml +2023-03-17 19:54:21.9227 Info Copied snowpt.yml +2023-03-17 19:54:21.9227 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml +2023-03-17 19:54:21.9227 Info Copied solidtorrents.yml +2023-03-17 19:54:21.9227 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml +2023-03-17 19:54:21.9238 Info Copied sosulki.yml +2023-03-17 19:54:21.9238 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml +2023-03-17 19:54:21.9238 Info Copied soulvoice.yml +2023-03-17 19:54:21.9238 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml +2023-03-17 19:54:21.9248 Info Copied speedmasterhd.yml +2023-03-17 19:54:21.9248 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml +2023-03-17 19:54:21.9248 Info Copied speedtorrentreloaded.yml +2023-03-17 19:54:21.9248 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml +2023-03-17 19:54:21.9259 Info Copied spidertk.yml +2023-03-17 19:54:21.9259 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml +2023-03-17 19:54:21.9259 Info Copied spiritofrevolution.yml +2023-03-17 19:54:21.9259 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml +2023-03-17 19:54:21.9270 Info Copied sporthd.yml +2023-03-17 19:54:21.9270 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml +2023-03-17 19:54:21.9270 Info Copied sportscult.yml +2023-03-17 19:54:21.9277 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml +2023-03-17 19:54:21.9277 Info Copied springsunday.yml +2023-03-17 19:54:21.9277 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml +2023-03-17 19:54:21.9277 Info Copied sugoimusic.yml +2023-03-17 19:54:21.9287 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml +2023-03-17 19:54:21.9287 Info Copied sukebeinyaasi.yml +2023-03-17 19:54:21.9287 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml +2023-03-17 19:54:21.9296 Info Copied superbits.yml +2023-03-17 19:54:21.9296 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml +2023-03-17 19:54:21.9296 Info Copied swarmazon-api.yml +2023-03-17 19:54:21.9296 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml +2023-03-17 19:54:21.9308 Info Copied tapochek.yml +2023-03-17 19:54:21.9308 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml +2023-03-17 19:54:21.9308 Info Copied tasmanit.yml +2023-03-17 19:54:21.9308 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml +2023-03-17 19:54:21.9318 Info Copied teamctgame.yml +2023-03-17 19:54:21.9318 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml +2023-03-17 19:54:21.9318 Info Copied teamhd.yml +2023-03-17 19:54:21.9318 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml +2023-03-17 19:54:21.9328 Info Copied teamos.yml +2023-03-17 19:54:21.9328 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml +2023-03-17 19:54:21.9328 Info Copied tekno3d.yml +2023-03-17 19:54:21.9328 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml +2023-03-17 19:54:21.9339 Info Copied tellytorrent-api.yml +2023-03-17 19:54:21.9339 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml +2023-03-17 19:54:21.9339 Info Copied teracod.yml +2023-03-17 19:54:21.9339 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml +2023-03-17 19:54:21.9349 Info Copied the-crazy-ones.yml +2023-03-17 19:54:21.9349 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml +2023-03-17 19:54:21.9349 Info Copied thedarkcommunity-api.yml +2023-03-17 19:54:21.9356 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml +2023-03-17 19:54:21.9356 Info Copied theempire.yml +2023-03-17 19:54:21.9356 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml +2023-03-17 19:54:21.9356 Info Copied thefallingangels.yml +2023-03-17 19:54:21.9368 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml +2023-03-17 19:54:21.9368 Info Copied thegeeks.yml +2023-03-17 19:54:21.9368 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml +2023-03-17 19:54:21.9377 Info Copied theleachzone.yml +2023-03-17 19:54:21.9377 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml +2023-03-17 19:54:21.9377 Info Copied themixingbowl.yml +2023-03-17 19:54:21.9377 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml +2023-03-17 19:54:21.9388 Info Copied thenewfun.yml +2023-03-17 19:54:21.9388 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml +2023-03-17 19:54:21.9388 Info Copied theoccult.yml +2023-03-17 19:54:21.9388 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml +2023-03-17 19:54:21.9406 Info Copied theoldschool-api.yml +2023-03-17 19:54:21.9408 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml +2023-03-17 19:54:21.9408 Info Copied thepiratebay.yml +2023-03-17 19:54:21.9408 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml +2023-03-17 19:54:21.9418 Info Copied theplace.yml +2023-03-17 19:54:21.9418 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml +2023-03-17 19:54:21.9418 Info Copied thesceneplace.yml +2023-03-17 19:54:21.9418 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml +2023-03-17 19:54:21.9428 Info Copied theshinning-api.yml +2023-03-17 19:54:21.9428 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml +2023-03-17 19:54:21.9428 Info Copied theshow.yml +2023-03-17 19:54:21.9428 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml +2023-03-17 19:54:21.9447 Info Copied thevault.yml +2023-03-17 19:54:21.9447 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml +2023-03-17 19:54:21.9447 Info Copied tjupt.yml +2023-03-17 19:54:21.9447 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml +2023-03-17 19:54:21.9458 Info Copied tlfbits.yml +2023-03-17 19:54:21.9458 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml +2023-03-17 19:54:21.9458 Info Copied tmghub.yml +2023-03-17 19:54:21.9458 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml +2023-03-17 19:54:21.9469 Info Copied tokyotosho.yml +2023-03-17 19:54:21.9469 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml +2023-03-17 19:54:21.9469 Info Copied torlock.yml +2023-03-17 19:54:21.9469 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml +2023-03-17 19:54:21.9479 Info Copied tornado.yml +2023-03-17 19:54:21.9479 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml +2023-03-17 19:54:21.9479 Info Copied torrent-explosiv.yml +2023-03-17 19:54:21.9479 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml +2023-03-17 19:54:21.9490 Info Copied torrent-pirat.yml +2023-03-17 19:54:21.9490 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml +2023-03-17 19:54:21.9490 Info Copied torrent-turk.yml +2023-03-17 19:54:21.9497 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml +2023-03-17 19:54:21.9497 Info Copied torrent9.yml +2023-03-17 19:54:21.9497 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml +2023-03-17 19:54:21.9507 Info Copied torrent911.yml +2023-03-17 19:54:21.9507 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml +2023-03-17 19:54:21.9507 Info Copied torrent9clone.yml +2023-03-17 19:54:21.9507 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml +2023-03-17 19:54:21.9518 Info Copied torrentbd.yml +2023-03-17 19:54:21.9518 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml +2023-03-17 19:54:21.9530 Info Copied torrentby.yml +2023-03-17 19:54:21.9530 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml +2023-03-17 19:54:21.9530 Info Copied torrentccf.yml +2023-03-17 19:54:21.9537 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml +2023-03-17 19:54:21.9537 Info Copied torrentcore.yml +2023-03-17 19:54:21.9537 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml +2023-03-17 19:54:21.9547 Info Copied torrentdownload.yml +2023-03-17 19:54:21.9547 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml +2023-03-17 19:54:21.9547 Info Copied torrentdownloads.yml +2023-03-17 19:54:21.9547 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml +2023-03-17 19:54:21.9558 Info Copied torrentfunk.yml +2023-03-17 19:54:21.9558 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml +2023-03-17 19:54:21.9558 Info Copied torrentgalaxy.yml +2023-03-17 19:54:21.9558 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml +2023-03-17 19:54:21.9569 Info Copied torrenthr.yml +2023-03-17 19:54:21.9569 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml +2023-03-17 19:54:21.9569 Info Copied torrenting.yml +2023-03-17 19:54:21.9569 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml +2023-03-17 19:54:21.9580 Info Copied torrentkitty.yml +2023-03-17 19:54:21.9580 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml +2023-03-17 19:54:21.9580 Info Copied torrentland.yml +2023-03-17 19:54:21.9587 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml +2023-03-17 19:54:21.9587 Info Copied torrentleech-pl.yml +2023-03-17 19:54:21.9587 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml +2023-03-17 19:54:21.9587 Info Copied torrentleech.yml +2023-03-17 19:54:21.9597 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml +2023-03-17 19:54:21.9597 Info Copied torrentlt.yml +2023-03-17 19:54:21.9597 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml +2023-03-17 19:54:21.9597 Info Copied torrentmasters.yml +2023-03-17 19:54:21.9608 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml +2023-03-17 19:54:21.9608 Info Copied torrentoyunindir.yml +2023-03-17 19:54:21.9608 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml +2023-03-17 19:54:21.9617 Info Copied torrentproject2.yml +2023-03-17 19:54:21.9617 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml +2023-03-17 19:54:21.9617 Info Copied torrentqq.yml +2023-03-17 19:54:21.9617 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml +2023-03-17 19:54:21.9628 Info Copied torrentsectorcrew.yml +2023-03-17 19:54:21.9628 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml +2023-03-17 19:54:21.9628 Info Copied torrentseeds-api.yml +2023-03-17 19:54:21.9628 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml +2023-03-17 19:54:21.9638 Info Copied torrentsir.yml +2023-03-17 19:54:21.9638 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml +2023-03-17 19:54:21.9638 Info Copied torrentslocal.yml +2023-03-17 19:54:21.9638 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml +2023-03-17 19:54:21.9649 Info Copied torrentv.yml +2023-03-17 19:54:21.9649 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml +2023-03-17 19:54:21.9649 Info Copied torrentview.yml +2023-03-17 19:54:21.9649 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml +2023-03-17 19:54:21.9660 Info Copied torrentwhiz.yml +2023-03-17 19:54:21.9660 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml +2023-03-17 19:54:21.9660 Info Copied torrentz2eu.yml +2023-03-17 19:54:21.9668 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml +2023-03-17 19:54:21.9668 Info Copied torrentz2nz.yml +2023-03-17 19:54:21.9668 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml +2023-03-17 19:54:21.9678 Info Copied totallykids.yml +2023-03-17 19:54:21.9678 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml +2023-03-17 19:54:21.9678 Info Copied totheglory.yml +2023-03-17 19:54:21.9678 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml +2023-03-17 19:54:21.9688 Info Copied totheglorycookie.yml +2023-03-17 19:54:21.9688 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml +2023-03-17 19:54:21.9688 Info Copied traht.yml +2023-03-17 19:54:21.9688 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml +2023-03-17 19:54:21.9699 Info Copied trancetraffic.yml +2023-03-17 19:54:21.9699 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml +2023-03-17 19:54:21.9699 Info Copied trezzor.yml +2023-03-17 19:54:21.9706 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml +2023-03-17 19:54:21.9706 Info Copied tribalmixes.yml +2023-03-17 19:54:21.9706 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml +2023-03-17 19:54:21.9706 Info Copied trupornolabs.yml +2023-03-17 19:54:21.9717 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml +2023-03-17 19:54:21.9717 Info Copied turkseed.yml +2023-03-17 19:54:21.9717 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml +2023-03-17 19:54:21.9717 Info Copied turktorrent.yml +2023-03-17 19:54:21.9728 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml +2023-03-17 19:54:21.9728 Info Copied tvchaosuk.yml +2023-03-17 19:54:21.9728 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml +2023-03-17 19:54:21.9745 Info Copied tvroad.yml +2023-03-17 19:54:21.9747 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml +2023-03-17 19:54:21.9747 Info Copied twilight.yml +2023-03-17 19:54:21.9747 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml +2023-03-17 19:54:21.9747 Info Copied u2.yml +2023-03-17 19:54:21.9758 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml +2023-03-17 19:54:21.9758 Info Copied uhdbits.yml +2023-03-17 19:54:21.9758 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml +2023-03-17 19:54:21.9768 Info Copied uniondht.yml +2023-03-17 19:54:21.9768 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml +2023-03-17 19:54:21.9768 Info Copied unionfansub.yml +2023-03-17 19:54:21.9768 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml +2023-03-17 19:54:21.9778 Info Copied uniongang.yml +2023-03-17 19:54:21.9778 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml +2023-03-17 19:54:21.9778 Info Copied unleashthecartoons.yml +2023-03-17 19:54:21.9778 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml +2023-03-17 19:54:21.9789 Info Copied unlimitz.yml +2023-03-17 19:54:21.9789 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml +2023-03-17 19:54:21.9789 Info Copied vsthouse.yml +2023-03-17 19:54:21.9789 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml +2023-03-17 19:54:21.9800 Info Copied vsttorrents.yml +2023-03-17 19:54:21.9800 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml +2023-03-17 19:54:21.9800 Info Copied vtorrent.yml +2023-03-17 19:54:21.9808 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml +2023-03-17 19:54:21.9808 Info Copied whiteangel.yml +2023-03-17 19:54:21.9808 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml +2023-03-17 19:54:21.9817 Info Copied wihd.yml +2023-03-17 19:54:21.9817 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml +2023-03-17 19:54:21.9817 Info Copied world-of-tomorrow.yml +2023-03-17 19:54:21.9817 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml +2023-03-17 19:54:21.9828 Info Copied x-ite.me.yml +2023-03-17 19:54:21.9828 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml +2023-03-17 19:54:21.9828 Info Copied xbytes2.yml +2023-03-17 19:54:21.9828 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml +2023-03-17 19:54:21.9839 Info Copied xthor-api.yml +2023-03-17 19:54:21.9839 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml +2023-03-17 19:54:21.9839 Info Copied xtorrenty.yml +2023-03-17 19:54:21.9839 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml +2023-03-17 19:54:21.9850 Info Copied xtremebytes.yml +2023-03-17 19:54:21.9850 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml +2023-03-17 19:54:21.9850 Info Copied xwtclassics.yml +2023-03-17 19:54:21.9857 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml +2023-03-17 19:54:21.9857 Info Copied xwtorrents.yml +2023-03-17 19:54:21.9857 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml +2023-03-17 19:54:21.9867 Info Copied xxxadulttorrent.yml +2023-03-17 19:54:21.9867 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml +2023-03-17 19:54:21.9867 Info Copied xxxtor.yml +2023-03-17 19:54:21.9867 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml +2023-03-17 19:54:21.9877 Info Copied xxxtorrents.yml +2023-03-17 19:54:21.9877 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml +2023-03-17 19:54:21.9877 Info Copied ydypt.yml +2023-03-17 19:54:21.9877 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml +2023-03-17 19:54:21.9889 Info Copied yggcookie.yml +2023-03-17 19:54:21.9889 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml +2023-03-17 19:54:21.9889 Info Copied yggtorrent.yml +2023-03-17 19:54:21.9889 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml +2023-03-17 19:54:21.9900 Info Copied yourbittorrent.yml +2023-03-17 19:54:21.9900 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml +2023-03-17 19:54:21.9900 Info Copied yts.yml +2023-03-17 19:54:21.9907 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml +2023-03-17 19:54:21.9907 Info Copied zamundanet.yml +2023-03-17 19:54:21.9907 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml +2023-03-17 19:54:21.9907 Info Copied zelkaorg.yml +2023-03-17 19:54:21.9918 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml +2023-03-17 19:54:21.9918 Info Copied zetorrents.yml +2023-03-17 19:54:21.9918 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml +2023-03-17 19:54:21.9926 Info Copied zmpt.yml +2023-03-17 19:54:21.9926 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml +2023-03-17 19:54:21.9926 Info Copied zomb.yml +2023-03-17 19:54:21.9926 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml +2023-03-17 19:54:21.9945 Info Copied ztracker.yml +2023-03-17 19:54:21.9945 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll +2023-03-17 19:54:21.9945 Info Copied FlareSolverrSharp.dll +2023-03-17 19:54:21.9945 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll +2023-03-17 19:54:21.9961 Info Copied ICSharpCode.SharpZipLib.dll +2023-03-17 19:54:21.9961 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh +2023-03-17 19:54:21.9966 Info Copied install_service_systemd.sh +2023-03-17 19:54:21.9966 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/jackett to destination: /app/Jackett/jackett +2023-03-17 19:54:21.9983 Info Copied jackett +2023-03-17 19:54:21.9983 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh +2023-03-17 19:54:21.9989 Info Copied jackett_launcher.sh +2023-03-17 19:54:21.9989 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll +2023-03-17 19:54:22.0015 Info Copied Jackett.Common.dll +2023-03-17 19:54:22.0017 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb +2023-03-17 19:54:22.0027 Info Copied Jackett.Common.pdb +2023-03-17 19:54:22.0027 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json +2023-03-17 19:54:22.0027 Info Copied jackett.deps.json +2023-03-17 19:54:22.0027 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll +2023-03-17 19:54:22.0046 Info Copied jackett.dll +2023-03-17 19:54:22.0047 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb +2023-03-17 19:54:22.0047 Info Copied jackett.pdb +2023-03-17 19:54:22.0047 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json +2023-03-17 19:54:22.0058 Info Copied jackett.runtimeconfig.json +2023-03-17 19:54:22.0058 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater +2023-03-17 19:54:22.0058 Info Copied JackettUpdater +2023-03-17 19:54:22.0067 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json +2023-03-17 19:54:22.0067 Info Copied JackettUpdater.deps.json +2023-03-17 19:54:22.0067 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll +2023-03-17 19:54:22.0091 Info Copied JackettUpdater.dll +2023-03-17 19:54:22.0091 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb +2023-03-17 19:54:22.0099 Info Copied JackettUpdater.pdb +2023-03-17 19:54:22.0099 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json +2023-03-17 19:54:22.0099 Info Copied JackettUpdater.runtimeconfig.json +2023-03-17 19:54:22.0099 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so +2023-03-17 19:54:22.0170 Info Copied libclrjit.so +2023-03-17 19:54:22.0170 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so +2023-03-17 19:54:22.0313 Info Copied libcoreclr.so +2023-03-17 19:54:22.0316 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so +2023-03-17 19:54:22.0334 Info Copied libcoreclrtraceptprovider.so +2023-03-17 19:54:22.0334 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so +2023-03-17 19:54:22.0360 Info Copied libdbgshim.so +2023-03-17 19:54:22.0360 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so +2023-03-17 19:54:22.0373 Info Copied libhostfxr.so +2023-03-17 19:54:22.0373 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so +2023-03-17 19:54:22.0384 Info Copied libhostpolicy.so +2023-03-17 19:54:22.0384 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so +2023-03-17 19:54:22.0392 Info Copied libMono.Unix.so +2023-03-17 19:54:22.0392 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so +2023-03-17 19:54:22.0474 Info Copied libmscordaccore.so +2023-03-17 19:54:22.0477 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so +2023-03-17 19:54:22.0543 Info Copied libmscordbi.so +2023-03-17 19:54:22.0547 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so +2023-03-17 19:54:22.0547 Info Copied libSystem.Globalization.Native.so +2023-03-17 19:54:22.0547 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so +2023-03-17 19:54:22.0574 Info Copied libSystem.IO.Compression.Native.so +2023-03-17 19:54:22.0574 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so +2023-03-17 19:54:22.0582 Info Copied libSystem.Native.so +2023-03-17 19:54:22.0582 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so +2023-03-17 19:54:22.0587 Info Copied libSystem.Net.Security.Native.so +2023-03-17 19:54:22.0587 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so +2023-03-17 19:54:22.0597 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so +2023-03-17 19:54:22.0597 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/LICENSE to destination: /app/Jackett/LICENSE +2023-03-17 19:54:22.0597 Info Copied LICENSE +2023-03-17 19:54:22.0597 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll +2023-03-17 19:54:22.0609 Info Copied Microsoft.AspNetCore.Antiforgery.dll +2023-03-17 19:54:22.0609 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-03-17 19:54:22.0609 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll +2023-03-17 19:54:22.0618 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll +2023-03-17 19:54:22.0618 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll +2023-03-17 19:54:22.0618 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll +2023-03-17 19:54:22.0632 Info Copied Microsoft.AspNetCore.Authentication.Core.dll +2023-03-17 19:54:22.0632 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll +2023-03-17 19:54:22.0640 Info Copied Microsoft.AspNetCore.Authentication.dll +2023-03-17 19:54:22.0640 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll +2023-03-17 19:54:22.0648 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll +2023-03-17 19:54:22.0648 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll +2023-03-17 19:54:22.0648 Info Copied Microsoft.AspNetCore.Authorization.dll +2023-03-17 19:54:22.0657 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll +2023-03-17 19:54:22.0657 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll +2023-03-17 19:54:22.0657 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll +2023-03-17 19:54:22.0668 Info Copied Microsoft.AspNetCore.Components.Authorization.dll +2023-03-17 19:54:22.0668 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll +2023-03-17 19:54:22.0684 Info Copied Microsoft.AspNetCore.Components.dll +2023-03-17 19:54:22.0684 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll +2023-03-17 19:54:22.0690 Info Copied Microsoft.AspNetCore.Components.Forms.dll +2023-03-17 19:54:22.0690 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll +2023-03-17 19:54:22.0709 Info Copied Microsoft.AspNetCore.Components.Server.dll +2023-03-17 19:54:22.0709 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll +2023-03-17 19:54:22.0719 Info Copied Microsoft.AspNetCore.Components.Web.dll +2023-03-17 19:54:22.0719 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll +2023-03-17 19:54:22.0727 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll +2023-03-17 19:54:22.0727 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll +2023-03-17 19:54:22.0727 Info Copied Microsoft.AspNetCore.CookiePolicy.dll +2023-03-17 19:54:22.0727 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll +2023-03-17 19:54:22.0740 Info Copied Microsoft.AspNetCore.Cors.dll +2023-03-17 19:54:22.0740 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll +2023-03-17 19:54:22.0748 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll +2023-03-17 19:54:22.0748 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-03-17 19:54:22.0748 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +2023-03-17 19:54:22.0748 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-03-17 19:54:22.0760 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll +2023-03-17 19:54:22.0760 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll +2023-03-17 19:54:22.0772 Info Copied Microsoft.AspNetCore.DataProtection.dll +2023-03-17 19:54:22.0772 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-03-17 19:54:22.0779 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll +2023-03-17 19:54:22.0779 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-03-17 19:54:22.0779 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll +2023-03-17 19:54:22.0779 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll +2023-03-17 19:54:22.0797 Info Copied Microsoft.AspNetCore.Diagnostics.dll +2023-03-17 19:54:22.0797 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-03-17 19:54:22.0797 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +2023-03-17 19:54:22.0797 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll +2023-03-17 19:54:22.0810 Info Copied Microsoft.AspNetCore.dll +2023-03-17 19:54:22.0810 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll +2023-03-17 19:54:22.0816 Info Copied Microsoft.AspNetCore.HostFiltering.dll +2023-03-17 19:54:22.0816 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-03-17 19:54:22.0816 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll +2023-03-17 19:54:22.0816 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll +2023-03-17 19:54:22.0834 Info Copied Microsoft.AspNetCore.Hosting.dll +2023-03-17 19:54:22.0834 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-03-17 19:54:22.0840 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +2023-03-17 19:54:22.0840 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll +2023-03-17 19:54:22.0840 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll +2023-03-17 19:54:22.0848 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll +2023-03-17 19:54:22.0848 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll +2023-03-17 19:54:22.0857 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll +2023-03-17 19:54:22.0857 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll +2023-03-17 19:54:22.0857 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll +2023-03-17 19:54:22.0872 Info Copied Microsoft.AspNetCore.Http.Connections.dll +2023-03-17 19:54:22.0872 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll +2023-03-17 19:54:22.0891 Info Copied Microsoft.AspNetCore.Http.dll +2023-03-17 19:54:22.0891 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll +2023-03-17 19:54:22.0902 Info Copied Microsoft.AspNetCore.Http.Extensions.dll +2023-03-17 19:54:22.0902 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll +2023-03-17 19:54:22.0909 Info Copied Microsoft.AspNetCore.Http.Features.dll +2023-03-17 19:54:22.0909 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll +2023-03-17 19:54:22.0917 Info Copied Microsoft.AspNetCore.Http.Results.dll +2023-03-17 19:54:22.0917 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll +2023-03-17 19:54:22.0917 Info Copied Microsoft.AspNetCore.HttpLogging.dll +2023-03-17 19:54:22.0917 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll +2023-03-17 19:54:22.0938 Info Copied Microsoft.AspNetCore.HttpOverrides.dll +2023-03-17 19:54:22.0938 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll +2023-03-17 19:54:22.0952 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll +2023-03-17 19:54:22.0952 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll +2023-03-17 19:54:22.0968 Info Copied Microsoft.AspNetCore.Identity.dll +2023-03-17 19:54:22.0968 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll +2023-03-17 19:54:22.0968 Info Copied Microsoft.AspNetCore.JsonPatch.dll +2023-03-17 19:54:22.0977 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll +2023-03-17 19:54:22.0977 Info Copied Microsoft.AspNetCore.Localization.dll +2023-03-17 19:54:22.0977 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll +2023-03-17 19:54:22.0987 Info Copied Microsoft.AspNetCore.Localization.Routing.dll +2023-03-17 19:54:22.0987 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll +2023-03-17 19:54:22.0987 Info Copied Microsoft.AspNetCore.Metadata.dll +2023-03-17 19:54:22.0987 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-03-17 19:54:22.1002 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll +2023-03-17 19:54:22.1002 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-03-17 19:54:22.1019 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll +2023-03-17 19:54:22.1019 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll +2023-03-17 19:54:22.1054 Info Copied Microsoft.AspNetCore.Mvc.Core.dll +2023-03-17 19:54:22.1054 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll +2023-03-17 19:54:22.1061 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll +2023-03-17 19:54:22.1061 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-03-17 19:54:22.1069 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll +2023-03-17 19:54:22.1069 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll +2023-03-17 19:54:22.1069 Info Copied Microsoft.AspNetCore.Mvc.dll +2023-03-17 19:54:22.1077 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-03-17 19:54:22.1077 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll +2023-03-17 19:54:22.1077 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-03-17 19:54:22.1089 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +2023-03-17 19:54:22.1089 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll +2023-03-17 19:54:22.1089 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll +2023-03-17 19:54:22.1097 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-03-17 19:54:22.1097 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +2023-03-17 19:54:22.1097 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll +2023-03-17 19:54:22.1111 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll +2023-03-17 19:54:22.1111 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-03-17 19:54:22.1124 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll +2023-03-17 19:54:22.1124 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-03-17 19:54:22.1133 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll +2023-03-17 19:54:22.1133 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-03-17 19:54:22.1151 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll +2023-03-17 19:54:22.1151 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll +2023-03-17 19:54:22.1157 Info Copied Microsoft.AspNetCore.Razor.dll +2023-03-17 19:54:22.1157 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll +2023-03-17 19:54:22.1157 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll +2023-03-17 19:54:22.1157 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-03-17 19:54:22.1170 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +2023-03-17 19:54:22.1170 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll +2023-03-17 19:54:22.1178 Info Copied Microsoft.AspNetCore.ResponseCaching.dll +2023-03-17 19:54:22.1178 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll +2023-03-17 19:54:22.1178 Info Copied Microsoft.AspNetCore.ResponseCompression.dll +2023-03-17 19:54:22.1178 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll +2023-03-17 19:54:22.1193 Info Copied Microsoft.AspNetCore.Rewrite.dll +2023-03-17 19:54:22.1193 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll +2023-03-17 19:54:22.1200 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll +2023-03-17 19:54:22.1200 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll +2023-03-17 19:54:22.1218 Info Copied Microsoft.AspNetCore.Routing.dll +2023-03-17 19:54:22.1218 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll +2023-03-17 19:54:22.1232 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll +2023-03-17 19:54:22.1232 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll +2023-03-17 19:54:22.1248 Info Copied Microsoft.AspNetCore.Server.IIS.dll +2023-03-17 19:54:22.1248 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll +2023-03-17 19:54:22.1248 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll +2023-03-17 19:54:22.1248 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-03-17 19:54:22.1300 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll +2023-03-17 19:54:22.1300 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll +2023-03-17 19:54:22.1307 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll +2023-03-17 19:54:22.1307 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-03-17 19:54:22.1317 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +2023-03-17 19:54:22.1317 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-03-17 19:54:22.1317 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +2023-03-17 19:54:22.1327 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll +2023-03-17 19:54:22.1327 Info Copied Microsoft.AspNetCore.Session.dll +2023-03-17 19:54:22.1327 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll +2023-03-17 19:54:22.1340 Info Copied Microsoft.AspNetCore.SignalR.Common.dll +2023-03-17 19:54:22.1340 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll +2023-03-17 19:54:22.1352 Info Copied Microsoft.AspNetCore.SignalR.Core.dll +2023-03-17 19:54:22.1352 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll +2023-03-17 19:54:22.1358 Info Copied Microsoft.AspNetCore.SignalR.dll +2023-03-17 19:54:22.1358 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-03-17 19:54:22.1358 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll +2023-03-17 19:54:22.1367 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll +2023-03-17 19:54:22.1367 Info Copied Microsoft.AspNetCore.StaticFiles.dll +2023-03-17 19:54:22.1367 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll +2023-03-17 19:54:22.1386 Info Copied Microsoft.AspNetCore.WebSockets.dll +2023-03-17 19:54:22.1388 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll +2023-03-17 19:54:22.1388 Info Copied Microsoft.AspNetCore.WebUtilities.dll +2023-03-17 19:54:22.1398 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll +2023-03-17 19:54:22.1423 Info Copied Microsoft.CSharp.dll +2023-03-17 19:54:22.1423 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll +2023-03-17 19:54:22.1430 Info Copied Microsoft.Extensions.Caching.Abstractions.dll +2023-03-17 19:54:22.1430 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll +2023-03-17 19:54:22.1437 Info Copied Microsoft.Extensions.Caching.Memory.dll +2023-03-17 19:54:22.1437 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll +2023-03-17 19:54:22.1437 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll +2023-03-17 19:54:22.1437 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll +2023-03-17 19:54:22.1450 Info Copied Microsoft.Extensions.Configuration.Binder.dll +2023-03-17 19:54:22.1450 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll +2023-03-17 19:54:22.1450 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll +2023-03-17 19:54:22.1457 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll +2023-03-17 19:54:22.1457 Info Copied Microsoft.Extensions.Configuration.dll +2023-03-17 19:54:22.1457 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-03-17 19:54:22.1468 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll +2023-03-17 19:54:22.1468 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll +2023-03-17 19:54:22.1468 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll +2023-03-17 19:54:22.1468 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll +2023-03-17 19:54:22.1480 Info Copied Microsoft.Extensions.Configuration.Ini.dll +2023-03-17 19:54:22.1480 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll +2023-03-17 19:54:22.1480 Info Copied Microsoft.Extensions.Configuration.Json.dll +2023-03-17 19:54:22.1488 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-03-17 19:54:22.1488 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll +2023-03-17 19:54:22.1488 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll +2023-03-17 19:54:22.1498 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll +2023-03-17 19:54:22.1498 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll +2023-03-17 19:54:22.1498 Info Copied Microsoft.Extensions.Configuration.Xml.dll +2023-03-17 19:54:22.1498 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-03-17 19:54:22.1512 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll +2023-03-17 19:54:22.1512 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll +2023-03-17 19:54:22.1528 Info Copied Microsoft.Extensions.DependencyInjection.dll +2023-03-17 19:54:22.1528 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-03-17 19:54:22.1528 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +2023-03-17 19:54:22.1528 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-03-17 19:54:22.1541 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll +2023-03-17 19:54:22.1541 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll +2023-03-17 19:54:22.1547 Info Copied Microsoft.Extensions.Features.dll +2023-03-17 19:54:22.1547 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll +2023-03-17 19:54:22.1547 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll +2023-03-17 19:54:22.1547 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll +2023-03-17 19:54:22.1558 Info Copied Microsoft.Extensions.FileProviders.Composite.dll +2023-03-17 19:54:22.1558 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll +2023-03-17 19:54:22.1558 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll +2023-03-17 19:54:22.1558 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll +2023-03-17 19:54:22.1572 Info Copied Microsoft.Extensions.FileProviders.Physical.dll +2023-03-17 19:54:22.1572 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll +2023-03-17 19:54:22.1579 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll +2023-03-17 19:54:22.1579 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll +2023-03-17 19:54:22.1579 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll +2023-03-17 19:54:22.1587 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll +2023-03-17 19:54:22.1587 Info Copied Microsoft.Extensions.Hosting.dll +2023-03-17 19:54:22.1587 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll +2023-03-17 19:54:22.1600 Info Copied Microsoft.Extensions.Http.dll +2023-03-17 19:54:22.1600 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll +2023-03-17 19:54:22.1612 Info Copied Microsoft.Extensions.Identity.Core.dll +2023-03-17 19:54:22.1612 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll +2023-03-17 19:54:22.1619 Info Copied Microsoft.Extensions.Identity.Stores.dll +2023-03-17 19:54:22.1619 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll +2023-03-17 19:54:22.1619 Info Copied Microsoft.Extensions.Localization.Abstractions.dll +2023-03-17 19:54:22.1626 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll +2023-03-17 19:54:22.1626 Info Copied Microsoft.Extensions.Localization.dll +2023-03-17 19:54:22.1626 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll +2023-03-17 19:54:22.1639 Info Copied Microsoft.Extensions.Logging.Abstractions.dll +2023-03-17 19:54:22.1639 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll +2023-03-17 19:54:22.1639 Info Copied Microsoft.Extensions.Logging.Configuration.dll +2023-03-17 19:54:22.1646 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll +2023-03-17 19:54:22.2286 Info Copied Microsoft.Extensions.Logging.Console.dll +2023-03-17 19:54:22.2286 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll +2023-03-17 19:54:22.2286 Info Copied Microsoft.Extensions.Logging.Debug.dll +2023-03-17 19:54:22.2286 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll +2023-03-17 19:54:22.2302 Info Copied Microsoft.Extensions.Logging.dll +2023-03-17 19:54:22.2302 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll +2023-03-17 19:54:22.2308 Info Copied Microsoft.Extensions.Logging.EventLog.dll +2023-03-17 19:54:22.2308 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll +2023-03-17 19:54:22.2308 Info Copied Microsoft.Extensions.Logging.EventSource.dll +2023-03-17 19:54:22.2308 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll +2023-03-17 19:54:22.2320 Info Copied Microsoft.Extensions.Logging.TraceSource.dll +2023-03-17 19:54:22.2320 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll +2023-03-17 19:54:22.2327 Info Copied Microsoft.Extensions.ObjectPool.dll +2023-03-17 19:54:22.2327 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-03-17 19:54:22.2327 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll +2023-03-17 19:54:22.2327 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll +2023-03-17 19:54:22.2340 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll +2023-03-17 19:54:22.2340 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll +2023-03-17 19:54:22.2356 Info Copied Microsoft.Extensions.Options.dll +2023-03-17 19:54:22.2358 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll +2023-03-17 19:54:22.2358 Info Copied Microsoft.Extensions.Primitives.dll +2023-03-17 19:54:22.2358 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll +2023-03-17 19:54:22.2370 Info Copied Microsoft.Extensions.WebEncoders.dll +2023-03-17 19:54:22.2370 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll +2023-03-17 19:54:22.2386 Info Copied Microsoft.JSInterop.dll +2023-03-17 19:54:22.2386 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll +2023-03-17 19:54:22.2404 Info Copied Microsoft.Net.Http.Headers.dll +2023-03-17 19:54:22.2404 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll +2023-03-17 19:54:22.2447 Info Copied Microsoft.VisualBasic.Core.dll +2023-03-17 19:54:22.2447 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll +2023-03-17 19:54:22.2447 Info Copied Microsoft.VisualBasic.dll +2023-03-17 19:54:22.2447 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll +2023-03-17 19:54:22.2461 Info Copied Microsoft.Win32.Primitives.dll +2023-03-17 19:54:22.2461 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll +2023-03-17 19:54:22.2468 Info Copied Microsoft.Win32.Registry.dll +2023-03-17 19:54:22.2468 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll +2023-03-17 19:54:22.2970 Info Copied MimeMapping.dll +2023-03-17 19:54:22.2970 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll +2023-03-17 19:54:22.2981 Info Copied Mono.Posix.dll +2023-03-17 19:54:22.2981 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll +2023-03-17 19:54:22.2990 Info Copied Mono.Unix.dll +2023-03-17 19:54:22.2990 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll +2023-03-17 19:54:22.2996 Info Copied mscorlib.dll +2023-03-17 19:54:22.2996 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll +2023-03-17 19:54:22.2996 Info Copied netstandard.dll +2023-03-17 19:54:22.2996 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll +2023-03-17 19:54:22.3011 Info Copied Newtonsoft.Json.Bson.dll +2023-03-17 19:54:22.3011 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll +2023-03-17 19:54:22.3027 Info Copied Newtonsoft.Json.dll +2023-03-17 19:54:22.3027 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll +2023-03-17 19:54:22.3045 Info Copied NLog.dll +2023-03-17 19:54:22.3047 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll +2023-03-17 19:54:22.3047 Info Copied NLog.Extensions.Logging.dll +2023-03-17 19:54:22.3047 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll +2023-03-17 19:54:22.3060 Info Copied NLog.Web.AspNetCore.dll +2023-03-17 19:54:22.3060 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll +2023-03-17 19:54:22.3066 Info Copied Org.Mentalis.dll +2023-03-17 19:54:22.3066 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll +2023-03-17 19:54:22.3076 Info Copied Polly.dll +2023-03-17 19:54:22.3076 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/README.md to destination: /app/Jackett/README.md +2023-03-17 19:54:22.3076 Info Copied README.md +2023-03-17 19:54:22.3076 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll +2023-03-17 19:54:22.3089 Info Copied SocksWebProxy.dll +2023-03-17 19:54:22.3089 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll +2023-03-17 19:54:22.3089 Info Copied System.AppContext.dll +2023-03-17 19:54:22.3097 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll +2023-03-17 19:54:22.3097 Info Copied System.Buffers.dll +2023-03-17 19:54:22.3097 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll +2023-03-17 19:54:22.3118 Info Copied System.Collections.Concurrent.dll +2023-03-17 19:54:22.3118 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll +2023-03-17 19:54:22.3128 Info Copied System.Collections.dll +2023-03-17 19:54:22.3128 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll +2023-03-17 19:54:22.3159 Info Copied System.Collections.Immutable.dll +2023-03-17 19:54:22.3159 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll +2023-03-17 19:54:22.4060 Info Copied System.Collections.NonGeneric.dll +2023-03-17 19:54:22.4068 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll +2023-03-17 19:54:22.4085 Info Copied System.Collections.Specialized.dll +2023-03-17 19:54:22.4089 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll +2023-03-17 19:54:22.4107 Info Copied System.ComponentModel.Annotations.dll +2023-03-17 19:54:22.4107 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll +2023-03-17 19:54:22.4120 Info Copied System.ComponentModel.DataAnnotations.dll +2023-03-17 19:54:22.4120 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll +2023-03-17 19:54:22.4132 Info Copied System.ComponentModel.dll +2023-03-17 19:54:22.4132 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll +2023-03-17 19:54:22.4148 Info Copied System.ComponentModel.EventBasedAsync.dll +2023-03-17 19:54:22.4148 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll +2023-03-17 19:54:22.4164 Info Copied System.ComponentModel.Primitives.dll +2023-03-17 19:54:22.4168 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll +2023-03-17 19:54:22.4217 Info Copied System.ComponentModel.TypeConverter.dll +2023-03-17 19:54:22.4217 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll +2023-03-17 19:54:22.4230 Info Copied System.Configuration.dll +2023-03-17 19:54:22.4230 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll +2023-03-17 19:54:22.4600 Info Copied System.Console.dll +2023-03-17 19:54:22.4600 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll +2023-03-17 19:54:22.4614 Info Copied System.Core.dll +2023-03-17 19:54:22.4618 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll +2023-03-17 19:54:22.4744 Info Copied System.Data.Common.dll +2023-03-17 19:54:22.4749 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll +2023-03-17 19:54:22.4761 Info Copied System.Data.DataSetExtensions.dll +2023-03-17 19:54:22.4761 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll +2023-03-17 19:54:22.4773 Info Copied System.Data.dll +2023-03-17 19:54:22.4773 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll +2023-03-17 19:54:22.4786 Info Copied System.Diagnostics.Contracts.dll +2023-03-17 19:54:22.4789 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll +2023-03-17 19:54:22.4799 Info Copied System.Diagnostics.Debug.dll +2023-03-17 19:54:22.4799 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll +2023-03-17 19:54:22.4971 Info Copied System.Diagnostics.DiagnosticSource.dll +2023-03-17 19:54:22.4971 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll +2023-03-17 19:54:22.4987 Info Copied System.Diagnostics.EventLog.dll +2023-03-17 19:54:22.4987 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll +2023-03-17 19:54:22.5000 Info Copied System.Diagnostics.FileVersionInfo.dll +2023-03-17 19:54:22.5000 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll +2023-03-17 19:54:22.5023 Info Copied System.Diagnostics.Process.dll +2023-03-17 19:54:22.5023 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll +2023-03-17 19:54:22.5049 Info Copied System.Diagnostics.StackTrace.dll +2023-03-17 19:54:22.5049 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll +2023-03-17 19:54:22.5063 Info Copied System.Diagnostics.TextWriterTraceListener.dll +2023-03-17 19:54:22.5063 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll +2023-03-17 19:54:22.5075 Info Copied System.Diagnostics.Tools.dll +2023-03-17 19:54:22.5079 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll +2023-03-17 19:54:22.5095 Info Copied System.Diagnostics.TraceSource.dll +2023-03-17 19:54:22.5100 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll +2023-03-17 19:54:22.5110 Info Copied System.Diagnostics.Tracing.dll +2023-03-17 19:54:22.5110 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.dll to destination: /app/Jackett/System.dll +2023-03-17 19:54:22.5124 Info Copied System.dll +2023-03-17 19:54:22.5127 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll +2023-03-17 19:54:22.5137 Info Copied System.Drawing.dll +2023-03-17 19:54:22.5137 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll +2023-03-17 19:54:22.5155 Info Copied System.Drawing.Primitives.dll +2023-03-17 19:54:22.5158 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll +2023-03-17 19:54:22.5168 Info Copied System.Dynamic.Runtime.dll +2023-03-17 19:54:22.5168 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll +2023-03-17 19:54:22.5842 Info Copied System.Formats.Asn1.dll +2023-03-17 19:54:22.5842 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll +2023-03-17 19:54:22.5852 Info Copied System.Globalization.Calendars.dll +2023-03-17 19:54:22.5852 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll +2023-03-17 19:54:22.5859 Info Copied System.Globalization.dll +2023-03-17 19:54:22.5859 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll +2023-03-17 19:54:22.5859 Info Copied System.Globalization.Extensions.dll +2023-03-17 19:54:22.5868 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll +2023-03-17 19:54:22.5868 Info Copied System.IO.Compression.Brotli.dll +2023-03-17 19:54:22.5877 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll +2023-03-17 19:54:22.5889 Info Copied System.IO.Compression.dll +2023-03-17 19:54:22.5889 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll +2023-03-17 19:54:22.5897 Info Copied System.IO.Compression.FileSystem.dll +2023-03-17 19:54:22.5897 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll +2023-03-17 19:54:22.5897 Info Copied System.IO.Compression.ZipFile.dll +2023-03-17 19:54:22.5908 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll +2023-03-17 19:54:22.5908 Info Copied System.IO.dll +2023-03-17 19:54:22.5908 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll +2023-03-17 19:54:22.5920 Info Copied System.IO.FileSystem.AccessControl.dll +2023-03-17 19:54:22.5920 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll +2023-03-17 19:54:22.5927 Info Copied System.IO.FileSystem.dll +2023-03-17 19:54:22.5927 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll +2023-03-17 19:54:22.5927 Info Copied System.IO.FileSystem.DriveInfo.dll +2023-03-17 19:54:22.5938 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll +2023-03-17 19:54:22.5938 Info Copied System.IO.FileSystem.Primitives.dll +2023-03-17 19:54:22.5938 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll +2023-03-17 19:54:22.5952 Info Copied System.IO.FileSystem.Watcher.dll +2023-03-17 19:54:22.5952 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll +2023-03-17 19:54:22.5962 Info Copied System.IO.IsolatedStorage.dll +2023-03-17 19:54:22.5962 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll +2023-03-17 19:54:22.5971 Info Copied System.IO.MemoryMappedFiles.dll +2023-03-17 19:54:22.5971 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll +2023-03-17 19:54:22.5984 Info Copied System.IO.Pipelines.dll +2023-03-17 19:54:22.5984 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll +2023-03-17 19:54:22.5991 Info Copied System.IO.Pipes.AccessControl.dll +2023-03-17 19:54:22.5991 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll +2023-03-17 19:54:22.6002 Info Copied System.IO.Pipes.dll +2023-03-17 19:54:22.6002 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll +2023-03-17 19:54:22.6010 Info Copied System.IO.UnmanagedMemoryStream.dll +2023-03-17 19:54:22.6010 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll +2023-03-17 19:54:22.6031 Info Copied System.Linq.dll +2023-03-17 19:54:22.6031 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll +2023-03-17 19:54:22.6835 Info Copied System.Linq.Expressions.dll +2023-03-17 19:54:22.6841 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll +2023-03-17 19:54:22.6923 Info Copied System.Linq.Parallel.dll +2023-03-17 19:54:22.6929 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll +2023-03-17 19:54:22.6949 Info Copied System.Linq.Queryable.dll +2023-03-17 19:54:22.6949 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll +2023-03-17 19:54:22.6973 Info Copied System.Memory.dll +2023-03-17 19:54:22.6973 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll +2023-03-17 19:54:22.6986 Info Copied System.Net.dll +2023-03-17 19:54:22.6990 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll +2023-03-17 19:54:22.7411 Info Copied System.Net.Http.dll +2023-03-17 19:54:22.7411 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll +2023-03-17 19:54:22.7420 Info Copied System.Net.Http.Json.dll +2023-03-17 19:54:22.7420 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll +2023-03-17 19:54:22.7439 Info Copied System.Net.HttpListener.dll +2023-03-17 19:54:22.7439 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll +2023-03-17 19:54:22.7453 Info Copied System.Net.Mail.dll +2023-03-17 19:54:22.7453 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll +2023-03-17 19:54:22.7461 Info Copied System.Net.NameResolution.dll +2023-03-17 19:54:22.7461 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll +2023-03-17 19:54:22.7469 Info Copied System.Net.NetworkInformation.dll +2023-03-17 19:54:22.7469 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll +2023-03-17 19:54:22.7477 Info Copied System.Net.Ping.dll +2023-03-17 19:54:22.7477 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll +2023-03-17 19:54:22.7487 Info Copied System.Net.Primitives.dll +2023-03-17 19:54:22.7487 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll +2023-03-17 19:54:22.7497 Info Copied System.Net.Quic.dll +2023-03-17 19:54:22.7497 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll +2023-03-17 19:54:22.7509 Info Copied System.Net.Requests.dll +2023-03-17 19:54:22.7509 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll +2023-03-17 19:54:22.7527 Info Copied System.Net.Security.dll +2023-03-17 19:54:22.7527 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll +2023-03-17 19:54:22.7527 Info Copied System.Net.ServicePoint.dll +2023-03-17 19:54:22.7527 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll +2023-03-17 19:54:22.7562 Info Copied System.Net.Sockets.dll +2023-03-17 19:54:22.7562 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll +2023-03-17 19:54:22.7570 Info Copied System.Net.WebClient.dll +2023-03-17 19:54:22.7570 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll +2023-03-17 19:54:22.7577 Info Copied System.Net.WebHeaderCollection.dll +2023-03-17 19:54:22.7577 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll +2023-03-17 19:54:22.7577 Info Copied System.Net.WebProxy.dll +2023-03-17 19:54:22.7577 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll +2023-03-17 19:54:22.7589 Info Copied System.Net.WebSockets.Client.dll +2023-03-17 19:54:22.7589 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll +2023-03-17 19:54:22.7598 Info Copied System.Net.WebSockets.dll +2023-03-17 19:54:22.7598 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll +2023-03-17 19:54:22.7598 Info Copied System.Numerics.dll +2023-03-17 19:54:22.7598 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll +2023-03-17 19:54:22.8585 Info Copied System.Numerics.Vectors.dll +2023-03-17 19:54:22.8585 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll +2023-03-17 19:54:22.8595 Info Copied System.ObjectModel.dll +2023-03-17 19:54:22.8597 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll +2023-03-17 19:54:22.8773 Info Copied System.Private.CoreLib.dll +2023-03-17 19:54:22.8773 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll +2023-03-17 19:54:22.9367 Info Copied System.Private.DataContractSerialization.dll +2023-03-17 19:54:22.9367 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll +2023-03-17 19:54:22.9394 Info Copied System.Private.Uri.dll +2023-03-17 19:54:22.9398 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll +2023-03-17 19:54:22.9748 Info Copied System.Private.Xml.dll +2023-03-17 19:54:22.9748 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll +2023-03-17 19:54:22.9783 Info Copied System.Private.Xml.Linq.dll +2023-03-17 19:54:22.9790 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll +2023-03-17 19:54:22.9804 Info Copied System.Reflection.DispatchProxy.dll +2023-03-17 19:54:22.9807 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll +2023-03-17 19:54:22.9817 Info Copied System.Reflection.dll +2023-03-17 19:54:22.9817 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll +2023-03-17 19:54:22.9830 Info Copied System.Reflection.Emit.dll +2023-03-17 19:54:22.9830 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll +2023-03-17 19:54:22.9843 Info Copied System.Reflection.Emit.ILGeneration.dll +2023-03-17 19:54:22.9843 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll +2023-03-17 19:54:22.9856 Info Copied System.Reflection.Emit.Lightweight.dll +2023-03-17 19:54:22.9860 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll +2023-03-17 19:54:22.9870 Info Copied System.Reflection.Extensions.dll +2023-03-17 19:54:22.9870 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll +2023-03-17 19:54:22.9925 Info Copied System.Reflection.Metadata.dll +2023-03-17 19:54:22.9929 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll +2023-03-17 19:54:22.9939 Info Copied System.Reflection.Primitives.dll +2023-03-17 19:54:22.9939 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll +2023-03-17 19:54:22.9952 Info Copied System.Reflection.TypeExtensions.dll +2023-03-17 19:54:22.9952 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll +2023-03-17 19:54:22.9965 Info Copied System.Resources.Reader.dll +2023-03-17 19:54:22.9969 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll +2023-03-17 19:54:22.9978 Info Copied System.Resources.ResourceManager.dll +2023-03-17 19:54:22.9978 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll +2023-03-17 19:54:22.9991 Info Copied System.Resources.Writer.dll +2023-03-17 19:54:22.9991 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll +2023-03-17 19:54:23.0005 Info Copied System.Runtime.CompilerServices.Unsafe.dll +2023-03-17 19:54:23.0009 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll +2023-03-17 19:54:23.0018 Info Copied System.Runtime.CompilerServices.VisualC.dll +2023-03-17 19:54:23.0018 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll +2023-03-17 19:54:23.0031 Info Copied System.Runtime.dll +2023-03-17 19:54:23.0031 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll +2023-03-17 19:54:23.0043 Info Copied System.Runtime.Extensions.dll +2023-03-17 19:54:23.0047 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll +2023-03-17 19:54:23.0047 Info Copied System.Runtime.Handles.dll +2023-03-17 19:54:23.0059 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll +2023-03-17 19:54:23.0070 Info Copied System.Runtime.InteropServices.dll +2023-03-17 19:54:23.0070 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll +2023-03-17 19:54:23.0085 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll +2023-03-17 19:54:23.0088 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll +2023-03-17 19:54:23.0098 Info Copied System.Runtime.Intrinsics.dll +2023-03-17 19:54:23.0098 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll +2023-03-17 19:54:23.0112 Info Copied System.Runtime.Loader.dll +2023-03-17 19:54:23.0112 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll +2023-03-17 19:54:23.0133 Info Copied System.Runtime.Numerics.dll +2023-03-17 19:54:23.0133 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll +2023-03-17 19:54:23.0146 Info Copied System.Runtime.Serialization.dll +2023-03-17 19:54:23.0149 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll +2023-03-17 19:54:23.0447 Info Copied System.Runtime.Serialization.Formatters.dll +2023-03-17 19:54:23.0447 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll +2023-03-17 19:54:23.0464 Info Copied System.Runtime.Serialization.Json.dll +2023-03-17 19:54:23.0468 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll +2023-03-17 19:54:23.0479 Info Copied System.Runtime.Serialization.Primitives.dll +2023-03-17 19:54:23.0479 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll +2023-03-17 19:54:23.0492 Info Copied System.Runtime.Serialization.Xml.dll +2023-03-17 19:54:23.0497 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll +2023-03-17 19:54:23.0510 Info Copied System.Security.AccessControl.dll +2023-03-17 19:54:23.0510 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll +2023-03-17 19:54:23.0528 Info Copied System.Security.Claims.dll +2023-03-17 19:54:23.0528 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll +2023-03-17 19:54:23.0569 Info Copied System.Security.Cryptography.Algorithms.dll +2023-03-17 19:54:23.0569 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll +2023-03-17 19:54:23.0585 Info Copied System.Security.Cryptography.Cng.dll +2023-03-17 19:54:23.0588 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll +2023-03-17 19:54:23.0605 Info Copied System.Security.Cryptography.Csp.dll +2023-03-17 19:54:23.0609 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll +2023-03-17 19:54:23.0624 Info Copied System.Security.Cryptography.Encoding.dll +2023-03-17 19:54:23.0628 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll +2023-03-17 19:54:23.0737 Info Copied System.Security.Cryptography.OpenSsl.dll +2023-03-17 19:54:23.0737 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll +2023-03-17 19:54:23.0778 Info Copied System.Security.Cryptography.Pkcs.dll +2023-03-17 19:54:23.0778 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll +2023-03-17 19:54:23.0798 Info Copied System.Security.Cryptography.Primitives.dll +2023-03-17 19:54:23.0798 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll +2023-03-17 19:54:23.0812 Info Copied System.Security.Cryptography.ProtectedData.dll +2023-03-17 19:54:23.0812 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll +2023-03-17 19:54:23.0857 Info Copied System.Security.Cryptography.X509Certificates.dll +2023-03-17 19:54:23.0857 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll +2023-03-17 19:54:23.0889 Info Copied System.Security.Cryptography.Xml.dll +2023-03-17 19:54:23.0889 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll +2023-03-17 19:54:23.0902 Info Copied System.Security.dll +2023-03-17 19:54:23.0902 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll +2023-03-17 19:54:23.0915 Info Copied System.Security.Principal.dll +2023-03-17 19:54:23.0918 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll +2023-03-17 19:54:23.0930 Info Copied System.Security.Principal.Windows.dll +2023-03-17 19:54:23.0930 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll +2023-03-17 19:54:23.0943 Info Copied System.Security.SecureString.dll +2023-03-17 19:54:23.0943 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll +2023-03-17 19:54:23.0957 Info Copied System.ServiceModel.Web.dll +2023-03-17 19:54:23.0957 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll +2023-03-17 19:54:23.0971 Info Copied System.ServiceProcess.dll +2023-03-17 19:54:23.0971 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll +2023-03-17 19:54:23.0984 Info Copied System.ServiceProcess.ServiceController.dll +2023-03-17 19:54:23.0988 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll +2023-03-17 19:54:23.1034 Info Copied System.Text.Encoding.CodePages.dll +2023-03-17 19:54:23.1037 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll +2023-03-17 19:54:23.1037 Info Copied System.Text.Encoding.dll +2023-03-17 19:54:23.1049 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll +2023-03-17 19:54:23.1058 Info Copied System.Text.Encoding.Extensions.dll +2023-03-17 19:54:23.1058 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll +2023-03-17 19:54:23.1079 Info Copied System.Text.Encodings.Web.dll +2023-03-17 19:54:23.1079 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll +2023-03-17 19:54:23.1159 Info Copied System.Text.Json.dll +2023-03-17 19:54:23.1159 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll +2023-03-17 19:54:23.1195 Info Copied System.Text.RegularExpressions.dll +2023-03-17 19:54:23.1199 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll +2023-03-17 19:54:23.1213 Info Copied System.Threading.Channels.dll +2023-03-17 19:54:23.1217 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll +2023-03-17 19:54:23.1231 Info Copied System.Threading.dll +2023-03-17 19:54:23.1231 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll +2023-03-17 19:54:23.1243 Info Copied System.Threading.Overlapped.dll +2023-03-17 19:54:23.1243 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll +2023-03-17 19:54:23.1302 Info Copied System.Threading.Tasks.Dataflow.dll +2023-03-17 19:54:23.1307 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll +2023-03-17 19:54:23.1307 Info Copied System.Threading.Tasks.dll +2023-03-17 19:54:23.1320 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll +2023-03-17 19:54:23.1329 Info Copied System.Threading.Tasks.Extensions.dll +2023-03-17 19:54:23.1329 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll +2023-03-17 19:54:23.1348 Info Copied System.Threading.Tasks.Parallel.dll +2023-03-17 19:54:23.1348 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll +2023-03-17 19:54:23.1360 Info Copied System.Threading.Thread.dll +2023-03-17 19:54:23.1360 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll +2023-03-17 19:54:23.1373 Info Copied System.Threading.ThreadPool.dll +2023-03-17 19:54:23.1373 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll +2023-03-17 19:54:23.1385 Info Copied System.Threading.Timer.dll +2023-03-17 19:54:23.1389 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll +2023-03-17 19:54:23.1423 Info Copied System.Transactions.dll +2023-03-17 19:54:23.1427 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll +2023-03-17 19:54:23.1450 Info Copied System.Transactions.Local.dll +2023-03-17 19:54:23.1450 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll +2023-03-17 19:54:23.1463 Info Copied System.ValueTuple.dll +2023-03-17 19:54:23.1463 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll +2023-03-17 19:54:23.1475 Info Copied System.Web.dll +2023-03-17 19:54:23.1478 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll +2023-03-17 19:54:23.1489 Info Copied System.Web.HttpUtility.dll +2023-03-17 19:54:23.1489 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll +2023-03-17 19:54:23.1504 Info Copied System.Windows.dll +2023-03-17 19:54:23.1507 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll +2023-03-17 19:54:23.1517 Info Copied System.Xml.dll +2023-03-17 19:54:23.1517 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll +2023-03-17 19:54:23.1528 Info Copied System.Xml.Linq.dll +2023-03-17 19:54:23.1528 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll +2023-03-17 19:54:23.1541 Info Copied System.Xml.ReaderWriter.dll +2023-03-17 19:54:23.1541 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll +2023-03-17 19:54:23.1553 Info Copied System.Xml.Serialization.dll +2023-03-17 19:54:23.1553 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll +2023-03-17 19:54:23.1565 Info Copied System.Xml.XDocument.dll +2023-03-17 19:54:23.1568 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll +2023-03-17 19:54:23.1577 Info Copied System.Xml.XmlDocument.dll +2023-03-17 19:54:23.1577 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll +2023-03-17 19:54:23.1590 Info Copied System.Xml.XmlSerializer.dll +2023-03-17 19:54:23.1590 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll +2023-03-17 19:54:23.1602 Info Copied System.Xml.XPath.dll +2023-03-17 19:54:23.1602 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll +2023-03-17 19:54:23.1614 Info Copied System.Xml.XPath.XDocument.dll +2023-03-17 19:54:23.1614 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll +2023-03-17 19:54:23.1614 Info Copied WindowsBase.dll +2023-03-17 19:54:23.1630 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll +2023-03-17 19:54:23.1719 Info Copied YamlDotNet.dll +2023-03-17 19:54:23.1719 Info File copying complete +2023-03-17 19:54:23.2165 Info Killing process 307 +2023-03-17 19:54:26.3006 Info Process 307 didn't exit within 2 seconds after a SIGTERM +2023-03-18 20:54:40.0224 Info Jackett Updater v0.20.3627 +2023-03-18 20:54:40.1233 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "383" "--NoRestart" +2023-03-18 20:54:40.1275 Info Jackett variant: CoreLinuxMuslAmdx64 +2023-03-18 20:54:40.3371 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb +2023-03-18 20:54:40.3379 Info Deleted /app/Jackett/DateTimeRoutines.pdb +2023-03-18 20:54:40.3379 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb +2023-03-18 20:54:40.3379 Info Deleted /app/Jackett/Jackett.Common.pdb +2023-03-18 20:54:40.3388 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb +2023-03-18 20:54:40.3388 Info Deleted /app/Jackett/JackettUpdater.pdb +2023-03-18 20:54:40.3388 Info Attempting to remove: /app/Jackett/jackett.pdb +2023-03-18 20:54:40.3397 Info Deleted /app/Jackett/jackett.pdb +2023-03-18 20:54:40.3397 Info Attempting to remove: /app/Jackett/jackett +2023-03-18 20:54:40.3397 Info Deleted /app/Jackett/jackett +2023-03-18 20:54:40.3397 Info Finding files in: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/ +2023-03-18 20:54:40.3462 Info 892 update files found +2023-03-18 20:54:40.3473 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll +2023-03-18 20:54:40.3505 Info Copied AngleSharp.dll +2023-03-18 20:54:40.3508 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll +2023-03-18 20:54:40.3508 Info Copied AngleSharp.Xml.dll +2023-03-18 20:54:40.3508 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll +2023-03-18 20:54:40.3535 Info Copied Autofac.dll +2023-03-18 20:54:40.3535 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll +2023-03-18 20:54:40.3535 Info Copied Autofac.Extensions.DependencyInjection.dll +2023-03-18 20:54:40.3535 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll +2023-03-18 20:54:40.3555 Info Copied AutoMapper.dll +2023-03-18 20:54:40.3557 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll +2023-03-18 20:54:40.3557 Info Copied BencodeNET.dll +2023-03-18 20:54:40.3557 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll +2023-03-18 20:54:40.3581 Info Copied CommandLine.dll +2023-03-18 20:54:40.3581 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css +2023-03-18 20:54:40.3590 Info Copied animate.css +2023-03-18 20:54:40.3590 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png +2023-03-18 20:54:40.3597 Info Copied apple-touch-icon.png +2023-03-18 20:54:40.3597 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png +2023-03-18 20:54:40.3597 Info Copied binding_dark.png +2023-03-18 20:54:40.3597 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css +2023-03-18 20:54:40.3614 Info Copied bootstrap.min.css +2023-03-18 20:54:40.3614 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js +2023-03-18 20:54:40.3621 Info Copied bootstrap.min.js +2023-03-18 20:54:40.3621 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js +2023-03-18 20:54:40.3627 Info Copied common.js +2023-03-18 20:54:40.3627 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css +2023-03-18 20:54:40.3627 Info Copied bootstrap-multiselect.css +2023-03-18 20:54:40.3637 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css +2023-03-18 20:54:40.3637 Info Copied font-awesome.min.css +2023-03-18 20:54:40.3637 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css +2023-03-18 20:54:40.3648 Info Copied jquery.dataTables.min.css +2023-03-18 20:54:40.3648 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css +2023-03-18 20:54:40.3648 Info Copied tagify.css +2023-03-18 20:54:40.3657 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css +2023-03-18 20:54:40.3657 Info Copied custom_mobile.css +2023-03-18 20:54:40.3657 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css +2023-03-18 20:54:40.3669 Info Copied custom.css +2023-03-18 20:54:40.3669 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js +2023-03-18 20:54:40.3676 Info Copied custom.js +2023-03-18 20:54:40.3676 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico +2023-03-18 20:54:40.3676 Info Copied favicon.ico +2023-03-18 20:54:40.3687 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot +2023-03-18 20:54:40.3687 Info Copied fontawesome-webfont.eot +2023-03-18 20:54:40.3687 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg +2023-03-18 20:54:40.3704 Info Copied fontawesome-webfont.svg +2023-03-18 20:54:40.3707 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf +2023-03-18 20:54:40.3707 Info Copied fontawesome-webfont.ttf +2023-03-18 20:54:40.3707 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff +2023-03-18 20:54:40.3722 Info Copied fontawesome-webfont.woff +2023-03-18 20:54:40.3722 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 +2023-03-18 20:54:40.3729 Info Copied fontawesome-webfont.woff2 +2023-03-18 20:54:40.3729 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf +2023-03-18 20:54:40.3737 Info Copied FontAwesome.otf +2023-03-18 20:54:40.3737 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot +2023-03-18 20:54:40.3737 Info Copied glyphicons-halflings-regular.eot +2023-03-18 20:54:40.3737 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg +2023-03-18 20:54:40.3753 Info Copied glyphicons-halflings-regular.svg +2023-03-18 20:54:40.3753 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf +2023-03-18 20:54:40.3760 Info Copied glyphicons-halflings-regular.ttf +2023-03-18 20:54:40.3760 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff +2023-03-18 20:54:40.3767 Info Copied glyphicons-halflings-regular.woff +2023-03-18 20:54:40.3767 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 +2023-03-18 20:54:40.3767 Info Copied glyphicons-halflings-regular.woff2 +2023-03-18 20:54:40.3767 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png +2023-03-18 20:54:40.3781 Info Copied sort_asc_disabled.png +2023-03-18 20:54:40.3781 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png +2023-03-18 20:54:40.3787 Info Copied sort_asc.png +2023-03-18 20:54:40.3787 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png +2023-03-18 20:54:40.3787 Info Copied sort_both.png +2023-03-18 20:54:40.3787 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png +2023-03-18 20:54:40.3801 Info Copied sort_desc_disabled.png +2023-03-18 20:54:40.3801 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png +2023-03-18 20:54:40.3808 Info Copied sort_desc.png +2023-03-18 20:54:40.3808 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html +2023-03-18 20:54:40.3808 Info Copied index.html +2023-03-18 20:54:40.3818 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png +2023-03-18 20:54:40.3818 Info Copied jacket_medium.png +2023-03-18 20:54:40.3818 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js +2023-03-18 20:54:40.3829 Info Copied api.js +2023-03-18 20:54:40.3829 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js +2023-03-18 20:54:40.3837 Info Copied bootstrap-multiselect.js +2023-03-18 20:54:40.3837 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js +2023-03-18 20:54:40.3837 Info Copied bootstrap-notify.js +2023-03-18 20:54:40.3837 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js +2023-03-18 20:54:40.3851 Info Copied filesize.min.js +2023-03-18 20:54:40.3851 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js +2023-03-18 20:54:40.3859 Info Copied handlebars.min.js +2023-03-18 20:54:40.3859 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js +2023-03-18 20:54:40.3859 Info Copied handlebarsextend.js +2023-03-18 20:54:40.3867 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js +2023-03-18 20:54:40.3867 Info Copied handlebarsmoment.js +2023-03-18 20:54:40.3867 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js +2023-03-18 20:54:40.3880 Info Copied jquery.dataTables.min.js +2023-03-18 20:54:40.3880 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js +2023-03-18 20:54:40.3897 Info Copied jquery.min.js +2023-03-18 20:54:40.3897 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js +2023-03-18 20:54:40.3897 Info Copied jQuery.tagify.min.js +2023-03-18 20:54:40.3907 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js +2023-03-18 20:54:40.3907 Info Copied moment.min.js +2023-03-18 20:54:40.3907 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js +2023-03-18 20:54:40.3920 Info Copied tagify.min.js +2023-03-18 20:54:40.3920 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html +2023-03-18 20:54:40.3920 Info Copied login.html +2023-03-18 20:54:40.3928 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/createdump to destination: /app/Jackett/createdump +2023-03-18 20:54:40.3928 Info Copied createdump +2023-03-18 20:54:40.3937 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll +2023-03-18 20:54:40.3937 Info Copied DateTimeRoutines.dll +2023-03-18 20:54:40.3937 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb +2023-03-18 20:54:40.3949 Info Copied DateTimeRoutines.pdb +2023-03-18 20:54:40.3949 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml +2023-03-18 20:54:40.3949 Info Copied 0daykiev.yml +2023-03-18 20:54:40.3958 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml +2023-03-18 20:54:40.3958 Info Copied 0magnet.yml +2023-03-18 20:54:40.3958 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml +2023-03-18 20:54:40.3969 Info Copied 1337x.yml +2023-03-18 20:54:40.3969 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml +2023-03-18 20:54:40.3969 Info Copied 1ptbar.yml +2023-03-18 20:54:40.3977 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml +2023-03-18 20:54:40.3977 Info Copied 2fast4you.yml +2023-03-18 20:54:40.3977 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml +2023-03-18 20:54:40.3988 Info Copied 2xfree.yml +2023-03-18 20:54:40.3988 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml +2023-03-18 20:54:40.3988 Info Copied 3changtrai.yml +2023-03-18 20:54:40.3988 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml +2023-03-18 20:54:40.4000 Info Copied 3dtorrents.yml +2023-03-18 20:54:40.4000 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml +2023-03-18 20:54:40.4007 Info Copied 4thd.yml +2023-03-18 20:54:40.4007 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml +2023-03-18 20:54:40.4007 Info Copied 52pt.yml +2023-03-18 20:54:40.4007 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml +2023-03-18 20:54:40.4019 Info Copied abnormal.yml diff --git a/tests/arrs/lidarr/config.xml b/tests/docker_configs/lidarr/config.xml similarity index 87% rename from tests/arrs/lidarr/config.xml rename to tests/docker_configs/lidarr/config.xml index 6530f3b..1dca3e6 100644 --- a/tests/arrs/lidarr/config.xml +++ b/tests/docker_configs/lidarr/config.xml @@ -7,10 +7,10 @@ 6868 False True - 78ee6c76a84942f68a16257beaa5fd63 + f0b398ba17c04645bea28ca934d003e0 None master Lidarr - + \ No newline at end of file diff --git a/tests/arrs/radarr/config.xml b/tests/docker_configs/radarr/config.xml similarity index 87% rename from tests/arrs/radarr/config.xml rename to tests/docker_configs/radarr/config.xml index 6c91fd2..4b52905 100644 --- a/tests/arrs/radarr/config.xml +++ b/tests/docker_configs/radarr/config.xml @@ -7,10 +7,10 @@ 9898 False True - 1cfe5b8a03ab47969457e03766ca6117 + 6b95b67e9fd34417b002aada8bf5fa3e None master Radarr - + \ No newline at end of file diff --git a/tests/arrs/readarr/config.xml b/tests/docker_configs/readarr/config.xml similarity index 79% rename from tests/arrs/readarr/config.xml rename to tests/docker_configs/readarr/config.xml index fd02fbc..423a5a0 100644 --- a/tests/arrs/readarr/config.xml +++ b/tests/docker_configs/readarr/config.xml @@ -7,9 +7,10 @@ 6868 False True - a483be8ff67a44deb0e86d6e64e2b1bc + ccad0c53c68247ac99616747407c185b None develop - + Readarr + \ No newline at end of file diff --git a/tests/arrs/sonarr/config.xml b/tests/docker_configs/sonarr/config.xml similarity index 87% rename from tests/arrs/sonarr/config.xml rename to tests/docker_configs/sonarr/config.xml index bf1af09..669d5b3 100644 --- a/tests/arrs/sonarr/config.xml +++ b/tests/docker_configs/sonarr/config.xml @@ -5,7 +5,7 @@ 9898 * - 746b9a3b305e4b4785183f6692d03a99 + da96fdd18ce147b79b54c2fdadb7e19a None Docker True @@ -13,4 +13,4 @@ Sonarr 514 - + \ No newline at end of file diff --git a/tests/fixtures/common/blocklist.json b/tests/fixtures/common/blocklist.json new file mode 100644 index 0000000..87ff616 --- /dev/null +++ b/tests/fixtures/common/blocklist.json @@ -0,0 +1,99 @@ +{ + "page": 1, + "pageSize": 20, + "sortKey": "date", + "sortDirection": "descending", + "totalRecords": 0, + "records": [ + { + "movieId": 176, + "sourceTitle": "string", + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormats": [], + "date": "2019-04-25T10: 45: 21Z", + "protocol": "torrent", + "indexer": "Jackett", + "message": "Manually marked as failed", + "id": 3 + }, + { + "movieId": 176, + "sourceTitle": "string", + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormats": [], + "date": "2019-04-25T10: 45: 54Z", + "protocol": "torrent", + "indexer": "Jackett", + "message": "Manually marked as failed", + "id": 4 + }, + { + "movieId": 176, + "sourceTitle": "string", + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormats": [], + "date": "2019-04-25T10: 45: 55Z", + "protocol": "torrent", + "indexer": "Jackett", + "message": "Manually marked as failed", + "id": 5 + } + ] +} diff --git a/tests/fixtures/radarr/indexer.json b/tests/fixtures/common/indexer.json similarity index 100% rename from tests/fixtures/radarr/indexer.json rename to tests/fixtures/common/indexer.json diff --git a/tests/fixtures/radarr/indexer_all.json b/tests/fixtures/common/indexer_all.json similarity index 100% rename from tests/fixtures/radarr/indexer_all.json rename to tests/fixtures/common/indexer_all.json diff --git a/tests/fixtures/radarr/movie.json b/tests/fixtures/radarr/movie.json deleted file mode 100644 index 77e51dc..0000000 --- a/tests/fixtures/radarr/movie.json +++ /dev/null @@ -1,226 +0,0 @@ -{ - "title": "string", - "originalTitle": "string", - "originalLanguage": { - "id": 1, - "name": "English" - }, - "alternateTitles": [ - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 3, - "name": "Spanish" - }, - "id": 453 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 454 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 455 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 456 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 18, - "name": "Portuguese" - }, - "id": 457 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 458 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 459 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 460 - } - ], - "secondaryYearSourceId": 0, - "sortTitle": "string", - "sizeOnDisk": 10501793191, - "status": "released", - "overview": "string", - "inCinemas": "2015-01-01T00:00:00Z", - "physicalRelease": "2015-05-27T00:00:00Z", - "digitalRelease": "2015-06-30T00:00:00Z", - "images": [ - { - "coverType": "poster", - "url": "string", - "remoteUrl": "string" - }, - { - "coverType": "fanart", - "url": "string", - "remoteUrl": "string" - } - ], - "website": "string", - "year": 2014, - "hasFile": true, - "youTubeTrailerId": "string", - "studio": "string", - "path": "string", - "qualityProfileId": 1, - "monitored": false, - "minimumAvailability": "tba", - "isAvailable": true, - "folderName": "string", - "runtime": 133, - "cleanTitle": "string", - "imdbId": "tt123456", - "tmdbId": 123456, - "titleSlug": "123456", - "certification": "15", - "genres": [ - "string" - ], - "tags": [], - "added": "2018-01-13T15:45:51Z", - "ratings": { - "imdb": { - "votes": 473890, - "value": 7.3, - "type": "user" - }, - "tmdb": { - "votes": 11076, - "value": 7.4, - "type": "user" - }, - "metacritic": { - "votes": 0, - "value": 72, - "type": "user" - }, - "rottenTomatoes": { - "votes": 0, - "value": 72, - "type": "user" - } - }, - "movieFile": { - "movieId": 1, - "relativePath": "string", - "path": "string", - "size": 10501793191, - "dateAdded": "2018-01-13T15:54:23Z", - "indexerFlags": 0, - "quality": { - "quality": { - "id": 9, - "name": "HDTV-1080p", - "source": "tv", - "resolution": 1080, - "modifier": "none" - }, - "revision": { - "version": 1, - "real": 0, - "isRepack": false - } - }, - "mediaInfo": { - "audioBitrate": 640000, - "audioChannels": 5.1, - "audioCodec": "AC3", - "audioLanguages": "eng", - "audioStreamCount": 1, - "videoBitDepth": 8, - "videoBitrate": 0, - "videoCodec": "x264", - "videoDynamicRangeType": "", - "videoFps": 23.976, - "resolution": "1920x800", - "runTime": "2:12:39", - "scanType": "Progressive", - "subtitles": "jpn/eng/fre/ger/ita/spa/dut/dan/fin/ice/nor/swe" - }, - "qualityCutoffNotMet": false, - "languages": [ - { - "id": 1, - "name": "English" - } - ], - "edition": "", - "id": 12 - }, - "id": 1 -} diff --git a/tests/fixtures/radarr/movie_all.json b/tests/fixtures/radarr/movie_all.json deleted file mode 100644 index 6c62ab6..0000000 --- a/tests/fixtures/radarr/movie_all.json +++ /dev/null @@ -1,228 +0,0 @@ -[ - { - "title": "string", - "originalTitle": "string", - "originalLanguage": { - "id": 1, - "name": "English" - }, - "alternateTitles": [ - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 3, - "name": "Spanish" - }, - "id": 453 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 454 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 455 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 456 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 18, - "name": "Portuguese" - }, - "id": 457 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 458 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 459 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 460 - } - ], - "secondaryYearSourceId": 0, - "sortTitle": "string", - "sizeOnDisk": 10501793191, - "status": "released", - "overview": "string", - "inCinemas": "2015-01-01T00:00:00Z", - "physicalRelease": "2015-05-27T00:00:00Z", - "digitalRelease": "2015-06-30T00:00:00Z", - "images": [ - { - "coverType": "poster", - "url": "string", - "remoteUrl": "string" - }, - { - "coverType": "fanart", - "url": "string", - "remoteUrl": "string" - } - ], - "website": "string", - "year": 2014, - "hasFile": true, - "youTubeTrailerId": "string", - "studio": "string", - "path": "string", - "qualityProfileId": 1, - "monitored": false, - "minimumAvailability": "tba", - "isAvailable": true, - "folderName": "string", - "runtime": 133, - "cleanTitle": "string", - "imdbId": "tt123456", - "tmdbId": 123456, - "titleSlug": "123456", - "certification": "15", - "genres": [ - "string" - ], - "tags": [], - "added": "2018-01-13T15:45:51Z", - "ratings": { - "imdb": { - "votes": 473890, - "value": 7.3, - "type": "user" - }, - "tmdb": { - "votes": 11076, - "value": 7.4, - "type": "user" - }, - "metacritic": { - "votes": 0, - "value": 72, - "type": "user" - }, - "rottenTomatoes": { - "votes": 0, - "value": 72, - "type": "user" - } - }, - "movieFile": { - "movieId": 1, - "relativePath": "string", - "path": "string", - "size": 10501793191, - "dateAdded": "2018-01-13T15:54:23Z", - "indexerFlags": 0, - "quality": { - "quality": { - "id": 9, - "name": "HDTV-1080p", - "source": "tv", - "resolution": 1080, - "modifier": "none" - }, - "revision": { - "version": 1, - "real": 0, - "isRepack": false - } - }, - "mediaInfo": { - "audioBitrate": 640000, - "audioChannels": 5.1, - "audioCodec": "AC3", - "audioLanguages": "eng", - "audioStreamCount": 1, - "videoBitDepth": 8, - "videoBitrate": 0, - "videoCodec": "x264", - "videoDynamicRangeType": "", - "videoFps": 23.976, - "resolution": "1920x800", - "runTime": "2:12:39", - "scanType": "Progressive", - "subtitles": "jpn/eng/fre/ger/ita/spa/dut/dan/fin/ice/nor/swe" - }, - "qualityCutoffNotMet": false, - "languages": [ - { - "id": 1, - "name": "English" - } - ], - "edition": "", - "id": 12 - }, - "id": 1 - } -] diff --git a/tests/fixtures/radarr/movie_history.json b/tests/fixtures/radarr/movie_history.json deleted file mode 100644 index f6742fe..0000000 --- a/tests/fixtures/radarr/movie_history.json +++ /dev/null @@ -1,66 +0,0 @@ -[ - { - "movieId": 1, - "sourceTitle": "string", - "languages": [ - { - "id": 1, - "name": "English" - } - ], - "quality": { - "quality": { - "id": 9, - "name": "HDTV-1080p", - "source": "tv", - "resolution": 1080, - "modifier": "none" - }, - "revision": { - "version": 1, - "real": 0, - "isRepack": false - } - }, - "customFormats": [], - "qualityCutoffNotMet": false, - "date": "2018-01-13T15:54:23Z", - "eventType": "movieFileDeleted", - "data": { - "reason": "MissingFromDisk" - }, - "id": 2 - }, - { - "movieId": 1, - "sourceTitle": "string", - "languages": [ - { - "id": 1, - "name": "English" - } - ], - "quality": { - "quality": { - "id": 9, - "name": "HDTV-1080p", - "source": "tv", - "resolution": 1080, - "modifier": "none" - }, - "revision": { - "version": 1, - "real": 0, - "isRepack": false - } - }, - "customFormats": [], - "qualityCutoffNotMet": false, - "date": "2018-01-13T15:46:28Z", - "eventType": "movieFileDeleted", - "data": { - "reason": "MissingFromDisk" - }, - "id": 1 - } -] diff --git a/tests/fixtures/radarr/movie_lookup.json b/tests/fixtures/radarr/movie_lookup.json deleted file mode 100644 index 6c62ab6..0000000 --- a/tests/fixtures/radarr/movie_lookup.json +++ /dev/null @@ -1,228 +0,0 @@ -[ - { - "title": "string", - "originalTitle": "string", - "originalLanguage": { - "id": 1, - "name": "English" - }, - "alternateTitles": [ - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 3, - "name": "Spanish" - }, - "id": 453 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 454 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 455 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 456 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 18, - "name": "Portuguese" - }, - "id": 457 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 458 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 459 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 460 - } - ], - "secondaryYearSourceId": 0, - "sortTitle": "string", - "sizeOnDisk": 10501793191, - "status": "released", - "overview": "string", - "inCinemas": "2015-01-01T00:00:00Z", - "physicalRelease": "2015-05-27T00:00:00Z", - "digitalRelease": "2015-06-30T00:00:00Z", - "images": [ - { - "coverType": "poster", - "url": "string", - "remoteUrl": "string" - }, - { - "coverType": "fanart", - "url": "string", - "remoteUrl": "string" - } - ], - "website": "string", - "year": 2014, - "hasFile": true, - "youTubeTrailerId": "string", - "studio": "string", - "path": "string", - "qualityProfileId": 1, - "monitored": false, - "minimumAvailability": "tba", - "isAvailable": true, - "folderName": "string", - "runtime": 133, - "cleanTitle": "string", - "imdbId": "tt123456", - "tmdbId": 123456, - "titleSlug": "123456", - "certification": "15", - "genres": [ - "string" - ], - "tags": [], - "added": "2018-01-13T15:45:51Z", - "ratings": { - "imdb": { - "votes": 473890, - "value": 7.3, - "type": "user" - }, - "tmdb": { - "votes": 11076, - "value": 7.4, - "type": "user" - }, - "metacritic": { - "votes": 0, - "value": 72, - "type": "user" - }, - "rottenTomatoes": { - "votes": 0, - "value": 72, - "type": "user" - } - }, - "movieFile": { - "movieId": 1, - "relativePath": "string", - "path": "string", - "size": 10501793191, - "dateAdded": "2018-01-13T15:54:23Z", - "indexerFlags": 0, - "quality": { - "quality": { - "id": 9, - "name": "HDTV-1080p", - "source": "tv", - "resolution": 1080, - "modifier": "none" - }, - "revision": { - "version": 1, - "real": 0, - "isRepack": false - } - }, - "mediaInfo": { - "audioBitrate": 640000, - "audioChannels": 5.1, - "audioCodec": "AC3", - "audioLanguages": "eng", - "audioStreamCount": 1, - "videoBitDepth": 8, - "videoBitrate": 0, - "videoCodec": "x264", - "videoDynamicRangeType": "", - "videoFps": 23.976, - "resolution": "1920x800", - "runTime": "2:12:39", - "scanType": "Progressive", - "subtitles": "jpn/eng/fre/ger/ita/spa/dut/dan/fin/ice/nor/swe" - }, - "qualityCutoffNotMet": false, - "languages": [ - { - "id": 1, - "name": "English" - } - ], - "edition": "", - "id": 12 - }, - "id": 1 - } -] diff --git a/tests/fixtures/radarr/movie_lookup_blank.json b/tests/fixtures/radarr/movie_lookup_blank.json deleted file mode 100644 index fe51488..0000000 --- a/tests/fixtures/radarr/movie_lookup_blank.json +++ /dev/null @@ -1 +0,0 @@ -[] diff --git a/tests/fixtures/radarr/movie_tmdb.json b/tests/fixtures/radarr/movie_tmdb.json deleted file mode 100644 index 6c62ab6..0000000 --- a/tests/fixtures/radarr/movie_tmdb.json +++ /dev/null @@ -1,228 +0,0 @@ -[ - { - "title": "string", - "originalTitle": "string", - "originalLanguage": { - "id": 1, - "name": "English" - }, - "alternateTitles": [ - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 3, - "name": "Spanish" - }, - "id": 453 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 454 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 455 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 456 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 18, - "name": "Portuguese" - }, - "id": 457 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 458 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 459 - }, - { - "sourceType": "tmdb", - "movieId": 1, - "title": "string", - "sourceId": 0, - "votes": 0, - "voteCount": 0, - "language": { - "id": 1, - "name": "English" - }, - "id": 460 - } - ], - "secondaryYearSourceId": 0, - "sortTitle": "string", - "sizeOnDisk": 10501793191, - "status": "released", - "overview": "string", - "inCinemas": "2015-01-01T00:00:00Z", - "physicalRelease": "2015-05-27T00:00:00Z", - "digitalRelease": "2015-06-30T00:00:00Z", - "images": [ - { - "coverType": "poster", - "url": "string", - "remoteUrl": "string" - }, - { - "coverType": "fanart", - "url": "string", - "remoteUrl": "string" - } - ], - "website": "string", - "year": 2014, - "hasFile": true, - "youTubeTrailerId": "string", - "studio": "string", - "path": "string", - "qualityProfileId": 1, - "monitored": false, - "minimumAvailability": "tba", - "isAvailable": true, - "folderName": "string", - "runtime": 133, - "cleanTitle": "string", - "imdbId": "tt123456", - "tmdbId": 123456, - "titleSlug": "123456", - "certification": "15", - "genres": [ - "string" - ], - "tags": [], - "added": "2018-01-13T15:45:51Z", - "ratings": { - "imdb": { - "votes": 473890, - "value": 7.3, - "type": "user" - }, - "tmdb": { - "votes": 11076, - "value": 7.4, - "type": "user" - }, - "metacritic": { - "votes": 0, - "value": 72, - "type": "user" - }, - "rottenTomatoes": { - "votes": 0, - "value": 72, - "type": "user" - } - }, - "movieFile": { - "movieId": 1, - "relativePath": "string", - "path": "string", - "size": 10501793191, - "dateAdded": "2018-01-13T15:54:23Z", - "indexerFlags": 0, - "quality": { - "quality": { - "id": 9, - "name": "HDTV-1080p", - "source": "tv", - "resolution": 1080, - "modifier": "none" - }, - "revision": { - "version": 1, - "real": 0, - "isRepack": false - } - }, - "mediaInfo": { - "audioBitrate": 640000, - "audioChannels": 5.1, - "audioCodec": "AC3", - "audioLanguages": "eng", - "audioStreamCount": 1, - "videoBitDepth": 8, - "videoBitrate": 0, - "videoCodec": "x264", - "videoDynamicRangeType": "", - "videoFps": 23.976, - "resolution": "1920x800", - "runTime": "2:12:39", - "scanType": "Progressive", - "subtitles": "jpn/eng/fre/ger/ita/spa/dut/dan/fin/ice/nor/swe" - }, - "qualityCutoffNotMet": false, - "languages": [ - { - "id": 1, - "name": "English" - } - ], - "edition": "", - "id": 12 - }, - "id": 1 - } -] diff --git a/tests/fixtures/radarr/queue_status.json b/tests/fixtures/radarr/queue_status.json deleted file mode 100644 index ce269da..0000000 --- a/tests/fixtures/radarr/queue_status.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "totalCount": 1, - "count": 1, - "unknownCount": 0, - "errors": false, - "warnings": false, - "unknownErrors": false, - "unknownWarnings": false -} diff --git a/tests/fixtures/sonarr/backup.json b/tests/fixtures/sonarr/backup.json deleted file mode 100644 index b76fe7f..0000000 --- a/tests/fixtures/sonarr/backup.json +++ /dev/null @@ -1,18 +0,0 @@ -[ - { - "name": "sonarr_backup_v3.0.8.1507_2022.07.04_11.38.40.zip", - "path": "/backup/scheduled/sonarr_backup_v3.0.8.1507_2022.07.04_11.38.40.zip", - "type": "scheduled", - "size": 4337535, - "time": "2022-07-04T10:38:46.1390372Z", - "id": 1009957364 - }, - { - "name": "sonarr_backup_v3.0.8.1507_2022.06.30_20.44.58.zip", - "path": "/backup/manual/sonarr_backup_v3.0.8.1507_2022.06.30_20.44.58.zip", - "type": "manual", - "size": 4364309, - "time": "2022-06-30T19:45:03.6922108Z", - "id": 246171971 - } -] diff --git a/tests/fixtures/sonarr/blocklist.json b/tests/fixtures/sonarr/blocklist.json deleted file mode 100644 index c6a7594..0000000 --- a/tests/fixtures/sonarr/blocklist.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "page": 1, - "pageSize": 10, - "sortKey": "date", - "sortDirection": "descending", - "totalRecords": 13, - "records": [ - { - "seriesId": 7, - "episodeIds": [ - 7140 - ], - "sourceTitle": "string", - "language": { - "id": 1, - "name": "English" - }, - "quality": { - "quality": { - "id": 9, - "name": "HDTV-1080p", - "source": "television", - "resolution": 1080 - }, - "revision": { - "version": 1, - "real": 0, - "isRepack": false - } - }, - "date": "2022-03-23T15:07:27.72336Z", - "protocol": "torrent", - "indexer": "Jackett", - "message": "Manually marked as failed", - "id": 14 - }, - { - "seriesId": 7, - "episodeIds": [ - 7130 - ], - "sourceTitle": "string", - "language": { - "id": 1, - "name": "English" - }, - "quality": { - "quality": { - "id": 4, - "name": "HDTV-720p", - "source": "television", - "resolution": 720 - }, - "revision": { - "version": 1, - "real": 0, - "isRepack": false - } - }, - "date": "2022-02-28T10:03:33.362734Z", - "protocol": "torrent", - "indexer": "Jackett", - "message": "Manually marked as failed", - "id": 13 - } - ] -} diff --git a/tests/fixtures/sonarr/calendar.json b/tests/fixtures/sonarr/calendar.json deleted file mode 100644 index 83d16f8..0000000 --- a/tests/fixtures/sonarr/calendar.json +++ /dev/null @@ -1,17 +0,0 @@ -[ - { - "seriesId": 1, - "tvdbId": 1234567, - "episodeFileId": 0, - "seasonNumber": 4, - "episodeNumber": 2, - "title": "string", - "airDate": "2022-07-03", - "airDateUtc": "2022-07-04T01:00:00Z", - "overview": "string", - "hasFile": false, - "monitored": true, - "unverifiedSceneNumbering": false, - "id": 1 - } -] diff --git a/tests/fixtures/sonarr/command.json b/tests/fixtures/sonarr/command.json deleted file mode 100644 index b8de2c5..0000000 --- a/tests/fixtures/sonarr/command.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "name": "RefreshMonitoredDownloads", - "commandName": "Refresh Monitored Downloads", - "body": { - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "completionMessage": "Completed", - "requiresDiskAccess": false, - "isExclusive": false, - "name": "RefreshMonitoredDownloads", - "lastExecutionTime": "2022-06-30T12:28:12.936942Z", - "trigger": "scheduled", - "suppressMessages": false - }, - "priority": "high", - "status": "completed", - "queued": "2022-06-30T12:29:42.634933Z", - "started": "2022-06-30T12:29:42.646746Z", - "ended": "2022-06-30T12:29:42.982584Z", - "duration": "00:00:00.3358380", - "trigger": "scheduled", - "stateChangeTime": "2022-06-30T12:29:42.646746Z", - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "lastExecutionTime": "2022-06-30T12:28:12.936942Z", - "id": 4327826 -} diff --git a/tests/fixtures/sonarr/command_all.json b/tests/fixtures/sonarr/command_all.json deleted file mode 100644 index af753bd..0000000 --- a/tests/fixtures/sonarr/command_all.json +++ /dev/null @@ -1,300 +0,0 @@ -[ - { - "name": "RefreshMonitoredDownloads", - "commandName": "Refresh Monitored Downloads", - "message": "Completed", - "body": { - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "completionMessage": "Completed", - "requiresDiskAccess": false, - "isExclusive": false, - "name": "RefreshMonitoredDownloads", - "lastExecutionTime": "2022-06-30T12:28:12.936942Z", - "trigger": "scheduled", - "suppressMessages": false - }, - "priority": "high", - "status": "completed", - "queued": "2022-06-30T12:29:42.634933Z", - "started": "2022-06-30T12:29:42.646746Z", - "ended": "2022-06-30T12:29:42.982584Z", - "duration": "00:00:00.3358380", - "trigger": "scheduled", - "stateChangeTime": "2022-06-30T12:29:42.646746Z", - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "lastExecutionTime": "2022-06-30T12:28:12.936942Z", - "id": 4327826 - }, - { - "name": "ProcessMonitoredDownloads", - "commandName": "Process Monitored Downloads", - "message": "Completed", - "body": { - "requiresDiskAccess": true, - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "completionMessage": "Completed", - "isExclusive": false, - "name": "ProcessMonitoredDownloads", - "trigger": "unspecified", - "suppressMessages": false - }, - "priority": "high", - "status": "completed", - "queued": "2022-06-30T12:29:42.965145Z", - "started": "2022-06-30T12:29:42.982669Z", - "ended": "2022-06-30T12:29:42.990583Z", - "duration": "00:00:00.0079140", - "trigger": "unspecified", - "stateChangeTime": "2022-06-30T12:29:42.982669Z", - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "id": 4327827 - }, - { - "name": "RefreshMonitoredDownloads", - "commandName": "Refresh Monitored Downloads", - "message": "Completed", - "body": { - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "completionMessage": "Completed", - "requiresDiskAccess": false, - "isExclusive": false, - "name": "RefreshMonitoredDownloads", - "lastExecutionTime": "2022-06-30T12:29:43.001663Z", - "trigger": "scheduled", - "suppressMessages": false - }, - "priority": "high", - "status": "completed", - "queued": "2022-06-30T12:31:12.657939Z", - "started": "2022-06-30T12:31:12.69201Z", - "ended": "2022-06-30T12:31:12.945531Z", - "duration": "00:00:00.2535210", - "trigger": "scheduled", - "stateChangeTime": "2022-06-30T12:31:12.69201Z", - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "lastExecutionTime": "2022-06-30T12:29:43.001663Z", - "id": 4327828 - }, - { - "name": "ProcessMonitoredDownloads", - "commandName": "Process Monitored Downloads", - "message": "Completed", - "body": { - "requiresDiskAccess": true, - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "completionMessage": "Completed", - "isExclusive": false, - "name": "ProcessMonitoredDownloads", - "trigger": "unspecified", - "suppressMessages": false - }, - "priority": "high", - "status": "completed", - "queued": "2022-06-30T12:31:12.934345Z", - "started": "2022-06-30T12:31:12.943239Z", - "ended": "2022-06-30T12:31:12.956678Z", - "duration": "00:00:00.0134390", - "trigger": "unspecified", - "stateChangeTime": "2022-06-30T12:31:12.943239Z", - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "id": 4327829 - }, - { - "name": "RefreshMonitoredDownloads", - "commandName": "Refresh Monitored Downloads", - "message": "Completed", - "body": { - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "completionMessage": "Completed", - "requiresDiskAccess": false, - "isExclusive": false, - "name": "RefreshMonitoredDownloads", - "lastExecutionTime": "2022-06-30T12:31:13.001671Z", - "trigger": "scheduled", - "suppressMessages": false - }, - "priority": "high", - "status": "completed", - "queued": "2022-06-30T12:32:42.697741Z", - "started": "2022-06-30T12:32:42.727403Z", - "ended": "2022-06-30T12:32:42.955224Z", - "duration": "00:00:00.2278210", - "trigger": "scheduled", - "stateChangeTime": "2022-06-30T12:32:42.727403Z", - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "lastExecutionTime": "2022-06-30T12:31:13.001671Z", - "id": 4327830 - }, - { - "name": "ProcessMonitoredDownloads", - "commandName": "Process Monitored Downloads", - "message": "Completed", - "body": { - "requiresDiskAccess": true, - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "completionMessage": "Completed", - "isExclusive": false, - "name": "ProcessMonitoredDownloads", - "trigger": "unspecified", - "suppressMessages": false - }, - "priority": "high", - "status": "completed", - "queued": "2022-06-30T12:32:42.938112Z", - "started": "2022-06-30T12:32:42.955286Z", - "ended": "2022-06-30T12:32:43.118259Z", - "duration": "00:00:00.1629730", - "trigger": "unspecified", - "stateChangeTime": "2022-06-30T12:32:42.955286Z", - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "id": 4327831 - }, - { - "name": "RefreshMonitoredDownloads", - "commandName": "Refresh Monitored Downloads", - "message": "Completed", - "body": { - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "completionMessage": "Completed", - "requiresDiskAccess": false, - "isExclusive": false, - "name": "RefreshMonitoredDownloads", - "lastExecutionTime": "2022-06-30T12:32:42.968703Z", - "trigger": "scheduled", - "suppressMessages": false - }, - "priority": "high", - "status": "completed", - "queued": "2022-06-30T12:34:12.763052Z", - "started": "2022-06-30T12:34:12.794455Z", - "ended": "2022-06-30T12:34:12.930054Z", - "duration": "00:00:00.1355990", - "trigger": "scheduled", - "stateChangeTime": "2022-06-30T12:34:12.794455Z", - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "lastExecutionTime": "2022-06-30T12:32:42.968703Z", - "id": 4327833 - }, - { - "name": "ProcessMonitoredDownloads", - "commandName": "Process Monitored Downloads", - "message": "Completed", - "body": { - "requiresDiskAccess": true, - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "completionMessage": "Completed", - "isExclusive": false, - "name": "ProcessMonitoredDownloads", - "trigger": "unspecified", - "suppressMessages": false - }, - "priority": "high", - "status": "completed", - "queued": "2022-06-30T12:34:12.925071Z", - "started": "2022-06-30T12:34:12.928994Z", - "ended": "2022-06-30T12:34:12.93933Z", - "duration": "00:00:00.0103360", - "trigger": "unspecified", - "stateChangeTime": "2022-06-30T12:34:12.928994Z", - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "id": 4327834 - }, - { - "name": "RefreshMonitoredDownloads", - "commandName": "Refresh Monitored Downloads", - "message": "Completed", - "body": { - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "completionMessage": "Completed", - "requiresDiskAccess": false, - "isExclusive": false, - "name": "RefreshMonitoredDownloads", - "lastExecutionTime": "2022-06-30T12:34:12.948708Z", - "trigger": "scheduled", - "suppressMessages": false - }, - "priority": "high", - "status": "completed", - "queued": "2022-06-30T12:35:42.797902Z", - "started": "2022-06-30T12:35:42.830191Z", - "ended": "2022-06-30T12:35:43.242124Z", - "duration": "00:00:00.4119330", - "trigger": "scheduled", - "stateChangeTime": "2022-06-30T12:35:42.830191Z", - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "lastExecutionTime": "2022-06-30T12:34:12.948708Z", - "id": 4327835 - }, - { - "name": "ProcessMonitoredDownloads", - "commandName": "Process Monitored Downloads", - "message": "Completed", - "body": { - "requiresDiskAccess": true, - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "completionMessage": "Completed", - "isExclusive": false, - "name": "ProcessMonitoredDownloads", - "trigger": "unspecified", - "suppressMessages": false - }, - "priority": "high", - "status": "completed", - "queued": "2022-06-30T12:35:43.236271Z", - "started": "2022-06-30T12:35:43.242195Z", - "ended": "2022-06-30T12:35:43.256009Z", - "duration": "00:00:00.0138140", - "trigger": "unspecified", - "stateChangeTime": "2022-06-30T12:35:43.242195Z", - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "id": 4327836 - }, - { - "name": "MessagingCleanup", - "commandName": "Messaging Cleanup", - "message": "Completed", - "body": { - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "completionMessage": "Completed", - "requiresDiskAccess": false, - "isExclusive": false, - "name": "MessagingCleanup", - "lastExecutionTime": "2022-06-30T12:28:42.665203Z", - "trigger": "scheduled", - "suppressMessages": false - }, - "priority": "low", - "status": "completed", - "queued": "2022-06-30T12:33:42.737106Z", - "started": "2022-06-30T12:33:42.761555Z", - "ended": "2022-06-30T12:33:42.796973Z", - "duration": "00:00:00.0354180", - "trigger": "scheduled", - "stateChangeTime": "2022-06-30T12:33:42.761555Z", - "sendUpdatesToClient": false, - "updateScheduledTask": true, - "lastExecutionTime": "2022-06-30T12:28:42.665203Z", - "id": 4327832 - } -] diff --git a/tests/fixtures/sonarr/config_downloadclient.json b/tests/fixtures/sonarr/config_downloadclient.json deleted file mode 100644 index 420422c..0000000 --- a/tests/fixtures/sonarr/config_downloadclient.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "downloadClientWorkingFolders": "_UNPACK_|_FAILED_", - "enableCompletedDownloadHandling": true, - "autoRedownloadFailed": true, - "id": 1 -} diff --git a/tests/fixtures/sonarr/config_host.json b/tests/fixtures/sonarr/config_host.json deleted file mode 100644 index 771afdd..0000000 --- a/tests/fixtures/sonarr/config_host.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "bindAddress": "*", - "port": 8989, - "sslPort": 9898, - "enableSsl": false, - "launchBrowser": true, - "authenticationMethod": "forms", - "analyticsEnabled": true, - "username": "string", - "password": "string", - "logLevel": "Info", - "consoleLogLevel": "", - "branch": "main", - "apiKey": "string", - "sslCertHash": "", - "urlBase": "", - "updateAutomatically": false, - "updateMechanism": "docker", - "updateScriptPath": "", - "proxyEnabled": false, - "proxyType": "http", - "proxyHostname": "string", - "proxyPort": 3128, - "proxyUsername": "", - "proxyPassword": "", - "proxyBypassFilter": "", - "proxyBypassLocalAddresses": true, - "certificateValidation": "enabled", - "backupFolder": "Backups", - "backupInterval": 7, - "backupRetention": 28, - "id": 1 -} diff --git a/tests/fixtures/sonarr/config_naming.json b/tests/fixtures/sonarr/config_naming.json deleted file mode 100644 index 96ebba3..0000000 --- a/tests/fixtures/sonarr/config_naming.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "renameEpisodes": true, - "replaceIllegalCharacters": true, - "multiEpisodeStyle": 0, - "standardEpisodeFormat": "{Series Title} - S{season:00}E{episode:00} - {Episode Title} {Quality Full}", - "dailyEpisodeFormat": "{Series Title} - {Air-Date} - {Episode Title} {Quality Full}", - "animeEpisodeFormat": "{Series Title} - S{season:00}E{episode:00} - {Episode Title} {Quality Full}", - "seriesFolderFormat": "{Series Title}", - "seasonFolderFormat": "Season {season}", - "specialsFolderFormat": "Specials", - "includeSeriesTitle": false, - "includeEpisodeTitle": false, - "includeQuality": false, - "replaceSpaces": true, - "separator": " - ", - "numberStyle": "S{season:00}E{episode:00}", - "id": 1 -} diff --git a/tests/fixtures/sonarr/config_ui.json b/tests/fixtures/sonarr/config_ui.json deleted file mode 100644 index fef4a10..0000000 --- a/tests/fixtures/sonarr/config_ui.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "firstDayOfWeek": 0, - "calendarWeekColumnHeader": "ddd M/D", - "shortDateFormat": "DD MMM YYYY", - "longDateFormat": "dddd, D MMMM YYYY", - "timeFormat": "HH:mm", - "showRelativeDates": false, - "enableColorImpairedMode": false, - "id": 1 -} diff --git a/tests/fixtures/sonarr/diskspace.json b/tests/fixtures/sonarr/diskspace.json deleted file mode 100644 index 51cd6bc..0000000 --- a/tests/fixtures/sonarr/diskspace.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "path": "/", - "label": "", - "freeSpace": 12423028736, - "totalSpace": 42924511232 - }, - { - "path": "/config", - "label": "", - "freeSpace": 12423028736, - "totalSpace": 42924511232 - } -] diff --git a/tests/fixtures/sonarr/download_client_schema_all.json b/tests/fixtures/sonarr/download_client_schema_all.json deleted file mode 100644 index 2486c2d..0000000 --- a/tests/fixtures/sonarr/download_client_schema_all.json +++ /dev/null @@ -1,58 +0,0 @@ -[ - { - "enable": false, - "protocol": "torrent", - "priority": 1, - "removeCompletedDownloads": true, - "removeFailedDownloads": true, - "name": "", - "fields": [ - { - "order": 0, - "name": "host", - "label": "Host", - "value": "localhost", - "type": "textbox", - "advanced": false - }, - { - "order": 1, - "name": "port", - "label": "Port", - "value": 6800, - "type": "number", - "advanced": false - }, - { - "order": 2, - "name": "rpcPath", - "label": "XML RPC Path", - "value": "/rpc", - "type": "textbox", - "advanced": false - }, - { - "order": 3, - "name": "useSsl", - "label": "Use SSL", - "value": false, - "type": "checkbox", - "advanced": false - }, - { - "order": 4, - "name": "secretToken", - "label": "Secret token", - "value": "MySecretToken", - "type": "password", - "advanced": false - } - ], - "implementationName": "Aria2", - "implementation": "Aria2", - "configContract": "Aria2Settings", - "infoLink": "https://wiki.servarr.com/sonarr/supported#aria2", - "tags": [], - "presets": [] - } -] diff --git a/tests/fixtures/sonarr/downloadclient.json b/tests/fixtures/sonarr/downloadclient.json deleted file mode 100644 index 903ffae..0000000 --- a/tests/fixtures/sonarr/downloadclient.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "enable": true, - "protocol": "string", - "priority": 1, - "removeCompletedDownloads": true, - "removeFailedDownloads": true, - "name": "string", - "fields": [ - { - "order": 0, - "name": "host", - "label": "Host", - "value": "string", - "type": "textbox", - "advanced": false - }, - { - "order": 1, - "name": "port", - "label": "Port", - "value": 8112, - "type": "textbox", - "advanced": false - }, - { - "order": 2, - "name": "useSsl", - "label": "Use SSL", - "helpText": "Use secure connection when connecting to Deluge", - "value": false, - "type": "checkbox", - "advanced": false - }, - { - "order": 3, - "name": "urlBase", - "label": "Url Base", - "helpText": "Adds a prefix to the deluge json url, see http://[host]:[port]/[urlBase]/json", - "type": "textbox", - "advanced": true - }, - { - "order": 4, - "name": "password", - "label": "Password", - "value": "string", - "type": "password", - "advanced": false - }, - { - "order": 5, - "name": "tvCategory", - "label": "Category", - "helpText": "Adding a category specific to Sonarr avoids conflicts with unrelated non-Sonarr downloads. Using a category is optional, but strongly recommended.", - "value": "sonarr", - "type": "textbox", - "advanced": false - }, - { - "order": 6, - "name": "tvImportedCategory", - "label": "Post-Import Category", - "helpText": "Category for Sonarr to set after it has imported the download. Sonarr will not remove torrents in that category even if seeding finished. Leave blank to keep same category.", - "type": "textbox", - "advanced": true - }, - { - "order": 7, - "name": "recentTvPriority", - "label": "Recent Priority", - "helpText": "Priority to use when grabbing episodes that aired within the last 14 days", - "value": 0, - "type": "select", - "advanced": false, - "selectOptions": [ - { - "value": 0, - "name": "Last", - "order": 0 - }, - { - "value": 1, - "name": "First", - "order": 1 - } - ] - }, - { - "order": 8, - "name": "olderTvPriority", - "label": "Older Priority", - "helpText": "Priority to use when grabbing episodes that aired over 14 days ago", - "value": 0, - "type": "select", - "advanced": false, - "selectOptions": [ - { - "value": 0, - "name": "Last", - "order": 0 - }, - { - "value": 1, - "name": "First", - "order": 1 - } - ] - }, - { - "order": 9, - "name": "addPaused", - "label": "Add Paused", - "value": false, - "type": "checkbox", - "advanced": false - } - ], - "implementationName": "string", - "implementation": "string", - "configContract": "string", - "infoLink": "string", - "tags": [], - "id": 1 -} diff --git a/tests/fixtures/sonarr/downloadclient_all.json b/tests/fixtures/sonarr/downloadclient_all.json deleted file mode 100644 index 0e75e7f..0000000 --- a/tests/fixtures/sonarr/downloadclient_all.json +++ /dev/null @@ -1,126 +0,0 @@ -[ - { - "enable": true, - "protocol": "string", - "priority": 1, - "removeCompletedDownloads": true, - "removeFailedDownloads": true, - "name": "string", - "fields": [ - { - "order": 0, - "name": "host", - "label": "Host", - "value": "string", - "type": "textbox", - "advanced": false - }, - { - "order": 1, - "name": "port", - "label": "Port", - "value": 8112, - "type": "textbox", - "advanced": false - }, - { - "order": 2, - "name": "useSsl", - "label": "Use SSL", - "helpText": "Use secure connection when connecting to Deluge", - "value": false, - "type": "checkbox", - "advanced": false - }, - { - "order": 3, - "name": "urlBase", - "label": "Url Base", - "helpText": "Adds a prefix to the deluge json url, see http://[host]:[port]/[urlBase]/json", - "type": "textbox", - "advanced": true - }, - { - "order": 4, - "name": "password", - "label": "Password", - "value": "string", - "type": "password", - "advanced": false - }, - { - "order": 5, - "name": "tvCategory", - "label": "Category", - "helpText": "Adding a category specific to Sonarr avoids conflicts with unrelated non-Sonarr downloads. Using a category is optional, but strongly recommended.", - "value": "sonarr", - "type": "textbox", - "advanced": false - }, - { - "order": 6, - "name": "tvImportedCategory", - "label": "Post-Import Category", - "helpText": "Category for Sonarr to set after it has imported the download. Sonarr will not remove torrents in that category even if seeding finished. Leave blank to keep same category.", - "type": "textbox", - "advanced": true - }, - { - "order": 7, - "name": "recentTvPriority", - "label": "Recent Priority", - "helpText": "Priority to use when grabbing episodes that aired within the last 14 days", - "value": 0, - "type": "select", - "advanced": false, - "selectOptions": [ - { - "value": 0, - "name": "Last", - "order": 0 - }, - { - "value": 1, - "name": "First", - "order": 1 - } - ] - }, - { - "order": 8, - "name": "olderTvPriority", - "label": "Older Priority", - "helpText": "Priority to use when grabbing episodes that aired over 14 days ago", - "value": 0, - "type": "select", - "advanced": false, - "selectOptions": [ - { - "value": 0, - "name": "Last", - "order": 0 - }, - { - "value": 1, - "name": "First", - "order": 1 - } - ] - }, - { - "order": 9, - "name": "addPaused", - "label": "Add Paused", - "value": false, - "type": "checkbox", - "advanced": false - } - ], - "implementationName": "string", - "implementation": "string", - "configContract": "string", - "infoLink": "string", - "tags": [], - "id": 1 - } -] diff --git a/tests/fixtures/sonarr/episode.json b/tests/fixtures/sonarr/episode.json deleted file mode 100644 index 7bd270a..0000000 --- a/tests/fixtures/sonarr/episode.json +++ /dev/null @@ -1,105 +0,0 @@ -{ - "seriesId": 0, - "episodeFileId": 0, - "seasonNumber": 0, - "episodeNumber": 0, - "title": "string", - "airDate": "2009-09-17", - "airDateUtc": "2009-09-18T02:00:00Z", - "overview": "string", - "episodeFile": { - "seriesId": 0, - "seasonNumber": 0, - "relativePath": "string", - "path": "string", - "size": 0, - "dateAdded": "2019-06-13T09:08:03.775081Z", - "releaseGroup": "string", - "language": { - "id": 0, - "name": "string" - }, - "quality": { - "quality": { - "id": 0, - "name": "string", - "source": "string", - "resolution": 0 - }, - "revision": { - "version": 0, - "real": 0, - "isRepack": false - } - }, - "mediaInfo": { - "audioBitrate": 0, - "audioChannels": 0.0, - "audioCodec": "string", - "audioLanguages": "string", - "audioStreamCount": 0, - "videoBitDepth": 0, - "videoBitrate": 0, - "videoCodec": "string", - "videoFps": 0.0, - "resolution": "string", - "runTime": "00:00", - "scanType": "string", - "subtitles": "string" - }, - "qualityCutoffNotMet": false, - "languageCutoffNotMet": false, - "id": 0 - }, - "hasFile": true, - "monitored": true, - "absoluteEpisodeNumber": 0, - "unverifiedSceneNumbering": false, - "series": { - "title": "string", - "sortTitle": "string", - "status": "string", - "ended": true, - "overview": "string", - "network": "string", - "airTime": "00:00", - "images": [ - { - "coverType": "poster", - "url": "string" - } - ], - "seasons": [ - { - "seasonNumber": 0, - "monitored": false - } - ], - "year": 0, - "path": "string", - "qualityProfileId": 0, - "languageProfileId": 0, - "seasonFolder": true, - "monitored": true, - "useSceneNumbering": false, - "runtime": 0, - "tvdbId": 0, - "tvRageId": 0, - "tvMazeId": 0, - "firstAired": "2017-04-05T00:00:00Z", - "seriesType": "string", - "cleanTitle": "string", - "imdbId": "string", - "titleSlug": "0", - "certification": "string", - "genres": ["string"], - "tags": [0], - "added": "2019-05-19T05:33:42.24392Z", - "ratings": { - "votes": 0, - "value": 0.0 - }, - "id": 0 - }, - "id": 0 - } diff --git a/tests/fixtures/sonarr/episode_series.json b/tests/fixtures/sonarr/episode_series.json deleted file mode 100644 index 1734dfe..0000000 --- a/tests/fixtures/sonarr/episode_series.json +++ /dev/null @@ -1,34 +0,0 @@ -[ - { - "seriesId": 1, - "tvdbId": 1234567, - "episodeFileId": 1, - "seasonNumber": 1, - "episodeNumber": 1, - "title": "string", - "airDate": "2015-06-21", - "airDateUtc": "2015-06-22T02:30:00Z", - "overview": "string", - "hasFile": true, - "monitored": true, - "absoluteEpisodeNumber": 1, - "unverifiedSceneNumbering": false, - "id": 1 - }, - { - "seriesId": 1, - "tvdbId": 1234568, - "episodeFileId": 2, - "seasonNumber": 1, - "episodeNumber": 2, - "title": "string", - "airDate": "2015-06-21", - "airDateUtc": "2015-06-22T02:30:00Z", - "overview": "string", - "hasFile": true, - "monitored": true, - "absoluteEpisodeNumber": 1, - "unverifiedSceneNumbering": false, - "id": 1 - } -] diff --git a/tests/fixtures/sonarr/episode_update.json b/tests/fixtures/sonarr/episode_update.json deleted file mode 100644 index a3a583f..0000000 --- a/tests/fixtures/sonarr/episode_update.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "seriesId": 1, - "tvdbId": 1234567, - "episodeFileId": 1, - "seasonNumber": 1, - "episodeNumber": 1, - "title": "string", - "airDate": "2015-06-21", - "airDateUtc": "2015-06-22T02:30:00Z", - "overview": "string", - "hasFile": true, - "monitored": true, - "absoluteEpisodeNumber": 1, - "unverifiedSceneNumbering": false, - "id": 1 -} diff --git a/tests/fixtures/sonarr/episodefile_series.json b/tests/fixtures/sonarr/episodefile_series.json deleted file mode 100644 index 2c16dbf..0000000 --- a/tests/fixtures/sonarr/episodefile_series.json +++ /dev/null @@ -1,88 +0,0 @@ -[ - { - "seriesId": 1, - "seasonNumber": 1, - "relativePath": "file.mkv", - "path": "/tv/folder/file.mkv", - "size": 1844044894, - "dateAdded": "2017-01-16T21:09:06.070997Z", - "language": { - "id": 1, - "name": "English" - }, - "quality": { - "quality": { - "id": 4, - "name": "HDTV-720p", - "source": "television", - "resolution": 720 - }, - "revision": { - "version": 1, - "real": 0, - "isRepack": false - } - }, - "mediaInfo": { - "audioBitrate": 384000, - "audioChannels": 5.1, - "audioCodec": "AC3", - "audioLanguages": "English", - "audioStreamCount": 1, - "videoBitDepth": 8, - "videoBitrate": 7381526, - "videoCodec": "x264", - "videoFps": 23.976, - "resolution": "1280x720", - "runTime": "31:01", - "scanType": "Progressive", - "subtitles": "" - }, - "qualityCutoffNotMet": false, - "languageCutoffNotMet": false, - "id": 1 - }, - { - "seriesId": 1, - "seasonNumber": 1, - "relativePath": "file.mkv", - "path": "/tv/folder/file.mkv", - "size": 1844044894, - "dateAdded": "2017-01-16T21:09:06.070997Z", - "language": { - "id": 1, - "name": "English" - }, - "quality": { - "quality": { - "id": 4, - "name": "HDTV-720p", - "source": "television", - "resolution": 720 - }, - "revision": { - "version": 1, - "real": 0, - "isRepack": false - } - }, - "mediaInfo": { - "audioBitrate": 384000, - "audioChannels": 5.1, - "audioCodec": "AC3", - "audioLanguages": "English", - "audioStreamCount": 1, - "videoBitDepth": 8, - "videoBitrate": 7381526, - "videoCodec": "x264", - "videoFps": 23.976, - "resolution": "1280x720", - "runTime": "31:01", - "scanType": "Progressive", - "subtitles": "" - }, - "qualityCutoffNotMet": false, - "languageCutoffNotMet": false, - "id": 2 - } -] diff --git a/tests/fixtures/sonarr/health.json b/tests/fixtures/sonarr/health.json deleted file mode 100644 index fe51488..0000000 --- a/tests/fixtures/sonarr/health.json +++ /dev/null @@ -1 +0,0 @@ -[] diff --git a/tests/fixtures/sonarr/history.json b/tests/fixtures/sonarr/history.json deleted file mode 100644 index 01c84dc..0000000 --- a/tests/fixtures/sonarr/history.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "page": 1, - "pageSize": 10, - "sortKey": "date", - "sortDirection": "descending", - "totalRecords": 4815, - "records": [ - { - "episodeId": 7414, - "seriesId": 106, - "sourceTitle": "string", - "language": { - "id": 1, - "name": "English" - }, - "quality": { - "quality": { - "id": 9, - "name": "HDTV-1080p", - "source": "television", - "resolution": 1080 - }, - "revision": { - "version": 1, - "real": 0, - "isRepack": false - } - }, - "qualityCutoffNotMet": false, - "languageCutoffNotMet": false, - "date": "2022-07-06T13:48:09.330878Z", - "downloadId": "B0DFA7663432B216A08FAB21FC13265464DDA9DA", - "eventType": "downloadFolderImported", - "data": { - "fileId": "16520", - "droppedPath": "/downloads/string.mkv", - "importedPath": "/tv/string.mkv", - "downloadClient": "Deluge", - "downloadClientName": "Deluge", - "preferredWordScore": "0", - "releaseGroup": "MeGusta" - }, - "id": 5207 - }, - { - "episodeId": 7418, - "seriesId": 106, - "sourceTitle": "string", - "language": { - "id": 1, - "name": "English" - }, - "quality": { - "quality": { - "id": 9, - "name": "HDTV-1080p", - "source": "television", - "resolution": 1080 - }, - "revision": { - "version": 1, - "real": 0, - "isRepack": false - } - }, - "qualityCutoffNotMet": false, - "languageCutoffNotMet": false, - "date": "2022-07-06T13:47:26.914404Z", - "downloadId": "0F5A4E0186ECC9A239A1F51B979CECC718B7DB57", - "eventType": "downloadFolderImported", - "data": { - "fileId": "16519", - "droppedPath": "/downloads/string.mkv", - "importedPath": "/tv/string.mkv", - "downloadClient": "Deluge", - "downloadClientName": "Deluge", - "preferredWordScore": "0", - "releaseGroup": "MeGusta" - }, - "id": 5206 - } - ] -} diff --git a/tests/fixtures/sonarr/import_list.json b/tests/fixtures/sonarr/import_list.json deleted file mode 100644 index 2eb09a5..0000000 --- a/tests/fixtures/sonarr/import_list.json +++ /dev/null @@ -1,142 +0,0 @@ -{ - "enableAutomaticAdd": false, - "shouldMonitor": "none", - "rootFolderPath": "string", - "qualityProfileId": 1, - "languageProfileId": 1, - "seriesType": "standard", - "seasonFolder": true, - "listType": "trakt", - "listOrder": 2, - "name": "TraktUserImport", - "fields": [ - { - "order": 0, - "name": "accessToken", - "label": "Access Token", - "value": "string", - "type": "textbox", - "advanced": false, - "hidden": "hidden" - }, - { - "order": 1, - "name": "refreshToken", - "label": "Refresh Token", - "value": "string", - "type": "textbox", - "advanced": false, - "hidden": "hidden" - }, - { - "order": 2, - "name": "expires", - "label": "Expires", - "value": "2022-10-14T16:17:26.645707Z", - "type": "textbox", - "advanced": false, - "hidden": "hidden" - }, - { - "order": 3, - "name": "authUser", - "label": "Auth User", - "value": "string", - "type": "textbox", - "advanced": false, - "hidden": "hidden" - }, - { - "order": 4, - "name": "traktListType", - "label": "List Type", - "helpText": "Type of list you're seeking to import from", - "value": 0, - "type": "select", - "advanced": false, - "selectOptions": [ - { - "value": 0, - "name": "UserWatchList", - "order": 0 - }, - { - "value": 1, - "name": "UserWatchedList", - "order": 1 - }, - { - "value": 2, - "name": "UserCollectionList", - "order": 2 - } - ] - }, - { - "order": 5, - "name": "rating", - "label": "Rating", - "helpText": "Filter series by rating range (0-100)", - "value": "0-100", - "type": "textbox", - "advanced": false - }, - { - "order": 6, - "name": "username", - "label": "Username", - "helpText": "Username for the List to import from (empty to use Auth User)", - "type": "textbox", - "advanced": false - }, - { - "order": 7, - "name": "genres", - "label": "Genres", - "helpText": "Filter series by Trakt Genre Slug (Comma Separated)", - "value": "", - "type": "textbox", - "advanced": false - }, - { - "order": 8, - "name": "years", - "label": "Years", - "helpText": "Filter series by year or year range", - "value": "", - "type": "textbox", - "advanced": false - }, - { - "order": 9, - "name": "limit", - "label": "Limit", - "helpText": "Limit the number of series to get", - "value": 100, - "type": "textbox", - "advanced": false - }, - { - "order": 10, - "name": "traktAdditionalParameters", - "label": "Additional Parameters", - "helpText": "Additional Trakt API parameters", - "type": "textbox", - "advanced": true - }, - { - "order": 11, - "name": "signIn", - "label": "Authenticate with Trakt", - "value": "startOAuth", - "type": "oAuth", - "advanced": false - } - ], - "implementationName": "Trakt User", - "implementation": "TraktUserImport", - "configContract": "TraktUserSettings", - "infoLink": "string", - "tags": [], - "id": 1 -} diff --git a/tests/fixtures/sonarr/import_list_all.json b/tests/fixtures/sonarr/import_list_all.json deleted file mode 100644 index 859de5b..0000000 --- a/tests/fixtures/sonarr/import_list_all.json +++ /dev/null @@ -1,144 +0,0 @@ -[ - { - "enableAutomaticAdd": false, - "shouldMonitor": "none", - "rootFolderPath": "string", - "qualityProfileId": 1, - "languageProfileId": 1, - "seriesType": "standard", - "seasonFolder": true, - "listType": "trakt", - "listOrder": 2, - "name": "TraktUserImport", - "fields": [ - { - "order": 0, - "name": "accessToken", - "label": "Access Token", - "value": "string", - "type": "textbox", - "advanced": false, - "hidden": "hidden" - }, - { - "order": 1, - "name": "refreshToken", - "label": "Refresh Token", - "value": "string", - "type": "textbox", - "advanced": false, - "hidden": "hidden" - }, - { - "order": 2, - "name": "expires", - "label": "Expires", - "value": "2022-10-14T16:17:26.645707Z", - "type": "textbox", - "advanced": false, - "hidden": "hidden" - }, - { - "order": 3, - "name": "authUser", - "label": "Auth User", - "value": "string", - "type": "textbox", - "advanced": false, - "hidden": "hidden" - }, - { - "order": 4, - "name": "traktListType", - "label": "List Type", - "helpText": "Type of list you're seeking to import from", - "value": 0, - "type": "select", - "advanced": false, - "selectOptions": [ - { - "value": 0, - "name": "UserWatchList", - "order": 0 - }, - { - "value": 1, - "name": "UserWatchedList", - "order": 1 - }, - { - "value": 2, - "name": "UserCollectionList", - "order": 2 - } - ] - }, - { - "order": 5, - "name": "rating", - "label": "Rating", - "helpText": "Filter series by rating range (0-100)", - "value": "0-100", - "type": "textbox", - "advanced": false - }, - { - "order": 6, - "name": "username", - "label": "Username", - "helpText": "Username for the List to import from (empty to use Auth User)", - "type": "textbox", - "advanced": false - }, - { - "order": 7, - "name": "genres", - "label": "Genres", - "helpText": "Filter series by Trakt Genre Slug (Comma Separated)", - "value": "", - "type": "textbox", - "advanced": false - }, - { - "order": 8, - "name": "years", - "label": "Years", - "helpText": "Filter series by year or year range", - "value": "", - "type": "textbox", - "advanced": false - }, - { - "order": 9, - "name": "limit", - "label": "Limit", - "helpText": "Limit the number of series to get", - "value": 100, - "type": "textbox", - "advanced": false - }, - { - "order": 10, - "name": "traktAdditionalParameters", - "label": "Additional Parameters", - "helpText": "Additional Trakt API parameters", - "type": "textbox", - "advanced": true - }, - { - "order": 11, - "name": "signIn", - "label": "Authenticate with Trakt", - "value": "startOAuth", - "type": "oAuth", - "advanced": false - } - ], - "implementationName": "Trakt User", - "implementation": "TraktUserImport", - "configContract": "TraktUserSettings", - "infoLink": "string", - "tags": [], - "id": 1 - } -] diff --git a/tests/fixtures/sonarr/import_list_schema_all.json b/tests/fixtures/sonarr/import_list_schema_all.json deleted file mode 100644 index 3d7f6d7..0000000 --- a/tests/fixtures/sonarr/import_list_schema_all.json +++ /dev/null @@ -1,37 +0,0 @@ -[ - { - "enableAutomaticAdd": false, - "shouldMonitor": "unknown", - "qualityProfileId": 0, - "languageProfileId": 0, - "seriesType": "standard", - "seasonFolder": false, - "listType": "plex", - "listOrder": 1, - "name": "PlexImport", - "fields": [ - { - "order": 0, - "name": "accessToken", - "label": "Access Token", - "type": "textbox", - "advanced": false, - "hidden": "hidden" - }, - { - "order": 1, - "name": "signIn", - "label": "Authenticate with Plex.tv", - "value": "startOAuth", - "type": "oAuth", - "advanced": false - } - ], - "implementationName": "Plex Watchlist", - "implementation": "PlexImport", - "configContract": "PlexListSettings", - "infoLink": "https://wiki.servarr.com/sonarr/supported#pleximport", - "tags": [], - "presets": [] - } -] diff --git a/tests/fixtures/sonarr/indexer.json b/tests/fixtures/sonarr/indexer.json deleted file mode 100644 index 184ba6a..0000000 --- a/tests/fixtures/sonarr/indexer.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "enableRss": true, - "enableAutomaticSearch": true, - "enableInteractiveSearch": true, - "supportsRss": true, - "supportsSearch": true, - "protocol": "torrent", - "priority": 25, - "downloadClientId": 0, - "name": "string", - "fields": [ - { - "order": 0, - "name": "baseUrl", - "label": "URL", - "value": "string", - "type": "textbox", - "advanced": false - }, - { - "order": 1, - "name": "apiPath", - "label": "API Path", - "helpText": "Path to the api, usually /api", - "value": "/api", - "type": "textbox", - "advanced": true - }, - { - "order": 2, - "name": "apiKey", - "label": "API Key", - "value": "string", - "type": "textbox", - "advanced": false - }, - { - "order": 3, - "name": "categories", - "label": "Categories", - "helpText": "Drop down list, leave blank to disable standard/daily shows", - "value": [ - 5030, - 5040 - ], - "type": "select", - "advanced": false, - "selectOptionsProviderAction": "newznabCategories" - }, - { - "order": 4, - "name": "animeCategories", - "label": "Anime Categories", - "helpText": "Drop down list, leave blank to disable anime", - "value": [], - "type": "select", - "advanced": false, - "selectOptionsProviderAction": "newznabCategories" - }, - { - "order": 5, - "name": "animeStandardFormatSearch", - "label": "Anime Standard Format Search", - "helpText": "Also search for anime using the standard numbering", - "value": false, - "type": "checkbox", - "advanced": false - }, - { - "order": 6, - "name": "additionalParameters", - "label": "Additional Parameters", - "helpText": "Additional Newznab parameters", - "type": "textbox", - "advanced": true - }, - { - "order": 7, - "name": "minimumSeeders", - "label": "Minimum Seeders", - "helpText": "Minimum number of seeders required.", - "value": 1, - "type": "number", - "advanced": true - }, - { - "order": 8, - "name": "seedCriteria.seedRatio", - "label": "Seed Ratio", - "helpText": "The ratio a torrent should reach before stopping, empty is download client's default", - "type": "textbox", - "advanced": true - }, - { - "order": 9, - "name": "seedCriteria.seedTime", - "label": "Seed Time", - "unit": "minutes", - "helpText": "The time a torrent should be seeded before stopping, empty is download client's default", - "type": "number", - "advanced": true - }, - { - "order": 10, - "name": "seedCriteria.seasonPackSeedTime", - "label": "Season-Pack Seed Time", - "unit": "minutes", - "helpText": "The time a torrent should be seeded before stopping, empty is download client's default", - "type": "number", - "advanced": true - } - ], - "implementationName": "Torznab", - "implementation": "Torznab", - "configContract": "TorznabSettings", - "infoLink": "https://wiki.servarr.com/sonarr/supported#torznab", - "tags": [], - "id": 2 -} diff --git a/tests/fixtures/sonarr/indexer_all.json b/tests/fixtures/sonarr/indexer_all.json deleted file mode 100644 index 49814ac..0000000 --- a/tests/fixtures/sonarr/indexer_all.json +++ /dev/null @@ -1,121 +0,0 @@ -[ - { - "enableRss": true, - "enableAutomaticSearch": true, - "enableInteractiveSearch": true, - "supportsRss": true, - "supportsSearch": true, - "protocol": "torrent", - "priority": 25, - "downloadClientId": 0, - "name": "string", - "fields": [ - { - "order": 0, - "name": "baseUrl", - "label": "URL", - "value": "string", - "type": "textbox", - "advanced": false - }, - { - "order": 1, - "name": "apiPath", - "label": "API Path", - "helpText": "Path to the api, usually /api", - "value": "/api", - "type": "textbox", - "advanced": true - }, - { - "order": 2, - "name": "apiKey", - "label": "API Key", - "value": "string", - "type": "textbox", - "advanced": false - }, - { - "order": 3, - "name": "categories", - "label": "Categories", - "helpText": "Drop down list, leave blank to disable standard/daily shows", - "value": [ - 5030, - 5040 - ], - "type": "select", - "advanced": false, - "selectOptionsProviderAction": "newznabCategories" - }, - { - "order": 4, - "name": "animeCategories", - "label": "Anime Categories", - "helpText": "Drop down list, leave blank to disable anime", - "value": [], - "type": "select", - "advanced": false, - "selectOptionsProviderAction": "newznabCategories" - }, - { - "order": 5, - "name": "animeStandardFormatSearch", - "label": "Anime Standard Format Search", - "helpText": "Also search for anime using the standard numbering", - "value": false, - "type": "checkbox", - "advanced": false - }, - { - "order": 6, - "name": "additionalParameters", - "label": "Additional Parameters", - "helpText": "Additional Newznab parameters", - "type": "textbox", - "advanced": true - }, - { - "order": 7, - "name": "minimumSeeders", - "label": "Minimum Seeders", - "helpText": "Minimum number of seeders required.", - "value": 1, - "type": "number", - "advanced": true - }, - { - "order": 8, - "name": "seedCriteria.seedRatio", - "label": "Seed Ratio", - "helpText": "The ratio a torrent should reach before stopping, empty is download client's default", - "type": "textbox", - "advanced": true - }, - { - "order": 9, - "name": "seedCriteria.seedTime", - "label": "Seed Time", - "unit": "minutes", - "helpText": "The time a torrent should be seeded before stopping, empty is download client's default", - "type": "number", - "advanced": true - }, - { - "order": 10, - "name": "seedCriteria.seasonPackSeedTime", - "label": "Season-Pack Seed Time", - "unit": "minutes", - "helpText": "The time a torrent should be seeded before stopping, empty is download client's default", - "type": "number", - "advanced": true - } - ], - "implementationName": "Torznab", - "implementation": "Torznab", - "configContract": "TorznabSettings", - "infoLink": "https://wiki.servarr.com/sonarr/supported#torznab", - "tags": [], - "id": 2 - } -] diff --git a/tests/fixtures/sonarr/log.json b/tests/fixtures/sonarr/log.json deleted file mode 100644 index 9afef4d..0000000 --- a/tests/fixtures/sonarr/log.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "page": 1, - "pageSize": 10, - "sortKey": "Id", - "sortDirection": "ascending", - "totalRecords": 10948, - "records": [ - { - "time": "2022-06-28T00:56:28.556828Z", - "level": "info", - "logger": "RssSyncService", - "message": "Starting RSS Sync", - "id": 502687 - }, - { - "time": "2022-06-28T00:56:29.090777Z", - "level": "info", - "logger": "DownloadDecisionMaker", - "message": "Processing 50 releases", - "id": 502688 - }, - { - "time": "2022-06-28T00:56:29.198058Z", - "level": "info", - "logger": "RssSyncService", - "message": "RSS Sync Completed. Reports found: 50, Reports grabbed: 0", - "id": 502689 - }, - { - "time": "2022-06-28T01:43:59.706292Z", - "level": "info", - "logger": "SceneMappingService", - "message": "Updating Scene mappings", - "id": 502690 - }, - { - "time": "2022-06-28T01:56:29.940573Z", - "level": "info", - "logger": "RssSyncService", - "message": "Starting RSS Sync", - "id": 502691 - }, - { - "time": "2022-06-28T01:56:30.494698Z", - "level": "info", - "logger": "DownloadDecisionMaker", - "message": "Processing 50 releases", - "id": 502692 - }, - { - "time": "2022-06-28T01:56:30.602125Z", - "level": "info", - "logger": "RssSyncService", - "message": "RSS Sync Completed. Reports found: 50, Reports grabbed: 0", - "id": 502693 - }, - { - "time": "2022-06-28T02:56:31.159689Z", - "level": "info", - "logger": "RssSyncService", - "message": "Starting RSS Sync", - "id": 502694 - }, - { - "time": "2022-06-28T02:56:31.84025Z", - "level": "info", - "logger": "DownloadDecisionMaker", - "message": "Processing 50 releases", - "id": 502695 - }, - { - "time": "2022-06-28T02:56:32.126268Z", - "level": "info", - "logger": "RssSyncService", - "message": "RSS Sync Completed. Reports found: 50, Reports grabbed: 0", - "id": 502696 - } - ] -} diff --git a/tests/fixtures/sonarr/media_management.json b/tests/fixtures/sonarr/media_management.json deleted file mode 100644 index 7760421..0000000 --- a/tests/fixtures/sonarr/media_management.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "autoUnmonitorPreviouslyDownloadedEpisodes": true, - "recycleBin": "", - "recycleBinCleanupDays": 7, - "downloadPropersAndRepacks": "doNotUpgrade", - "createEmptySeriesFolders": true, - "deleteEmptyFolders": false, - "fileDate": "none", - "rescanAfterRefresh": "always", - "setPermissionsLinux": false, - "chmodFolder": "755", - "chownGroup": "", - "episodeTitleRequired": "always", - "skipFreeSpaceCheckWhenImporting": false, - "minimumFreeSpaceWhenImporting": 100, - "copyUsingHardlinks": true, - "importExtraFiles": false, - "extraFileExtensions": "srt", - "enableMediaInfo": true, - "id": 1 -} diff --git a/tests/fixtures/sonarr/metadata.json b/tests/fixtures/sonarr/metadata.json deleted file mode 100644 index 79117a8..0000000 --- a/tests/fixtures/sonarr/metadata.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "enable": true, - "name": "Kodi (XBMC) / Emby", - "fields": [ - { - "order": 0, - "name": "seriesMetadata", - "label": "Series Metadata", - "helpText": "tvshow.nfo with full series metadata", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "metadata" - }, - { - "order": 1, - "name": "seriesMetadataUrl", - "label": "Series Metadata URL", - "helpText": "tvshow.nfo with TheTVDB show URL (can be combined with 'Series Metadata')", - "value": false, - "type": "checkbox", - "advanced": true, - "section": "metadata" - }, - { - "order": 2, - "name": "episodeMetadata", - "label": "Episode Metadata", - "helpText": ".nfo", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "metadata" - }, - { - "order": 3, - "name": "seriesImages", - "label": "Series Images", - "helpText": "fanart.jpg, poster.jpg, banner.jpg", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "image" - }, - { - "order": 4, - "name": "seasonImages", - "label": "Season Images", - "helpText": "season##-poster.jpg, season##-banner.jpg, season-specials-poster.jpg, season-specials-banner.jpg", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "image" - }, - { - "order": 5, - "name": "episodeImages", - "label": "Episode Images", - "helpText": "-thumb.jpg", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "image" - } - ], - "implementationName": "Kodi (XBMC) / Emby", - "implementation": "XbmcMetadata", - "configContract": "XbmcMetadataSettings", - "infoLink": "https://wiki.servarr.com/sonarr/supported#xbmcmetadata", - "tags": [], - "id": 1 -} diff --git a/tests/fixtures/sonarr/metadata_all.json b/tests/fixtures/sonarr/metadata_all.json deleted file mode 100644 index d1b4a7f..0000000 --- a/tests/fixtures/sonarr/metadata_all.json +++ /dev/null @@ -1,178 +0,0 @@ -[ - { - "enable": true, - "name": "Kodi (XBMC) / Emby", - "fields": [ - { - "order": 0, - "name": "seriesMetadata", - "label": "Series Metadata", - "helpText": "tvshow.nfo with full series metadata", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "metadata" - }, - { - "order": 1, - "name": "seriesMetadataUrl", - "label": "Series Metadata URL", - "helpText": "tvshow.nfo with TheTVDB show URL (can be combined with 'Series Metadata')", - "value": false, - "type": "checkbox", - "advanced": true, - "section": "metadata" - }, - { - "order": 2, - "name": "episodeMetadata", - "label": "Episode Metadata", - "helpText": ".nfo", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "metadata" - }, - { - "order": 3, - "name": "seriesImages", - "label": "Series Images", - "helpText": "fanart.jpg, poster.jpg, banner.jpg", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "image" - }, - { - "order": 4, - "name": "seasonImages", - "label": "Season Images", - "helpText": "season##-poster.jpg, season##-banner.jpg, season-specials-poster.jpg, season-specials-banner.jpg", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "image" - }, - { - "order": 5, - "name": "episodeImages", - "label": "Episode Images", - "helpText": "-thumb.jpg", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "image" - } - ], - "implementationName": "Kodi (XBMC) / Emby", - "implementation": "XbmcMetadata", - "configContract": "XbmcMetadataSettings", - "infoLink": "https://wiki.servarr.com/sonarr/supported#xbmcmetadata", - "tags": [], - "id": 1 - }, - { - "enable": true, - "name": "Roksbox", - "fields": [ - { - "order": 0, - "name": "episodeMetadata", - "label": "Episode Metadata", - "helpText": "Season##\\filename.xml", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "metadata" - }, - { - "order": 1, - "name": "seriesImages", - "label": "Series Images", - "helpText": "Series Title.jpg", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "image" - }, - { - "order": 2, - "name": "seasonImages", - "label": "Season Images", - "helpText": "Season ##.jpg", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "image" - }, - { - "order": 3, - "name": "episodeImages", - "label": "Episode Images", - "helpText": "Season##\\filename.jpg", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "image" - } - ], - "implementationName": "Roksbox", - "implementation": "RoksboxMetadata", - "configContract": "RoksboxMetadataSettings", - "infoLink": "https://wiki.servarr.com/sonarr/supported#roksboxmetadata", - "tags": [], - "id": 3 - }, - { - "enable": true, - "name": "WDTV", - "fields": [ - { - "order": 0, - "name": "episodeMetadata", - "label": "Episode Metadata", - "helpText": "Season##\\filename.xml", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "metadata" - }, - { - "order": 1, - "name": "seriesImages", - "label": "Series Images", - "helpText": "folder.jpg", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "image" - }, - { - "order": 2, - "name": "seasonImages", - "label": "Season Images", - "helpText": "Season##\\folder.jpg", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "image" - }, - { - "order": 3, - "name": "episodeImages", - "label": "Episode Images", - "helpText": "Season##\\filename.metathumb", - "value": true, - "type": "checkbox", - "advanced": false, - "section": "image" - } - ], - "implementationName": "WDTV", - "implementation": "WdtvMetadata", - "configContract": "WdtvMetadataSettings", - "infoLink": "https://wiki.servarr.com/sonarr/supported#wdtvmetadata", - "tags": [], - "id": 2 - } -] diff --git a/tests/fixtures/sonarr/notification.json b/tests/fixtures/sonarr/notification.json deleted file mode 100644 index d5bb000..0000000 --- a/tests/fixtures/sonarr/notification.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "onGrab": false, - "onDownload": true, - "onUpgrade": true, - "onRename": true, - "onSeriesDelete": false, - "onEpisodeFileDelete": false, - "onEpisodeFileDeleteForUpgrade": true, - "onHealthIssue": false, - "onApplicationUpdate": false, - "supportsOnGrab": false, - "supportsOnDownload": true, - "supportsOnUpgrade": true, - "supportsOnRename": true, - "supportsOnSeriesDelete": true, - "supportsOnEpisodeFileDelete": true, - "supportsOnEpisodeFileDeleteForUpgrade": true, - "supportsOnHealthIssue": false, - "supportsOnApplicationUpdate": false, - "includeHealthWarnings": false, - "name": "HomePlex", - "fields": [ - { - "order": 0, - "name": "host", - "label": "Host", - "value": "127.0.0.1", - "type": "textbox", - "advanced": false - }, - { - "order": 1, - "name": "port", - "label": "Port", - "value": 32400, - "type": "textbox", - "advanced": false - }, - { - "order": 2, - "name": "useSsl", - "label": "Use SSL", - "helpText": "Connect to Plex over HTTPS instead of HTTP", - "value": false, - "type": "checkbox", - "advanced": false - }, - { - "order": 3, - "name": "authToken", - "label": "Auth Token", - "value": "string", - "type": "textbox", - "advanced": true - }, - { - "order": 4, - "name": "signIn", - "label": "Authenticate with Plex.tv", - "value": "startOAuth", - "type": "oAuth", - "advanced": false - }, - { - "order": 5, - "name": "updateLibrary", - "label": "Update Library", - "value": true, - "type": "checkbox", - "advanced": false - } - ], - "implementationName": "Plex Media Server", - "implementation": "PlexServer", - "configContract": "PlexServerSettings", - "infoLink": "https://wiki.servarr.com/sonarr/supported#plexserver", - "tags": [], - "id": 1 -} diff --git a/tests/fixtures/sonarr/notification_all.json b/tests/fixtures/sonarr/notification_all.json deleted file mode 100644 index 1a29ef3..0000000 --- a/tests/fixtures/sonarr/notification_all.json +++ /dev/null @@ -1,81 +0,0 @@ -[ - { - "onGrab": false, - "onDownload": true, - "onUpgrade": true, - "onRename": true, - "onSeriesDelete": false, - "onEpisodeFileDelete": false, - "onEpisodeFileDeleteForUpgrade": true, - "onHealthIssue": false, - "onApplicationUpdate": false, - "supportsOnGrab": false, - "supportsOnDownload": true, - "supportsOnUpgrade": true, - "supportsOnRename": true, - "supportsOnSeriesDelete": true, - "supportsOnEpisodeFileDelete": true, - "supportsOnEpisodeFileDeleteForUpgrade": true, - "supportsOnHealthIssue": false, - "supportsOnApplicationUpdate": false, - "includeHealthWarnings": false, - "name": "HomePlex", - "fields": [ - { - "order": 0, - "name": "host", - "label": "Host", - "value": "127.0.0.1", - "type": "textbox", - "advanced": false - }, - { - "order": 1, - "name": "port", - "label": "Port", - "value": 32400, - "type": "textbox", - "advanced": false - }, - { - "order": 2, - "name": "useSsl", - "label": "Use SSL", - "helpText": "Connect to Plex over HTTPS instead of HTTP", - "value": false, - "type": "checkbox", - "advanced": false - }, - { - "order": 3, - "name": "authToken", - "label": "Auth Token", - "value": "string", - "type": "textbox", - "advanced": true - }, - { - "order": 4, - "name": "signIn", - "label": "Authenticate with Plex.tv", - "value": "startOAuth", - "type": "oAuth", - "advanced": false - }, - { - "order": 5, - "name": "updateLibrary", - "label": "Update Library", - "value": true, - "type": "checkbox", - "advanced": false - } - ], - "implementationName": "Plex Media Server", - "implementation": "PlexServer", - "configContract": "PlexServerSettings", - "infoLink": "https://wiki.servarr.com/sonarr/supported#plexserver", - "tags": [], - "id": 1 - } -] diff --git a/tests/fixtures/sonarr/notification_schema_all.json b/tests/fixtures/sonarr/notification_schema_all.json deleted file mode 100644 index 7c57d83..0000000 --- a/tests/fixtures/sonarr/notification_schema_all.json +++ /dev/null @@ -1,91 +0,0 @@ -[ - { - "onGrab": false, - "onDownload": false, - "onUpgrade": false, - "onRename": false, - "onSeriesDelete": false, - "onEpisodeFileDelete": false, - "onEpisodeFileDeleteForUpgrade": false, - "onHealthIssue": false, - "onApplicationUpdate": false, - "supportsOnGrab": true, - "supportsOnDownload": true, - "supportsOnUpgrade": true, - "supportsOnRename": false, - "supportsOnSeriesDelete": true, - "supportsOnEpisodeFileDelete": true, - "supportsOnEpisodeFileDeleteForUpgrade": true, - "supportsOnHealthIssue": true, - "supportsOnApplicationUpdate": true, - "includeHealthWarnings": false, - "name": "", - "fields": [ - { - "order": 0, - "name": "token", - "label": "Access Token", - "helpText": "Your Access Token, from your Boxcar account settings: https://new.boxcar.io/account/edit", - "helpLink": "https://new.boxcar.io/account/edit", - "type": "textbox", - "advanced": false - } - ], - "implementationName": "Boxcar", - "implementation": "Boxcar", - "configContract": "BoxcarSettings", - "infoLink": "https://wiki.servarr.com/sonarr/supported#boxcar", - "tags": [], - "presets": [] - }, - { - "onGrab": false, - "onDownload": false, - "onUpgrade": false, - "onRename": false, - "onSeriesDelete": false, - "onEpisodeFileDelete": false, - "onEpisodeFileDeleteForUpgrade": false, - "onHealthIssue": false, - "onApplicationUpdate": false, - "supportsOnGrab": true, - "supportsOnDownload": true, - "supportsOnUpgrade": true, - "supportsOnRename": true, - "supportsOnSeriesDelete": true, - "supportsOnEpisodeFileDelete": true, - "supportsOnEpisodeFileDeleteForUpgrade": true, - "supportsOnHealthIssue": true, - "supportsOnApplicationUpdate": true, - "includeHealthWarnings": false, - "name": "", - "fields": [ - { - "order": 0, - "name": "path", - "label": "Path", - "type": "filePath", - "advanced": false - }, - { - "order": 1, - "name": "arguments", - "label": "Arguments", - "helpText": "Arguments to pass to the script", - "type": "textbox", - "advanced": false, - "hidden": "hiddenIfNotSet" - } - ], - "implementationName": "Custom Script", - "implementation": "CustomScript", - "configContract": "CustomScriptSettings", - "infoLink": "https://wiki.servarr.com/sonarr/supported#customscript", - "message": { - "message": "Testing will execute the script with the EventType set to Test, ensure your script handles this correctly", - "type": "warning" - }, - "tags": [], - "presets": [] - } -] diff --git a/tests/fixtures/sonarr/quality_definition.json b/tests/fixtures/sonarr/quality_definition.json deleted file mode 100644 index 92ea6df..0000000 --- a/tests/fixtures/sonarr/quality_definition.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "quality": { - "id": 0, - "name": "Unknown", - "source": "unknown", - "resolution": 0 - }, - "title": "Unknown", - "weight": 1, - "minSize": 0.0, - "maxSize": 42.7, - "id": 1 -} diff --git a/tests/fixtures/sonarr/quality_definition_all.json b/tests/fixtures/sonarr/quality_definition_all.json deleted file mode 100644 index a4214d2..0000000 --- a/tests/fixtures/sonarr/quality_definition_all.json +++ /dev/null @@ -1,41 +0,0 @@ -[ - { - "quality": { - "id": 0, - "name": "Unknown", - "source": "unknown", - "resolution": 0 - }, - "title": "Unknown", - "weight": 1, - "minSize": 0.0, - "maxSize": 42.7, - "id": 1 - }, - { - "quality": { - "id": 1, - "name": "SDTV", - "source": "television", - "resolution": 480 - }, - "title": "SDTV", - "weight": 2, - "minSize": 0.0, - "maxSize": 26.0, - "id": 2 - }, - { - "quality": { - "id": 8, - "name": "WEBDL-480p", - "source": "web", - "resolution": 480 - }, - "title": "WEBDL-480p", - "weight": 3, - "minSize": 0.0, - "maxSize": 26.1, - "id": 3 - } -] diff --git a/tests/fixtures/sonarr/quality_profile.json b/tests/fixtures/sonarr/quality_profile.json deleted file mode 100644 index 6dbc752..0000000 --- a/tests/fixtures/sonarr/quality_profile.json +++ /dev/null @@ -1,253 +0,0 @@ -{ - "name": "Any", - "upgradeAllowed": false, - "cutoff": 4, - "items": [ - { - "quality": { - "id": 0, - "name": "Unknown", - "source": "unknown", - "resolution": 0 - }, - "items": [], - "allowed": false - }, - { - "quality": { - "id": 1, - "name": "SDTV", - "source": "television", - "resolution": 480 - }, - "items": [], - "allowed": false - }, - { - "name": "WEB 480p", - "items": [ - { - "quality": { - "id": 12, - "name": "WEBRip-480p", - "source": "webRip", - "resolution": 480 - }, - "items": [], - "allowed": false - }, - { - "quality": { - "id": 8, - "name": "WEBDL-480p", - "source": "web", - "resolution": 480 - }, - "items": [], - "allowed": false - } - ], - "allowed": false, - "id": 1000 - }, - { - "name": "DVD", - "items": [ - { - "quality": { - "id": 2, - "name": "DVD", - "source": "dvd", - "resolution": 480 - }, - "items": [], - "allowed": true - }, - { - "quality": { - "id": 13, - "name": "Bluray-480p", - "source": "bluray", - "resolution": 480 - }, - "items": [], - "allowed": true - } - ], - "allowed": true, - "id": 1001 - }, - { - "quality": { - "id": 4, - "name": "HDTV-720p", - "source": "television", - "resolution": 720 - }, - "items": [], - "allowed": true - }, - { - "quality": { - "id": 9, - "name": "HDTV-1080p", - "source": "television", - "resolution": 1080 - }, - "items": [], - "allowed": true - }, - { - "quality": { - "id": 10, - "name": "Raw-HD", - "source": "televisionRaw", - "resolution": 1080 - }, - "items": [], - "allowed": false - }, - { - "name": "WEB 720p", - "items": [ - { - "quality": { - "id": 14, - "name": "WEBRip-720p", - "source": "webRip", - "resolution": 720 - }, - "items": [], - "allowed": true - }, - { - "quality": { - "id": 5, - "name": "WEBDL-720p", - "source": "web", - "resolution": 720 - }, - "items": [], - "allowed": true - } - ], - "allowed": true, - "id": 1002 - }, - { - "quality": { - "id": 6, - "name": "Bluray-720p", - "source": "bluray", - "resolution": 720 - }, - "items": [], - "allowed": true - }, - { - "name": "WEB 1080p", - "items": [ - { - "quality": { - "id": 15, - "name": "WEBRip-1080p", - "source": "webRip", - "resolution": 1080 - }, - "items": [], - "allowed": true - }, - { - "quality": { - "id": 3, - "name": "WEBDL-1080p", - "source": "web", - "resolution": 1080 - }, - "items": [], - "allowed": true - } - ], - "allowed": true, - "id": 1003 - }, - { - "quality": { - "id": 7, - "name": "Bluray-1080p", - "source": "bluray", - "resolution": 1080 - }, - "items": [], - "allowed": true - }, - { - "quality": { - "id": 20, - "name": "Bluray-1080p Remux", - "source": "blurayRaw", - "resolution": 1080 - }, - "items": [], - "allowed": false - }, - { - "quality": { - "id": 16, - "name": "HDTV-2160p", - "source": "television", - "resolution": 2160 - }, - "items": [], - "allowed": false - }, - { - "name": "WEB 2160p", - "items": [ - { - "quality": { - "id": 17, - "name": "WEBRip-2160p", - "source": "webRip", - "resolution": 2160 - }, - "items": [], - "allowed": false - }, - { - "quality": { - "id": 18, - "name": "WEBDL-2160p", - "source": "web", - "resolution": 2160 - }, - "items": [], - "allowed": false - } - ], - "allowed": false, - "id": 1004 - }, - { - "quality": { - "id": 19, - "name": "Bluray-2160p", - "source": "bluray", - "resolution": 2160 - }, - "items": [], - "allowed": false - }, - { - "quality": { - "id": 21, - "name": "Bluray-2160p Remux", - "source": "blurayRaw", - "resolution": 2160 - }, - "items": [], - "allowed": false - } - ], - "id": 1 -} diff --git a/tests/fixtures/sonarr/quality_profile_all.json b/tests/fixtures/sonarr/quality_profile_all.json deleted file mode 100644 index 365695d..0000000 --- a/tests/fixtures/sonarr/quality_profile_all.json +++ /dev/null @@ -1,255 +0,0 @@ -[ - { - "name": "Any", - "upgradeAllowed": false, - "cutoff": 4, - "items": [ - { - "quality": { - "id": 0, - "name": "Unknown", - "source": "unknown", - "resolution": 0 - }, - "items": [], - "allowed": false - }, - { - "quality": { - "id": 1, - "name": "SDTV", - "source": "television", - "resolution": 480 - }, - "items": [], - "allowed": false - }, - { - "name": "WEB 480p", - "items": [ - { - "quality": { - "id": 12, - "name": "WEBRip-480p", - "source": "webRip", - "resolution": 480 - }, - "items": [], - "allowed": false - }, - { - "quality": { - "id": 8, - "name": "WEBDL-480p", - "source": "web", - "resolution": 480 - }, - "items": [], - "allowed": false - } - ], - "allowed": false, - "id": 1000 - }, - { - "name": "DVD", - "items": [ - { - "quality": { - "id": 2, - "name": "DVD", - "source": "dvd", - "resolution": 480 - }, - "items": [], - "allowed": true - }, - { - "quality": { - "id": 13, - "name": "Bluray-480p", - "source": "bluray", - "resolution": 480 - }, - "items": [], - "allowed": true - } - ], - "allowed": true, - "id": 1001 - }, - { - "quality": { - "id": 4, - "name": "HDTV-720p", - "source": "television", - "resolution": 720 - }, - "items": [], - "allowed": true - }, - { - "quality": { - "id": 9, - "name": "HDTV-1080p", - "source": "television", - "resolution": 1080 - }, - "items": [], - "allowed": true - }, - { - "quality": { - "id": 10, - "name": "Raw-HD", - "source": "televisionRaw", - "resolution": 1080 - }, - "items": [], - "allowed": false - }, - { - "name": "WEB 720p", - "items": [ - { - "quality": { - "id": 14, - "name": "WEBRip-720p", - "source": "webRip", - "resolution": 720 - }, - "items": [], - "allowed": true - }, - { - "quality": { - "id": 5, - "name": "WEBDL-720p", - "source": "web", - "resolution": 720 - }, - "items": [], - "allowed": true - } - ], - "allowed": true, - "id": 1002 - }, - { - "quality": { - "id": 6, - "name": "Bluray-720p", - "source": "bluray", - "resolution": 720 - }, - "items": [], - "allowed": true - }, - { - "name": "WEB 1080p", - "items": [ - { - "quality": { - "id": 15, - "name": "WEBRip-1080p", - "source": "webRip", - "resolution": 1080 - }, - "items": [], - "allowed": true - }, - { - "quality": { - "id": 3, - "name": "WEBDL-1080p", - "source": "web", - "resolution": 1080 - }, - "items": [], - "allowed": true - } - ], - "allowed": true, - "id": 1003 - }, - { - "quality": { - "id": 7, - "name": "Bluray-1080p", - "source": "bluray", - "resolution": 1080 - }, - "items": [], - "allowed": true - }, - { - "quality": { - "id": 20, - "name": "Bluray-1080p Remux", - "source": "blurayRaw", - "resolution": 1080 - }, - "items": [], - "allowed": false - }, - { - "quality": { - "id": 16, - "name": "HDTV-2160p", - "source": "television", - "resolution": 2160 - }, - "items": [], - "allowed": false - }, - { - "name": "WEB 2160p", - "items": [ - { - "quality": { - "id": 17, - "name": "WEBRip-2160p", - "source": "webRip", - "resolution": 2160 - }, - "items": [], - "allowed": false - }, - { - "quality": { - "id": 18, - "name": "WEBDL-2160p", - "source": "web", - "resolution": 2160 - }, - "items": [], - "allowed": false - } - ], - "allowed": false, - "id": 1004 - }, - { - "quality": { - "id": 19, - "name": "Bluray-2160p", - "source": "bluray", - "resolution": 2160 - }, - "items": [], - "allowed": false - }, - { - "quality": { - "id": 21, - "name": "Bluray-2160p Remux", - "source": "blurayRaw", - "resolution": 2160 - }, - "items": [], - "allowed": false - } - ], - "id": 1 - } -] diff --git a/tests/fixtures/sonarr/release.json b/tests/fixtures/sonarr/release.json deleted file mode 100644 index a9e5ec0..0000000 --- a/tests/fixtures/sonarr/release.json +++ /dev/null @@ -1,82 +0,0 @@ -[ - { - "guid": "string", - "quality": { - "quality": { - "id": 0, - "name": "string", - "source": "string", - "resolution": 0 - }, - "revision": { - "version": 0, - "real": 0, - "isRepack": false - } - }, - "qualityWeight": 0, - "age": 0, - "ageHours": 0.0, - "ageMinutes": 0.0, - "size": 0, - "indexerId": 0, - "indexer": "string", - "releaseGroup": "string", - "releaseHash": "string", - "title": "string", - "fullSeason": false, - "sceneSource": false, - "seasonNumber": 0, - "language": { - "id": 0, - "name": "string" - }, - "languageWeight": 0, - "seriesTitle": "string", - "episodeNumbers": [ - 0 - ], - "absoluteEpisodeNumbers": [ - 0 - ], - "mappedSeasonNumber": 0, - "mappedEpisodeNumbers": [ - 0 - ], - "mappedAbsoluteEpisodeNumbers": [ - 0 - ], - "approved": false, - "temporarilyRejected": false, - "rejected": true, - "tvdbId": 0, - "tvRageId": 0, - "rejections": [ - { - "reason": "string", - "type": "permanent" - } - ], - "publishDate": "2020-01-08T15:31:03Z", - "commentUrl": "string", - "downloadUrl": "string", - "infoUrl": "string", - "episodeRequested": false, - "downloadAllowed": true, - "releaseWeight": 0, - "preferredWordScore": 0, - "sceneMapping": { - "title": "string", - "seasonNumber": 0 - }, - "magnetUrl": "string", - "infoHash": "string", - "seeders": 0, - "leechers": 0, - "protocol": "unknown", - "isDaily": false, - "isAbsoluteNumbering": false, - "isPossibleSpecialEpisode": false, - "special": false - } -] diff --git a/tests/fixtures/sonarr/remotepathmapping.json b/tests/fixtures/sonarr/remotepathmapping.json deleted file mode 100644 index 6fc6c7b..0000000 --- a/tests/fixtures/sonarr/remotepathmapping.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "host": "192.168.10.2", - "remotePath": "/home/downloads/", - "localPath": "/downloads/", - "id": 1 -} diff --git a/tests/fixtures/sonarr/remotepathmapping_all.json b/tests/fixtures/sonarr/remotepathmapping_all.json deleted file mode 100644 index ed0ce22..0000000 --- a/tests/fixtures/sonarr/remotepathmapping_all.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "host": "192.168.10.2", - "remotePath": "/home/downloads/", - "localPath": "/downloads/", - "id": 1 - } -] diff --git a/tests/fixtures/sonarr/rootfolder.json b/tests/fixtures/sonarr/rootfolder.json deleted file mode 100644 index 4457797..0000000 --- a/tests/fixtures/sonarr/rootfolder.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "path": "/tv", - "accessible": true, - "freeSpace": 6172692185088, - "unmappedFolders": [ - { - "name": "string", - "path": "/tv/string" - } - ], - "id": 3 -} diff --git a/tests/fixtures/sonarr/rootfolder_all.json b/tests/fixtures/sonarr/rootfolder_all.json deleted file mode 100644 index 720dd56..0000000 --- a/tests/fixtures/sonarr/rootfolder_all.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "path": "/tv", - "accessible": true, - "freeSpace": 6172693233664, - "unmappedFolders": [ - { - "name": "string", - "path": "/tv/string" - } - ], - "id": 3 - } -] diff --git a/tests/fixtures/sonarr/series.json b/tests/fixtures/sonarr/series.json deleted file mode 100644 index 5874453..0000000 --- a/tests/fixtures/sonarr/series.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "title": "string", - "alternateTitles": [ - { - "title": "string", - "seasonNumber": 0 - } - ], - "sortTitle": "string", - "status": "string", - "ended": true, - "overview": "string", - "previousAiring": "string", - "network": "string", - "airTime": "00:00", - "images": [ - { - "coverType": "poster", - "url": "string", - "remoteUrl": "string" - } - ], - "seasons": [ - { - "seasonNumber": 0, - "monitored": true, - "statistics": { - "previousAiring": "2019-07-05T07:00:00Z", - "episodeFileCount": 0, - "episodeCount": 0, - "totalEpisodeCount": 0, - "sizeOnDisk": 0, - "percentOfEpisodes": 0.0 - } - } - ], - "year": 0, - "path": "string", - "qualityProfileId": 0, - "languageProfileId": 0, - "seasonFolder": true, - "monitored": true, - "useSceneNumbering": false, - "runtime": 0, - "tvdbId": 0, - "tvRageId": 0, - "tvMazeId": 0, - "firstAired": "2018-05-31T00:00:00Z", - "seriesType": "string", - "cleanTitle": "string", - "imdbId": "string", - "titleSlug": "0", - "rootFolderPath": "string", - "certification": "string", - "genres": [ - "string" - ], - "tags": [ - 0 - ], - "added": "2018-06-19T05:33:15.99487Z", - "ratings": { - "votes": 0, - "value": 0.0 - }, - "statistics": { - "seasonCount": 0, - "episodeFileCount": 0, - "episodeCount": 0, - "totalEpisodeCount": 0, - "sizeOnDisk": 0, - "percentOfEpisodes": 0.0 - }, - "id": 0 -} diff --git a/tests/fixtures/sonarr/series_all.json b/tests/fixtures/sonarr/series_all.json deleted file mode 100644 index ca8a7fd..0000000 --- a/tests/fixtures/sonarr/series_all.json +++ /dev/null @@ -1,152 +0,0 @@ -[ - { - "title": "string", - "alternateTitles": [ - { - "title": "string", - "seasonNumber": 0 - } - ], - "sortTitle": "string", - "status": "string", - "ended": true, - "overview": "string", - "previousAiring": "string", - "network": "string", - "airTime": "00:00", - "images": [ - { - "coverType": "poster", - "url": "string", - "remoteUrl": "string" - } - ], - "seasons": [ - { - "seasonNumber": 0, - "monitored": true, - "statistics": { - "previousAiring": "2019-07-05T07:00:00Z", - "episodeFileCount": 0, - "episodeCount": 0, - "totalEpisodeCount": 0, - "sizeOnDisk": 0, - "percentOfEpisodes": 0.0 - } - } - ], - "year": 0, - "path": "string", - "qualityProfileId": 0, - "languageProfileId": 0, - "seasonFolder": true, - "monitored": true, - "useSceneNumbering": false, - "runtime": 0, - "tvdbId": 0, - "tvRageId": 0, - "tvMazeId": 0, - "firstAired": "2018-05-31T00:00:00Z", - "seriesType": "string", - "cleanTitle": "string", - "imdbId": "string", - "titleSlug": "0", - "rootFolderPath": "string", - "certification": "string", - "genres": [ - "string" - ], - "tags": [ - 0 - ], - "added": "2018-06-19T05:33:15.99487Z", - "ratings": { - "votes": 0, - "value": 0.0 - }, - "statistics": { - "seasonCount": 0, - "episodeFileCount": 0, - "episodeCount": 0, - "totalEpisodeCount": 0, - "sizeOnDisk": 0, - "percentOfEpisodes": 0.0 - }, - "id": 0 - }, - { - "title": "string", - "alternateTitles": [ - { - "title": "string", - "seasonNumber": 0 - } - ], - "sortTitle": "string", - "status": "string", - "ended": true, - "overview": "string", - "previousAiring": "string", - "network": "string", - "airTime": "00:00", - "images": [ - { - "coverType": "poster", - "url": "string", - "remoteUrl": "string" - } - ], - "seasons": [ - { - "seasonNumber": 0, - "monitored": true, - "statistics": { - "previousAiring": "2019-07-05T07:00:00Z", - "episodeFileCount": 0, - "episodeCount": 0, - "totalEpisodeCount": 0, - "sizeOnDisk": 0, - "percentOfEpisodes": 0.0 - } - } - ], - "year": 0, - "path": "string", - "qualityProfileId": 0, - "languageProfileId": 0, - "seasonFolder": true, - "monitored": true, - "useSceneNumbering": false, - "runtime": 0, - "tvdbId": 0, - "tvRageId": 0, - "tvMazeId": 0, - "firstAired": "2018-05-31T00:00:00Z", - "seriesType": "string", - "cleanTitle": "string", - "imdbId": "string", - "titleSlug": "0", - "rootFolderPath": "string", - "certification": "string", - "genres": [ - "string" - ], - "tags": [ - 0 - ], - "added": "2018-06-19T05:33:15.99487Z", - "ratings": { - "votes": 0, - "value": 0.0 - }, - "statistics": { - "seasonCount": 0, - "episodeFileCount": 0, - "episodeCount": 0, - "totalEpisodeCount": 0, - "sizeOnDisk": 0, - "percentOfEpisodes": 0.0 - }, - "id": 0 - } -] diff --git a/tests/fixtures/sonarr/series_lookup.json b/tests/fixtures/sonarr/series_lookup.json deleted file mode 100644 index e4623c6..0000000 --- a/tests/fixtures/sonarr/series_lookup.json +++ /dev/null @@ -1,63 +0,0 @@ -[ - { - "title": "string", - "sortTitle": "string", - "status": "string", - "ended": false, - "overview": "string", - "network": "string", - "airTime": "00:00", - "images": [ - { - "coverType": "poster", - "url": "string", - "remoteUrl": "string" - } - ], - "remotePoster": "string", - "seasons": [ - { - "seasonNumber": 0, - "monitored": true - } - ], - "year": 0, - "path": "string", - "qualityProfileId": 0, - "languageProfileId": 0, - "seasonFolder": true, - "monitored": true, - "useSceneNumbering": false, - "runtime": 0, - "tvdbId": 0, - "tvRageId": 0, - "tvMazeId": 0, - "firstAired": "2018-10-12T00:00:00Z", - "seriesType": "string", - "cleanTitle": "string", - "imdbId": "string", - "titleSlug": "0", - "folder": "string", - "certification": "string", - "genres": [ - "string" - ], - "tags": [ - 0 - ], - "added": "2018-10-31T05:49:55.35715Z", - "ratings": { - "votes": 0, - "value": 0.0 - }, - "statistics": { - "seasonCount": 0, - "episodeFileCount": 0, - "episodeCount": 0, - "totalEpisodeCount": 0, - "sizeOnDisk": 0, - "percentOfEpisodes": 0.0 - }, - "id": 0 - } -] diff --git a/tests/fixtures/sonarr/system_status.json b/tests/fixtures/sonarr/system_status.json deleted file mode 100644 index 369e4de..0000000 --- a/tests/fixtures/sonarr/system_status.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "appName": "Sonarr", - "version": "3.0.8.1507", - "buildTime": "2022-04-23T21:40:53Z", - "isDebug": false, - "isProduction": true, - "isAdmin": false, - "isUserInteractive": false, - "startupPath": "/app/sonarr/bin", - "appData": "/config", - "osName": "ubuntu", - "osVersion": "20.04", - "isMonoRuntime": true, - "isMono": true, - "isLinux": true, - "isOsx": false, - "isWindows": false, - "mode": "console", - "branch": "main", - "authentication": "forms", - "sqliteVersion": "3.31.1", - "urlBase": "", - "runtimeVersion": "6.12.0.122", - "runtimeName": "mono", - "startTime": "2022-05-23T09:49:13.983201Z", - "packageVersion": "3.0.8.1507-ls147", - "packageAuthor": "[linuxserver.io](https://linuxserver.io)", - "packageUpdateMechanism": "docker" -} diff --git a/tests/fixtures/sonarr/system_task.json b/tests/fixtures/sonarr/system_task.json deleted file mode 100644 index a7a160d..0000000 --- a/tests/fixtures/sonarr/system_task.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "task": "task" -} diff --git a/tests/fixtures/sonarr/system_task_all.json b/tests/fixtures/sonarr/system_task_all.json deleted file mode 100644 index 16f1468..0000000 --- a/tests/fixtures/sonarr/system_task_all.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "page": 1, - "pageSize": 10, - "sortKey": "timeleft", - "sortDirection": "ascending", - "totalRecords": 0, - "records": [] -} diff --git a/tests/fixtures/sonarr/tag.json b/tests/fixtures/sonarr/tag.json deleted file mode 100644 index 4f96888..0000000 --- a/tests/fixtures/sonarr/tag.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "megusta", - "id": 2 -} diff --git a/tests/fixtures/sonarr/tag_all.json b/tests/fixtures/sonarr/tag_all.json deleted file mode 100644 index ec97b1f..0000000 --- a/tests/fixtures/sonarr/tag_all.json +++ /dev/null @@ -1,6 +0,0 @@ -[ - { - "label": "string", - "id": 1 - } -] diff --git a/tests/fixtures/sonarr/tag_detail.json b/tests/fixtures/sonarr/tag_detail.json deleted file mode 100644 index d872d20..0000000 --- a/tests/fixtures/sonarr/tag_detail.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "label": "string", - "delayProfileIds": [], - "importListIds": [], - "notificationIds": [], - "restrictionIds": [ - 3 - ], - "indexerIds": [], - "seriesIds": [ - 17 - ], - "id": 1 -} diff --git a/tests/fixtures/sonarr/tag_detail_all.json b/tests/fixtures/sonarr/tag_detail_all.json deleted file mode 100644 index 1113e83..0000000 --- a/tests/fixtures/sonarr/tag_detail_all.json +++ /dev/null @@ -1,16 +0,0 @@ -[ - { - "label": "string", - "delayProfileIds": [], - "importListIds": [], - "notificationIds": [], - "restrictionIds": [ - 3 - ], - "indexerIds": [], - "seriesIds": [ - 17 - ], - "id": 1 - } -] diff --git a/tests/fixtures/sonarr/update.json b/tests/fixtures/sonarr/update.json deleted file mode 100644 index da8c1f1..0000000 --- a/tests/fixtures/sonarr/update.json +++ /dev/null @@ -1,216 +0,0 @@ -[ - { - "version": "3.0.8.1507", - "branch": "main", - "releaseDate": "2022-04-24T04:41:49.037Z", - "fileName": "Sonarr.main.3.0.8.1507.linux.tar.gz", - "url": "https://download.sonarr.tv/v3/main/3.0.8.1507/Sonarr.main.3.0.8.1507.linux.tar.gz", - "installed": true, - "installedOn": "2022-04-25T16:40:47.585016Z", - "installable": false, - "latest": true, - "changes": { - "new": [ - "Added additional terms for matching French language releases", - "Update Monotorrent", - "Natural Sorting Manual Import Relative Paths", - "Add date picker for custom filter dates", - "Support for new Nyaa RSS Feed format", - "Add optional Source Title column to history", - "Support for parsing some releases from Spanish trackers" - ], - "fixed": [ - "QBittorrent unknown download state: forcedMetaDL", - "UI hiding search results with duplicate GUIDs", - "Interactive Search Filter not filtering multiple qualities in the same filter row", - "Typo in Connection Lost modal", - "A potential issue when extra files for multiple series have the same relative path", - "Importing file from UNC shared folder without job folder", - "Plex Library Updates", - "Skip extras in 'Extras' subfolder", - "Use Manage Episodes instead of Manual Import for title when managing episodes for a series", - "Manage Episodes button grayed out if there are no episodes", - "Escape Characters as needed for *znab queries", - "Clarify Qbit Content Path Error", - "API error when sending payload without optional parameters", - "Properly handle 119 error code from Synology Download Station", - "Error when trying to import an empty Plex Watchlist", - "Re-assigning file that was mapped to multiple episodes to only one of those episodes", - "Don't recursively add the current file name to new file name when '{Original Title}' is used in addition to other naming tokens", - "Validation when testing indexers, import lists, connections and download clients", - "Default sort key for wanted/missing API endpoint", - "Clean API request path before authentication", - "Twitter link", - "Delay health check notifications on startup", - "Automatic import of releases when file is not matched to series", - "Newznab requests for anime using season/episode numbers", - "Scrolling in Firefox in small window (requires refresh)", - "Releases without a job folder importing extra files from another release" - ] - }, - "hash": "3b652f5358ee3b9e206fd2d59c4b885e14f4531dab108ab659d9aca16543875c" - }, - { - "version": "3.0.7.1477", - "branch": "main", - "releaseDate": "2022-03-05T02:59:11.573Z", - "fileName": "Sonarr.main.3.0.7.1477.linux.tar.gz", - "url": "https://download.sonarr.tv/v3/main/3.0.7.1477/Sonarr.main.3.0.7.1477.linux.tar.gz", - "installed": false, - "installedOn": "2022-03-25T20:28:46.588946Z", - "installable": false, - "latest": false, - "changes": { - "new": [ - "Import subtitles from sub folders", - "Option to show audio/subtitle language on series details (first two unique languages will be shown)", - "TvdbId added to episode response from API", - "Option to show release group column on series list", - "Use TVDB's Episode ID as default uniqueid for Kodi metadata", - "Update Cert Validation Help Text", - "Auto focus input when editing release group during manual import", - "Schedule refresh and process monitored download tasks at high priority", - "Add qBittorrent sequential order and first and last piece priority options(#4870)", - "Add more groups that do not follow -Group format", - "Add backup size information", - "End Jackett 'all' endpoint support", - "Show filter indicator when filter is applied to a view", - "Add Release group to history for all events", - "OnApplicationUpdate Notifications", - "Add option to search for anime using standard episode numbers", - "Support various Anime Release Groups with spaces and dashes", - "Correctly Parse Groups D-Z0N3 and Fight-BB", - "Parse Select Groups that do not follow -Group Format", - "Parse Release Groups with a `-` in their name", - "Link indexer to specific download client", - "Implement OnDelete notification for Emby/Jellyfin", - "Add AppName to system status response", - "Gracefully handle broken release profiles when ppl swapped to older sonarr versions and back again", - "Added \"Season Pack\" to Interactive Search custom filters", - "Updated MediaInfo to 21.09, Sqlite to 3.32.1.0 and added support for mac osx arm64 arch. Deprecated osx x86.", - "Use https for thexem.info", - "Display Unknown Items in Activity Queue by default", - "Add {MediaInfo VideoDynamicRangeType} token for renaming", - "Updated naming examples", - "/ping endpoint for verifying that Sonarr is running and able to access it's DB", - "Show genres on series details page", - "Handle missingFiles status from qBit", - "Parse 960p as 720p instead of 480p", - "Manage episodes through Manual Import modal", - "Trakt Connection", - "Time column is first column on events page", - "Increase width of preferred word keys when editing", - "Add logging is release is rejected because no download URL is available", - "Release group column on series details", - "Set release group during Manual Import", - "Show preferred words in release profiles for tag details", - "Use filename without extension if SceneName is unavailable for preferred words", - "Allow Sonarr List Sync by Source Tag", - "Log which DB is being migrated", - "Import from Plex Watchlist", - "Show limited matching for aliases that are limited to specific formats/release groups" - ], - "fixed": [ - "Parsing of 540p season packs", - "Assume SABnzbd develop version is 3.0.0 if not specified", - "Clearing logs not updating UI once complete", - "Negative preferred word scores being trumped by 0 scores without any matches", - "On Import notifications for webhooks", - "favion.ico request does not require AuthenticationService", - "Don't automatically import if release title doesn't match series title", - "Parsing of quality in DP.WEB releases", - "Send download client name instead of type for grab events", - "Schedule refresh and process monitored download tasks at high priority", - "Recycle bin log message", - "Improve help text for download client Category", - "IPv4 instead of IP4", - "Sorting of some titles with acronyms or common words at the start", - "Profiles with upgrades disabled incorrectly allowing upgrades in some cases", - "Parsing of 4-digit absolute episode number with Exx in CRC", - "Updated ruTorrent stopped state helptext", - "Parsing episodes when full series does not have XEM mappings", - "Help text for Release Profile tags", - "Manual import not removing unparseable items from queue", - "Improved Indexer test failure message when no results are returned", - "Don't parse -EN, -ES, -CAT as Group", - "Better Cleansing of Tracker Announce Keys", - "Better Parsing of 4k Releases", - "Parse 4k H265 releases as 4k", - "Parse 3840x2160 as 4k", - "Mass Editor Footer on Smaller Screens", - "Clarify Indexer Priority Helptext", - "Parsing of numeric only titles that include a year", - "Avoid download path check false positives for Flood", - "Jump bar on series page not showing when window is made wider", - "Skip Flat Extra Files (Plex Naming) on Import", - "Skip various Extras directories during scan", - "Add missing MediaInfo VideoDynamicRangeType token to help modal", - "Re-added xem scene number verification warning to calendar.", - "Cleanse Notifiarr secret from URL in logs", - "Overflowing release profile terms", - "Convert Trakt list name to URL slug", - "Don't show absolute episode number in Manual Import if not available", - "Some manually imported episodes not being marked as imported and remove from queue", - "Sorting series without a Previous Airing", - "Parsing of 2160p BDRips", - "Download client name in history details", - "Grammar in tooltip of download button", - "Bad wiki fragment for mono health check", - "Improved messaging when episode file was detected as deleted from disk", - "Improve WEBDL detection of Netflix Rips", - "Report certificate validation failures when configuring Plex Media Server connection", - "Parsing of even more poorly named full season regexes", - "Deleting from Manage Episodes modal", - "Parsing of 4 digit episode number with 4 digit season number", - "Parsing of some multi-season release names", - "Increase width and truncate long titles on Import List Exclusions", - "Parsing of Ger.Dub releases as German", - "Parsing of more anime releases with Chinese and English titles", - "More restrictive repeated multi-episode parsing to avoid false positives", - "Don't attempt to import downloads that cannot be parsed", - "Parsing of poorly named anime above 1000 episodes", - "Get full path for download station instead of shared folder", - "Images for Connections using old branch name", - "Only blocklist pending releases when option is checked", - "api/v3/history/series \"includeSeries\" and \"includeEpisode\" query parameters", - "Quality Profile and Tag Import List filtering", - "Error message when RSS feed items lack a pubData element", - "Prowl notifications priority", - "Parsing of special episodes that lack a series title", - "On Delete events for Custom Scripts not being executed", - "Saving release profile when removing an item from Must (Not) Contain", - "Viewing tag details in settings", - "Use unmodified titles when searching Nyaa", - "Release profiles not saving if Must (Not) Contain is empty", - "Bad migration resulting Must Not Contain being overwritten by Must Contain", - "Qbit torrents treated as failed after error", - "Restoring scroll position when going back to index page", - "Parsing of Plex DVR date-based recordings", - "Commas in Must (Not) Contain regex" - ] - }, - "hash": "c41ee4596c71fb2981c72c41cf063b8197f0f643078b6312b2b529f0620e8b0b" - }, - { - "version": "3.0.6.1342", - "branch": "main", - "releaseDate": "2021-09-30T19:41:12.832Z", - "fileName": "Sonarr.main.3.0.6.1342.linux.tar.gz", - "url": "https://download.sonarr.tv/v3/main/3.0.6.1342/Sonarr.main.3.0.6.1342.linux.tar.gz", - "installed": false, - "installedOn": "2021-10-26T19:27:40.515346Z", - "installable": false, - "latest": false, - "changes": { - "new": [ - "Disable autocomplete of port number", - "Change Today color in calendar for better visibility" - ], - "fixed": [ - "Bumped mono workaround version from 6.10 to 7.x for btls trust chain coz they still haven't fixed it after over a year", - "Parsing of quality when release group contains Remux" - ] - }, - "hash": "e9132d86c7fad0524b0c707bd902643de17bbd79a306072a2ae8ced083a35489" - } -] diff --git a/tests/fixtures/sonarr/wanted_missing.json b/tests/fixtures/sonarr/wanted_missing.json deleted file mode 100644 index 8936d96..0000000 --- a/tests/fixtures/sonarr/wanted_missing.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "page": 1, - "pageSize": 10, - "sortKey": "airDateUtc", - "sortDirection": "default", - "totalRecords": 1, - "records": [ - { - "seriesId": 0, - "episodeFileId": 0, - "seasonNumber": 0, - "episodeNumber": 0, - "title": "string", - "airDate": "2010-03-07", - "airDateUtc": "2010-03-07T05:00:00Z", - "overview": "string", - "hasFile": false, - "monitored": true, - "absoluteEpisodeNumber": 0, - "unverifiedSceneNumbering": false, - "id": 0 - } - ] -} diff --git a/tests/fixtures/sonarr/wanted_missing_extended.json b/tests/fixtures/sonarr/wanted_missing_extended.json deleted file mode 100644 index 03b7815..0000000 --- a/tests/fixtures/sonarr/wanted_missing_extended.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "page": 1, - "pageSize": 10, - "sortKey": "airDateUtc", - "sortDirection": "default", - "totalRecords": 1, - "records": [ - { - "seriesId": 0, - "episodeFileId": 0, - "seasonNumber": 0, - "episodeNumber": 0, - "title": "string", - "airDate": "2010-03-07", - "airDateUtc": "2010-03-07T05:00:00Z", - "overview": "string", - "hasFile": false, - "monitored": true, - "absoluteEpisodeNumber": 0, - "unverifiedSceneNumbering": false, - "series": { - "title": "string", - "sortTitle": "string", - "status": "string", - "ended": true, - "overview": "string", - "network": "string", - "airTime": "00:00", - "images": [ - { - "coverType": "poster", - "url": "string" - } - ], - "seasons": [ - { - "seasonNumber": 0, - "monitored": false - } - ], - "year": 0, - "path": "string", - "qualityProfileId": 0, - "languageProfileId": 0, - "seasonFolder": true, - "monitored": true, - "useSceneNumbering": false, - "runtime": 0, - "tvdbId": 0, - "tvRageId": 0, - "tvMazeId": 0, - "firstAired": "2017-04-05T00:00:00Z", - "seriesType": "string", - "cleanTitle": "string", - "imdbId": "string", - "titleSlug": "0", - "certification": "string", - "genres": [ - "string" - ], - "tags": [ - 0 - ], - "added": "2019-05-19T05:33:42.24392Z", - "ratings": { - "votes": 0, - "value": 0.0 - }, - "id": 0 - }, - "id": 0 - } - ] -} diff --git a/tests/test_lidarr.py b/tests/test_lidarr.py index d91a7ad..e8e9412 100644 --- a/tests/test_lidarr.py +++ b/tests/test_lidarr.py @@ -1,180 +1,92 @@ import contextlib import pytest - -from pyarr.exceptions import PyarrMissingArgument, PyarrMissingProfile +import responses + +from pyarr.exceptions import ( + PyarrMissingArgument, + PyarrMissingProfile, + PyarrRecordNotFound, + PyarrResourceNotFound, +) +from pyarr.lidarr import LidarrAPI from pyarr.models.common import PyarrSortDirection from pyarr.models.lidarr import LidarrArtistMonitor, LidarrCommand, LidarrSortKey -from tests import load_fixture +from tests import ( + LIDARR_ALBUM_TERM, + LIDARR_ARTIST_TERM, + LIDARR_MUSICBRAINZ_ALBUM_ID, + LIDARR_MUSICBRAINZ_ARTIST_ID, + LIDARR_TERM, + load_fixture, +) -@pytest.mark.usefixtures -def test_add_root_folder(responses, lidarr_client): - responses.add( - responses.POST, - "https://127.0.0.1:8686/api/v1/rootfolder", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/rootfolder.json"), - status=201, - match_querystring=True, - ) +def test_add_root_folder(lidarr_client: LidarrAPI): + qual_profile = lidarr_client.get_quality_profile() + meta_profile = lidarr_client.get_metadata_profile() data = lidarr_client.add_root_folder( - name="test", path="/path/to/folder", qualityProfile=1, metadataProfile=1 + name="test", + path="/defaults/", + qualityProfile=qual_profile[0]["id"], + metadataProfile=meta_profile[0]["id"], ) assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_lookup(responses, lidarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/search?term=my+string", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/lookup.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.lookup(term="my string") +def test_get_root_folder(lidarr_client: LidarrAPI): + + data = lidarr_client.get_root_folder() assert isinstance(data, list) + data = lidarr_client.get_root_folder(data[0]["id"]) + assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_lookup_artist(responses, lidarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/artist/lookup?term=my+string", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/lookup.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.lookup_artist(term="my string") - assert isinstance(data, list) +def test_lookup(lidarr_client: LidarrAPI): -@pytest.mark.usefixtures -def test_lookup_album(responses, lidarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/album/lookup?term=my+string", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/lookup.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.lookup_album(term="my string") + data = lidarr_client.lookup(term=LIDARR_TERM) assert isinstance(data, list) -@pytest.mark.usefixtures -def test_get_artist(responses, lidarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/artist", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/artist_all.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.get_artist() +def test_lookup_artist(lidarr_client: LidarrAPI): + + data = lidarr_client.lookup_artist(term=LIDARR_ARTIST_TERM) assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/artist/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/artist.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.get_artist(id_=1) - assert isinstance(data, dict) - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/artist?mbId=123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/artist.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.get_artist(id_="123456") - assert isinstance(data, dict) +def test_lookup_album(lidarr_client: LidarrAPI): + data = lidarr_client.lookup_album(term=LIDARR_ALBUM_TERM) + assert isinstance(data, list) -@pytest.mark.usefixtures -def test__artist_json(responses, lidarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/artist/lookup?term=lidarr%3A123456-123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/lookup.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/qualityprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/blank_list.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/metadataprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/blank_list.json"), - status=200, - match_querystring=True, - ) + +def test__artist_json(lidarr_client: LidarrAPI): + qual_profile = lidarr_client.get_quality_profile() + meta_profile = lidarr_client.get_metadata_profile() data = lidarr_client._artist_json( - id_="123456-123456", + id_=LIDARR_MUSICBRAINZ_ARTIST_ID, root_dir="/", - quality_profile_id=1, - metadata_profile_id=1, + quality_profile_id=qual_profile[0]["id"], + metadata_profile_id=meta_profile[0]["id"], monitored=False, artist_monitor=LidarrArtistMonitor.FIRST_ALBUM, artist_search_for_missing_albums=False, ) assert isinstance(data, dict) - with contextlib.suppress(PyarrMissingProfile): - data = lidarr_client._artist_json(id_="123456-123456", root_dir="/") - assert False - with contextlib.suppress(PyarrMissingProfile): - data = lidarr_client._artist_json( - id_="123456-123456", root_dir="/", quality_profile_id=1 - ) - assert False +def test_add_artist(lidarr_client: LidarrAPI): + qual_profile = lidarr_client.get_quality_profile() + meta_profile = lidarr_client.get_metadata_profile() - -@pytest.mark.usefixtures -def test_add_artist(responses, lidarr_client): - responses.add( - responses.POST, - "https://127.0.0.1:8686/api/v1/artist", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/artist.json"), - status=201, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/artist/lookup?term=lidarr%3A123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/lookup.json"), - status=200, - match_querystring=True, - ) data = lidarr_client.add_artist( - id_="123456", + id_=LIDARR_MUSICBRAINZ_ARTIST_ID, root_dir="/", - quality_profile_id=1, - metadata_profile_id=1, + quality_profile_id=qual_profile[0]["id"], + metadata_profile_id=meta_profile[0]["id"], monitored=False, artist_monitor=LidarrArtistMonitor.LATEST_ALBUM, artist_search_for_missing_albums=False, @@ -182,174 +94,52 @@ def test_add_artist(responses, lidarr_client): assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_upd_artist(responses, lidarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/artist/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/artist.json"), - status=202, - match_querystring=True, - ) - artist = lidarr_client.get_artist(1) - - responses.add( - responses.PUT, - "https://127.0.0.1:8686/api/v1/artist", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/artist.json"), - status=202, - match_querystring=True, - ) - data = lidarr_client.upd_artist(data=artist) - assert isinstance(data, dict) +def test_get_artist(lidarr_client: LidarrAPI): + data = lidarr_client.get_artist() + assert isinstance(data, list) -@pytest.mark.usefixtures -def test_delete_artist(responses, lidarr_client): - responses.add( - responses.DELETE, - "https://127.0.0.1:8686/api/v1/artist/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.delete_artist(1) + data = lidarr_client.get_artist(id_=data[0]["id"]) assert isinstance(data, dict) - -@pytest.mark.usefixtures -def test_get_album(responses, lidarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/album?includeAllArtistAlbums=False", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/album_all.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.get_album() + data = lidarr_client.get_artist(id_=LIDARR_MUSICBRAINZ_ARTIST_ID) assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/album/1?includeAllArtistAlbums=False", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/album.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.get_album(albumIds=1) - assert isinstance(data, dict) - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/album?includeAllArtistAlbums=False&foreignAlbumId=123456-123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/album.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.get_album(foreignAlbumId="123456-123456") - assert isinstance(data, dict) +def test_upd_artist(lidarr_client: LidarrAPI): - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/album?includeAllArtistAlbums=False&albumids=1&albumids=2&albumids=3", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/album_all.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.get_album(albumIds=[1, 2, 3]) - assert isinstance(data, list) + artist = lidarr_client.get_artist() - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/album?includeAllArtistAlbums=True&artistId=1", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/album_all.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.get_album(artistId=1, allArtistAlbums=True) - assert isinstance(data, list) + data = lidarr_client.upd_artist(data=artist) + assert isinstance(data, dict) -@pytest.mark.usefixtures -def test__album_json(responses, lidarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/album/lookup?term=lidarr%3A123456-123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/lookup.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/qualityprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/blank_list.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/metadataprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/blank_list.json"), - status=200, - match_querystring=True, - ) +def test__album_json(lidarr_client: LidarrAPI): + qual_profile = lidarr_client.get_quality_profile() + meta_profile = lidarr_client.get_metadata_profile() data = lidarr_client._album_json( - id_="123456-123456", + id_=LIDARR_MUSICBRAINZ_ALBUM_ID, root_dir="/", - quality_profile_id=1, - metadata_profile_id=1, + quality_profile_id=qual_profile[0]["id"], + metadata_profile_id=meta_profile[0]["id"], monitored=False, artist_monitor=LidarrArtistMonitor.FIRST_ALBUM, artist_search_for_missing_albums=False, ) assert isinstance(data, dict) - with contextlib.suppress(PyarrMissingProfile): - data = lidarr_client._album_json(id_="123456-123456", root_dir="/") - assert False - with contextlib.suppress(PyarrMissingProfile): - data = lidarr_client._album_json( - id_="123456-123456", root_dir="/", quality_profile_id=1 - ) - assert False +def test_add_album(lidarr_client: LidarrAPI): + qual_profile = lidarr_client.get_quality_profile() + meta_profile = lidarr_client.get_metadata_profile() -@pytest.mark.usefixtures -def test_add_album(responses, lidarr_client): - responses.add( - responses.POST, - "https://127.0.0.1:8686/api/v1/album", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/album.json"), - status=201, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/album/lookup?term=lidarr%3A123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/lookup.json"), - status=200, - match_querystring=True, - ) data = lidarr_client.add_album( - id_="123456", - root_dir="/", - quality_profile_id=1, - metadata_profile_id=1, + id_=LIDARR_MUSICBRAINZ_ALBUM_ID, + root_dir="/defaults/", + quality_profile_id=qual_profile[0]["id"], + metadata_profile_id=meta_profile[0]["id"], monitored=False, artist_monitor=LidarrArtistMonitor.LATEST_ALBUM, artist_search_for_missing_albums=False, @@ -357,54 +147,30 @@ def test_add_album(responses, lidarr_client): assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_upd_album(responses, lidarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/album/1?includeAllArtistAlbums=False", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/album.json"), - status=202, - match_querystring=True, - ) - album = lidarr_client.get_album(1) +def test_upd_album(lidarr_client: LidarrAPI): - responses.add( - responses.PUT, - "https://127.0.0.1:8686/api/v1/album", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/album.json"), - status=202, - match_querystring=True, - ) - data = lidarr_client.upd_album(data=album) + album = lidarr_client.get_album() + + data = lidarr_client.upd_album(data=album[0]["id"]) assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_delete_album(responses, lidarr_client): - responses.add( - responses.DELETE, - "https://127.0.0.1:8686/api/v1/album/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.delete_album(1) +def test_get_album(lidarr_client: LidarrAPI): + + data = lidarr_client.get_album() + assert isinstance(data, list) + + data = lidarr_client.get_album(albumIds=data[0]["id"]) assert isinstance(data, dict) + data = lidarr_client.get_album(artistId=data[0]["artistId"], allArtistAlbums=True) + assert isinstance(data, list) -@pytest.mark.usefixtures -def test_post_command(responses, lidarr_client): - responses.add( - responses.POST, - "https://127.0.0.1:8686/api/v1/command", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/command.json"), - status=201, - match_querystring=True, - ) + data = lidarr_client.get_album(foreignAlbumId=LIDARR_MUSICBRAINZ_ARTIST_ID) + assert isinstance(data, dict) + + +def test_post_command(lidarr_client: LidarrAPI): data = lidarr_client.post_command(name=LidarrCommand.DOWNLOADED_ALBUMS_SCAN) assert isinstance(data, dict) @@ -422,40 +188,16 @@ def test_post_command(responses, lidarr_client): assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_get_wanted(responses, lidarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/wanted/missing", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/wanted_missing.json"), - status=200, - match_querystring=True, - ) +def test_get_wanted(lidarr_client: LidarrAPI): + data = lidarr_client.get_wanted() assert isinstance(data, dict) - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/wanted/cutoff", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/wanted_missing.json"), - status=200, - match_querystring=True, - ) data = lidarr_client.get_wanted(missing=False) assert isinstance(data, dict) - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/wanted/missing?page=2&pageSize=20&sortKey=albums.title&sortDirection=ascending", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/wanted_missing.json"), - status=200, - match_querystring=True, - ) data = lidarr_client.get_wanted( - page=2, + page=1, page_size=20, sort_key=LidarrSortKey.ALBUM_TITLE, sort_dir=PyarrSortDirection.ASC, @@ -472,7 +214,8 @@ def test_get_wanted(responses, lidarr_client): # TODO: confirm fixture @pytest.mark.usefixtures -def test_get_parse(responses, lidarr_client): +@responses.activate +def test_get_parse(lidarr_mock_client): responses.add( responses.GET, @@ -482,65 +225,23 @@ def test_get_parse(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_parse(title="test") + data = lidarr_mock_client.get_parse(title="test") assert isinstance(data, list) -@pytest.mark.usefixtures -def test_get_tracks(responses, lidarr_client): +def test_get_tracks(lidarr_client: LidarrAPI): + artist = lidarr_client.get_artist() + album = lidarr_client.get_album() - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/track?artistId=1", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/track_all.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.get_tracks(artistId=1) + data = lidarr_client.get_tracks(artistId=artist[0]["id"]) assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/track?albumId=1", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/track_all.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.get_tracks(albumId=1) + data = lidarr_client.get_tracks(albumId=album[0]["id"]) assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/track?albumReleaseId=1", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/track_all.json"), - status=200, - match_querystring=True, - ) data = lidarr_client.get_tracks(albumReleaseId=1) assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/track?trackIds=1&trackIds=2&trackIds=3", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/track_all.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.get_tracks(trackIds=[1, 2, 3]) - assert isinstance(data, list) - - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/track/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/track.json"), - status=200, - match_querystring=True, - ) data = lidarr_client.get_tracks(trackIds=1) assert isinstance(data, dict) @@ -549,9 +250,9 @@ def test_get_tracks(responses, lidarr_client): assert False -# TODO: confirm trackfile fixtures @pytest.mark.usefixtures -def test_get_track_file(responses, lidarr_client): +@responses.activate +def test_get_track_file(lidarr_mock_client: LidarrAPI): responses.add( responses.GET, @@ -561,7 +262,7 @@ def test_get_track_file(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_track_file(artistId=1) + data = lidarr_mock_client.get_track_file(artistId=1) assert isinstance(data, list) responses.add( @@ -572,7 +273,7 @@ def test_get_track_file(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_track_file(albumId=1) + data = lidarr_mock_client.get_track_file(albumId=1) assert isinstance(data, list) responses.add( @@ -583,7 +284,7 @@ def test_get_track_file(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_track_file(trackFileIds=[1, 2, 3]) + data = lidarr_mock_client.get_track_file(trackFileIds=[1, 2, 3]) assert isinstance(data, list) responses.add( @@ -594,7 +295,7 @@ def test_get_track_file(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_track_file(trackFileIds=1) + data = lidarr_mock_client.get_track_file(trackFileIds=1) assert isinstance(data, dict) responses.add( @@ -605,16 +306,17 @@ def test_get_track_file(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_track_file(unmapped=True) + data = lidarr_mock_client.get_track_file(unmapped=True) assert isinstance(data, list) with contextlib.suppress(PyarrMissingArgument): - data = lidarr_client.get_track_file() + data = lidarr_mock_client.get_track_file() assert False @pytest.mark.usefixtures -def test_upd_track_file(responses, lidarr_client): +@responses.activate +def test_upd_track_file(lidarr_mock_client: LidarrAPI): responses.add( responses.GET, @@ -624,7 +326,7 @@ def test_upd_track_file(responses, lidarr_client): status=200, match_querystring=True, ) - track = lidarr_client.get_track_file(trackFileIds=1) + track = lidarr_mock_client.get_track_file(trackFileIds=1) responses.add( responses.PUT, @@ -634,117 +336,44 @@ def test_upd_track_file(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.upd_track_file(data=track) + data = lidarr_mock_client.upd_track_file(data=track) assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_delete_track_file(responses, lidarr_client): - responses.add( - responses.DELETE, - "https://127.0.0.1:8686/api/v1/trackfile/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.delete_track_file(1) - assert isinstance(data, dict) - +def test_get_metadata_profile(lidarr_client: LidarrAPI): -@pytest.mark.usefixtures -def test_get_metadata_profile(responses, lidarr_client): - - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/metadataprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/metadataprofile_all.json"), - status=200, - match_querystring=True, - ) data = lidarr_client.get_metadata_profile() assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/metadataprofile/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/metadataprofile.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.get_metadata_profile(id_=1) + data = lidarr_client.get_metadata_profile(id_=data[0]["id"]) assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_upd_metadata_profile(responses, lidarr_client): +def test_upd_metadata_profile(lidarr_client: LidarrAPI): - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/metadataprofile/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/metadataprofile.json"), - status=200, - match_querystring=True, - ) - profile = lidarr_client.get_metadata_profile(id_=1) + profile = lidarr_client.get_metadata_profile() - responses.add( - responses.PUT, - "https://127.0.0.1:8686/api/v1/metadataprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/metadataprofile.json"), - status=200, - match_querystring=True, - ) - data = lidarr_client.upd_metadata_profile(data=profile) + data = lidarr_client.upd_metadata_profile(data=profile[0]) assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_get_metadata_provider(responses, lidarr_client): +def test_get_metadata_provider(lidarr_client: LidarrAPI): - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/config/metadataProvider", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/metadataprovider.json"), - status=200, - match_querystring=True, - ) data = lidarr_client.get_metadata_provider() assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_upd_metadata_provider(responses, lidarr_client): +def test_upd_metadata_provider(lidarr_client: LidarrAPI): - responses.add( - responses.GET, - "https://127.0.0.1:8686/api/v1/config/metadataProvider", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/metadataprovider.json"), - status=200, - match_querystring=True, - ) provider = lidarr_client.get_metadata_provider() - responses.add( - responses.PUT, - "https://127.0.0.1:8686/api/v1/config/metadataProvider", - headers={"Content-Type": "application/json"}, - body=load_fixture("lidarr/metadataprovider.json"), - status=200, - match_querystring=True, - ) data = lidarr_client.upd_metadata_provider(data=provider) assert isinstance(data, dict) @pytest.mark.usefixtures -def test_get_queue(responses, lidarr_client): +@responses.activate +def test_get_queue(lidarr_mock_client: LidarrAPI): responses.add( responses.GET, @@ -754,7 +383,7 @@ def test_get_queue(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_queue() + data = lidarr_mock_client.get_queue() assert isinstance(data, dict) responses.add( @@ -765,7 +394,7 @@ def test_get_queue(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_queue( + data = lidarr_mock_client.get_queue( page=1, page_size=10, sort_key=LidarrSortKey.TIMELEFT, @@ -781,23 +410,24 @@ def test_get_queue(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_queue( + data = lidarr_mock_client.get_queue( unknown_artists=True, include_album=True, include_artist=True ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = lidarr_client.get_queue(sort_key=LidarrSortKey.ARTIST_ID) + data = lidarr_mock_client.get_queue(sort_key=LidarrSortKey.ARTIST_ID) assert False with contextlib.suppress(PyarrMissingArgument): - data = lidarr_client.get_queue(sort_dir=PyarrSortDirection.ASC) + data = lidarr_mock_client.get_queue(sort_dir=PyarrSortDirection.ASC) assert False # TODO: get correct fixture @pytest.mark.usefixtures -def test_get_queue_details(responses, lidarr_client): +@responses.activate +def test_get_queue_details(lidarr_mock_client: LidarrAPI): responses.add( responses.GET, @@ -807,7 +437,7 @@ def test_get_queue_details(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_queue_details() + data = lidarr_mock_client.get_queue_details() assert isinstance(data, list) responses.add( @@ -818,7 +448,7 @@ def test_get_queue_details(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_queue_details( + data = lidarr_mock_client.get_queue_details( include_artist=True, include_album=True, artistId=1, albumIds=[1, 2] ) assert isinstance(data, list) @@ -826,7 +456,8 @@ def test_get_queue_details(responses, lidarr_client): # TODO: get correct fixture @pytest.mark.usefixtures -def test_get_release(responses, lidarr_client): +@responses.activate +def test_get_release(lidarr_mock_client: LidarrAPI): responses.add( responses.GET, @@ -836,7 +467,7 @@ def test_get_release(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_release() + data = lidarr_mock_client.get_release() assert isinstance(data, list) responses.add( @@ -847,13 +478,14 @@ def test_get_release(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_release(artistId=1, albumId=1) + data = lidarr_mock_client.get_release(artistId=1, albumId=1) assert isinstance(data, list) # TODO: get correct fixture @pytest.mark.usefixtures -def test_get_rename(responses, lidarr_client): +@responses.activate +def test_get_rename(lidarr_mock_client: LidarrAPI): responses.add( responses.GET, @@ -863,7 +495,7 @@ def test_get_rename(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_rename(artistId=1) + data = lidarr_mock_client.get_rename(artistId=1) assert isinstance(data, list) responses.add( responses.GET, @@ -873,17 +505,18 @@ def test_get_rename(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_rename(artistId=1, albumId=1) + data = lidarr_mock_client.get_rename(artistId=1, albumId=1) assert isinstance(data, list) with contextlib.suppress(TypeError): - data = lidarr_client.get_rename() + data = lidarr_mock_client.get_rename() assert False # TODO: get correct fixture @pytest.mark.usefixtures -def test_get_manual_import(responses, lidarr_client): +@responses.activate +def test_get_manual_import(lidarr_mock_client: LidarrAPI): responses.add( responses.GET, @@ -893,7 +526,7 @@ def test_get_manual_import(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_manual_import(folder="/music/") + data = lidarr_mock_client.get_manual_import(folder="/music/") assert isinstance(data, list) responses.add( @@ -904,7 +537,7 @@ def test_get_manual_import(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_manual_import( + data = lidarr_mock_client.get_manual_import( folder="/music/", downloadId=1, artistId=1, @@ -916,7 +549,8 @@ def test_get_manual_import(responses, lidarr_client): # TODO: get correct fixture, confirm update returns dict @pytest.mark.usefixtures -def test_upd_manual_import(responses, lidarr_client): +@responses.activate +def test_upd_manual_import(lidarr_mock_client: LidarrAPI): responses.add( responses.GET, @@ -926,7 +560,7 @@ def test_upd_manual_import(responses, lidarr_client): status=200, match_querystring=True, ) - man_import = lidarr_client.get_manual_import(folder="/music/") + man_import = lidarr_mock_client.get_manual_import(folder="/music/") responses.add( responses.PUT, @@ -936,13 +570,14 @@ def test_upd_manual_import(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.upd_manual_import(data=man_import) + data = lidarr_mock_client.upd_manual_import(data=man_import) assert isinstance(data, dict) # TODO: get correct fixture @pytest.mark.usefixtures -def test_get_manual_import(responses, lidarr_client): +@responses.activate +def test_get_manual_import(lidarr_mock_client: LidarrAPI): responses.add( responses.GET, @@ -952,7 +587,7 @@ def test_get_manual_import(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_retag() + data = lidarr_mock_client.get_retag() assert isinstance(data, list) responses.add( @@ -963,5 +598,46 @@ def test_get_manual_import(responses, lidarr_client): status=200, match_querystring=True, ) - data = lidarr_client.get_retag(artistId=1, albumId=1) + data = lidarr_mock_client.get_retag(artistId=1, albumId=1) assert isinstance(data, list) + + +def test_delete_album(lidarr_client: LidarrAPI): + album = lidarr_client.get_album() + data = lidarr_client.delete_album(album[0]["id"]) + assert isinstance(data, dict) + + +def test_delete_artist(lidarr_client: LidarrAPI): + artist = lidarr_client.get_artist() + data = lidarr_client.delete_artist(artist[0]["id"]) + assert data.status_code == 200 + + +def test_del_root_folder(lidarr_client: LidarrAPI): + + root_folders = lidarr_client.get_root_folder() + + # Check folder can be deleted + data = lidarr_client.del_root_folder(root_folders[0]["id"]) + assert data.status_code == 200 + + # Check that none existant root folder doesnt throw error + with contextlib.suppress(PyarrResourceNotFound): + data = lidarr_client.del_root_folder(999) + assert False + + +@pytest.mark.usefixtures +@responses.activate +def test_delete_track_file(lidarr_mock_client: LidarrAPI): + responses.add( + responses.DELETE, + "https://127.0.0.1:8686/api/v1/trackfile/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + data = lidarr_mock_client.delete_track_file(1) + assert isinstance(data, dict) diff --git a/tests/test_radarr.py b/tests/test_radarr.py index 0770d87..fc67638 100644 --- a/tests/test_radarr.py +++ b/tests/test_radarr.py @@ -1,71 +1,74 @@ import contextlib +from datetime import datetime import json +import random import pytest +import responses from pyarr.exceptions import ( PyarrMissingArgument, PyarrRecordNotFound, PyarrResourceNotFound, ) -from pyarr.models.common import PyarrSortDirection +from pyarr.models.common import ( + PyarrBlocklistSortKey, + PyarrDownloadClientSchema, + PyarrHistorySortKey, + PyarrImportListSchema, + PyarrIndexerSchema, + PyarrLogFilterKey, + PyarrLogFilterValue, + PyarrLogSortKey, + PyarrNotificationSchema, + PyarrSortDirection, +) from pyarr.models.radarr import RadarrCommands, RadarrEventType, RadarrSortKeys - -from tests import load_fixture -from tests.conftest import radarr_client +from pyarr.radarr import RadarrAPI +from pyarr.types import JsonArray, JsonObject + +from tests import ( + RADARR_IMDB, + RADARR_IMDB_LIST, + RADARR_MOVIE_TERM, + RADARR_TMDB, + load_fixture, +) +from tests.conftest import radarr_client, radarr_mock_client -@pytest.mark.usefixtures -def test__movie_json(responses, radarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/movie/lookup?term=tmdb%3A123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_lookup.json"), - status=200, - match_querystring=True, - ) +def test_add_root_folder(radarr_client: RadarrAPI): - data = radarr_client._movie_json( - id_=123456, - root_dir="/", - quality_profile_id=1, - monitored=False, - search_for_movie=False, - ) + data = radarr_client.add_root_folder(directory="/defaults") assert isinstance(data, dict) - with contextlib.suppress(DeprecationWarning): - data = radarr_client._movie_json( - id_=123456, root_dir="/", quality_profile_id=1, tmdb=True - ) - responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/movie/lookup?term=imdb%3Att123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_lookup.json"), - status=200, - match_querystring=True, - ) +def test_get_root_folder(radarr_client: RadarrAPI): + + data = radarr_client.get_root_folder() + assert isinstance(data, list) + data = radarr_client.get_root_folder(data[0]["id"]) + assert isinstance(data, dict) + + +def test__movie_json(radarr_client: RadarrAPI): data = radarr_client._movie_json( - id_="tt123456", + id_=RADARR_IMDB, root_dir="/", quality_profile_id=1, monitored=False, search_for_movie=False, ) assert isinstance(data, dict) + assert data["rootFolderPath"] == "/" + assert data["qualityProfileId"] == 1 + assert data["monitored"] == False - responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/movie/lookup?term=imdb%3Att123d", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_lookup_blank.json"), - status=200, - match_querystring=True, - ) + with contextlib.suppress(DeprecationWarning): + data = radarr_client._movie_json( + id_=RADARR_IMDB, root_dir="/", quality_profile_id=1, tmdb=True + ) with contextlib.suppress(PyarrRecordNotFound): data = radarr_client._movie_json( @@ -78,103 +81,131 @@ def test__movie_json(responses, radarr_client): assert False -@pytest.mark.usefixtures -def test_add_root_folder(responses, radarr_client): - responses.add( - responses.POST, - "https://127.0.0.1:7878/api/v3/rootfolder", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/rootfolder.json"), - status=201, - match_querystring=True, - ) - data = radarr_client.add_root_folder(directory="/path/to/folder") +def test_get_command(radarr_client: RadarrAPI): + """Check get_command()""" + + # No args + data = radarr_client.get_command() + assert isinstance(data, list) + + # When an ID is supplied + data = radarr_client.get_command(data[0]["id"]) assert isinstance(data, dict) + # when an incorrect ID is supplied, not found response + with contextlib.suppress(PyarrResourceNotFound): + data = radarr_client.get_command(432111111) + assert False -@pytest.mark.usefixtures -def test_get_movie(responses, radarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/movie", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_all.json"), - status=200, - match_querystring=True, + +def test_post_command(radarr_client: RadarrAPI): + + data = radarr_client.post_command(name=RadarrCommands.RESCAN_MOVIE, movieid=1) + assert isinstance(data, dict) + data = radarr_client.post_command(name=RadarrCommands.REFRESH_MOVIE, seriesId=1) + assert isinstance(data, dict) + data = radarr_client.post_command(name=RadarrCommands.MISSING_MOVIES_SEARCH) + assert isinstance(data, dict) + data = radarr_client.post_command(name=RadarrCommands.DOWNLOADED_MOVIES_SCAN) + assert isinstance(data, dict) + data = radarr_client.post_command(name=RadarrCommands.RENAME_FILES, files=[1, 2, 3]) + assert isinstance(data, dict) + data = radarr_client.post_command(name=RadarrCommands.RENAME_FILES) + assert isinstance(data, dict) + data = radarr_client.post_command( + name=RadarrCommands.RENAME_MOVIE, seriesIds=[1, 2, 3] ) - data = radarr_client.get_movie() + assert isinstance(data, dict) + data = radarr_client.post_command(name=RadarrCommands.BACKUP) + assert isinstance(data, dict) + + +def test_add_quality_profile(radarr_client: RadarrAPI): + + data = radarr_client.get_quality_definition() assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/movie/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie.json"), - status=200, - match_querystring=True, + test_items = [data[0], data[3], data[5]] + + data = radarr_client.add_quality_profile( + name="Testing", upgrades_allowed=True, cutoff=3, items=test_items ) - data = radarr_client.get_movie(id_=1) assert isinstance(data, dict) - responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/movie?tmdbid=123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_tmdb.json"), - status=200, - match_querystring=True, - ) - data = radarr_client.get_movie(id_=123456, tmdb=True) + +def test_get_quality_profile(radarr_client: RadarrAPI): + + data = radarr_client.get_quality_profile() assert isinstance(data, list) + data = radarr_client.get_quality_profile(data[0]["id"]) + assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_add_movie(responses, radarr_client): - responses.add( - responses.POST, - "https://127.0.0.1:7878/api/v3/movie", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie.json"), - status=201, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/movie/lookup?term=imdb%3Att123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_lookup.json"), - status=200, - match_querystring=True, + +def test_upd_quality_profile(radarr_client: RadarrAPI): + + quality_profiles = radarr_client.get_quality_profile() + + for profile in quality_profiles: + if profile["name"] == "Testing": + data = radarr_client.upd_quality_profile(id_=profile["id"], data=profile) + assert isinstance(data, dict) + + +def test_lookup_movie(radarr_client: RadarrAPI): + data = radarr_client.lookup_movie(term=f"imdb:{RADARR_IMDB}") + assert isinstance(data, list) + + data = radarr_client.lookup_movie(term=f"tmdb:{RADARR_TMDB}") + assert isinstance(data, list) + + data = radarr_client.lookup_movie(term=RADARR_MOVIE_TERM) + assert isinstance(data, list) + + +def test_lookup_movie_by_tmdb_id(radarr_client: RadarrAPI): + + data = radarr_client.lookup_movie_by_tmdb_id(id_=RADARR_TMDB) + assert isinstance(data, list) + + +def test_lookup_movie_by_imdb_id(radarr_client: RadarrAPI): + + data = radarr_client.lookup_movie_by_imdb_id(id_=RADARR_IMDB) + assert isinstance(data, list) + + +def test_add_movie(radarr_client: RadarrAPI): + + data = radarr_client.add_movie( + id_=RADARR_IMDB, + root_dir="/", + quality_profile_id=1, + monitored=False, + search_for_movie=False, ) - responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/movie/lookup?term=tmdb%3A123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_lookup.json"), - status=200, - match_querystring=True, + data = radarr_client.add_movie( + id_=RADARR_IMDB_LIST[0], + root_dir="/", + quality_profile_id=1, + monitored=False, + search_for_movie=False, ) + assert isinstance(data, dict) data = radarr_client.add_movie( - id_="tt123456", + id_=RADARR_IMDB_LIST[1], root_dir="/", quality_profile_id=1, monitored=False, search_for_movie=False, ) assert isinstance(data, dict) + assert isinstance(data, dict) with contextlib.suppress(DeprecationWarning): data = radarr_client.add_movie( - id_=123456, root_dir="/", quality_profile_id=1, tmdb=True + id_=RADARR_TMDB, root_dir="/", quality_profile_id=1, tmdb=True ) - responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/movie/lookup?term=imdb%3Att123d", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_lookup_blank.json"), - status=200, - match_querystring=True, - ) with contextlib.suppress(PyarrRecordNotFound): data = radarr_client.add_movie( id_="tt123d", @@ -186,516 +217,837 @@ def test_add_movie(responses, radarr_client): assert False -@pytest.mark.usefixtures -def test_upd_movie(responses, radarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/movie/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie.json"), - status=202, - match_querystring=True, - ) - movie = radarr_client.get_movie(1) - responses.add( - responses.PUT, - "https://127.0.0.1:7878/api/v3/movie", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie.json"), - status=202, - match_querystring=True, - ) - data = radarr_client.upd_movie(data=movie) +def test_get_movie(radarr_client: RadarrAPI): + data = radarr_client.get_movie() + assert isinstance(data, list) + + data = radarr_client.get_movie(id_=data[0]["id"]) assert isinstance(data, dict) - responses.add( - responses.PUT, - "https://127.0.0.1:7878/api/v3/movie?moveFiles=True", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie.json"), - status=202, - match_querystring=True, - ) - data = radarr_client.upd_movie(data=movie, move_files=True) + data = radarr_client.get_movie(id_=RADARR_TMDB, tmdb=True) + assert isinstance(data, list) + + +def test_get_movie_by_movie_id(radarr_client: RadarrAPI): + + movie = radarr_client.get_movie() + data = radarr_client.get_movie_by_movie_id(movie[0]["id"]) assert isinstance(data, dict) - responses.add( - responses.PUT, - "https://127.0.0.1:7878/api/v3/movie/editor", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_all.json"), - status=202, - match_querystring=True, - ) + with pytest.deprecated_call(): + radarr_client.get_movie_by_movie_id(movie[0]["id"]) - data = radarr_client.upd_movie( - data=json.loads(load_fixture("radarr/movie_all.json")) - ) + with contextlib.suppress(PyarrResourceNotFound): + data = radarr_client.get_movie_by_movie_id(999) + assert False + + +def test_upd_movie(radarr_client: RadarrAPI): + + movie = radarr_client.get_movie() + + data = radarr_client.upd_movie(data=movie[0]) + assert isinstance(data, dict) + + data = radarr_client.upd_movie(data=movie[0], move_files=True) + assert isinstance(data, dict) + + +def test_upd_movies(radarr_client: RadarrAPI): + movie = radarr_client.get_movie() + quality_profile = radarr_client.get_quality_profile() + update_data = { + "movieIds": [movie[0]["id"]], + "rootFolderPath": "/defaults/", + "monitored": True, + "qualityProfileId": quality_profile[0]["id"], + "minimumAvailability": "inCinemas", + } + data = radarr_client.upd_movies(data=update_data) assert isinstance(data, list) - responses.add( - responses.PUT, - "https://127.0.0.1:7878/api/v3/movie/editor?moveFiles=True", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_all.json"), - status=202, - match_querystring=True, - ) - data = radarr_client.upd_movie( - data=json.loads(load_fixture("radarr/movie_all.json")), move_files=True - ) + movie = radarr_client.get_movie() + update_data = { + "movieIds": [movie[0]["id"]], + "monitored": False, + } + data = radarr_client.upd_movies(data=update_data) assert isinstance(data, list) -@pytest.mark.usefixtures -def test_get_movie_by_movie_id(responses, radarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/movie/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie.json"), - status=200, - match_querystring=True, - ) - data = radarr_client.get_movie_by_movie_id(1) +def test_get_history(radarr_client: RadarrAPI): + data = radarr_client.get_history() assert isinstance(data, dict) - responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/movie/999", - headers={"Content-Type": "application/json"}, - status=404, - match_querystring=True, + data = radarr_client.get_history( + page=1, + page_size=10, + sort_key=PyarrHistorySortKey.TIME, + sort_dir=PyarrSortDirection.DEFAULT, ) - with contextlib.suppress(PyarrResourceNotFound): - data = radarr_client.get_movie_by_movie_id(999) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = radarr_client.get_history(sort_key=PyarrHistorySortKey.TIME) assert False + with contextlib.suppress(PyarrMissingArgument): + data = radarr_client.get_history(sort_dir=PyarrSortDirection.DESC) + assert False -@pytest.mark.usefixtures -def test_del_movie(responses, radarr_client): - responses.add( - responses.DELETE, - "https://127.0.0.1:7878/api/v3/movie/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, + +def test_get_calendar(radarr_client: RadarrAPI): + + start = datetime.strptime("Nov 30 2020 1:33PM", "%b %d %Y %I:%M%p") + end = datetime.strptime("Dec 1 2020 1:33PM", "%b %d %Y %I:%M%p") + data = radarr_client.get_calendar(start_date=start, end_date=end) + assert isinstance(data, list) + + start = datetime.strptime("Nov 30 2020 1:33PM", "%b %d %Y %I:%M%p") + end = datetime.strptime("Dec 1 2020 1:33PM", "%b %d %Y %I:%M%p") + data = radarr_client.get_calendar(start_date=start, end_date=end, unmonitored=False) + assert isinstance(data, list) + + +def test_get_system_status(radarr_client: RadarrAPI): + + data = radarr_client.get_system_status() + assert isinstance(data, dict) + + +def test_get_health(radarr_client: RadarrAPI): + + data = radarr_client.get_health() + assert isinstance(data, list) + + +def test_get_metadata(radarr_client: RadarrAPI): + + data = radarr_client.get_metadata() + assert isinstance(data, list) + + data = radarr_client.get_metadata(data[0]["id"]) + assert isinstance(data, dict) + + +def test_get_update(radarr_client: RadarrAPI): + + data = radarr_client.get_update() + assert isinstance(data, list) + + +def test_get_disk_space(radarr_client: RadarrAPI): + + data = radarr_client.get_disk_space() + assert isinstance(data, list) + + +def test_get_backup(radarr_client: RadarrAPI): + + data = radarr_client.get_backup() + assert isinstance(data, list) + + +def test_get_log(radarr_client: RadarrAPI): + + data = radarr_client.get_log() + assert isinstance(data, dict) + + data = radarr_client.get_log( + page=10, + page_size=10, + sort_key=PyarrLogSortKey.ID, + sort_dir=PyarrSortDirection.DESC, + filter_key=PyarrLogFilterKey.LEVEL, + filter_value=PyarrLogFilterValue.ALL, ) - data = radarr_client.del_movie(1) assert isinstance(data, dict) - responses.add( - responses.DELETE, - "https://127.0.0.1:7878/api/v3/movie/1?deleteFiles=True&addImportExclusion=True", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, + with contextlib.suppress(PyarrMissingArgument): + data = radarr_client.get_log(sort_key=PyarrLogSortKey.ID) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = radarr_client.get_log(sort_dir=PyarrSortDirection.DESC) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = radarr_client.get_log(filter_key=PyarrLogFilterKey.LEVEL) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = radarr_client.get_log(filter_value=PyarrLogFilterValue.ALL) + assert False + + +def test_get_task(radarr_client: RadarrAPI): + + data = radarr_client.get_task() + assert isinstance(data, list) + + data = radarr_client.get_task(id_=data[0]["id"]) + assert isinstance(data, dict) + + +def test_get_config_ui(radarr_client: RadarrAPI): + + data = radarr_client.get_config_ui() + assert isinstance(data, dict) + + +def test_upd_config_ui(radarr_client: RadarrAPI): + + payload = radarr_client.get_config_ui() + payload["enableColorImpairedMode"] = True + data = radarr_client.upd_config_ui(payload) + assert isinstance(data, dict) + assert data["enableColorImpairedMode"] == True + + +def test_get_config_host(radarr_client: RadarrAPI): + + data = radarr_client.get_config_host() + assert isinstance(data, dict) + + +def test_upd_config_host(radarr_client: RadarrAPI): + + payload = radarr_client.get_config_host() + payload["backupRetention"] = 29 + data = radarr_client.upd_config_host(payload) + + assert isinstance(data, dict) + assert data["backupRetention"] == 29 + + +def test_get_config_naming(radarr_client: RadarrAPI): + + data = radarr_client.get_config_naming() + assert isinstance(data, dict) + + +def test_upd_config_naming(radarr_client: RadarrAPI): + + payload = radarr_client.get_config_naming() + if ( + payload["standardMovieFormat"] + == "{Movie Title} ({Release Year}) {Quality Full}" + ): + payload["standardMovieFormat"] = "{Movie Title} {Quality Full} ({Release Year})" + else: + payload["standardMovieFormat"] = "{Movie Title} ({Release Year}) {Quality Full}" + + data = radarr_client.upd_config_naming(payload) + + assert isinstance(data, dict) + if ( + payload["standardMovieFormat"] + == "{Movie Title} ({Release Year}) {Quality Full}" + ): + assert ( + data["standardMovieFormat"] + == "{Movie Title} ({Release Year}) {Quality Full}" + ) + else: + assert ( + data["standardMovieFormat"] + == "{Movie Title} {Quality Full} ({Release Year})" + ) + + +def test_get_media_management(radarr_client: RadarrAPI): + + data = radarr_client.get_media_management() + assert isinstance(data, dict) + + +def test_upd_media_management(radarr_client: RadarrAPI): + + payload = radarr_client.get_media_management() + payload["recycleBinCleanupDays"] = 6 + data = radarr_client.upd_media_management(payload) + + assert isinstance(data, dict) + assert data["recycleBinCleanupDays"] == 6 + + +def test_get_notification_schema(radarr_client: RadarrAPI): + + data = radarr_client.get_notification_schema() + assert isinstance(data, list) + + data = radarr_client.get_notification_schema( + implementation=PyarrNotificationSchema.BOXCAR ) - data = radarr_client.del_movie(id_=1, delete_files=True, add_exclusion=True) + assert isinstance(data, list) + + with contextlib.suppress(PyarrRecordNotFound): + data = radarr_client.get_notification_schema(implementation="polarbear") + assert False + + +def test_create_tag(radarr_client: RadarrAPI): + + data = radarr_client.create_tag(label="string") assert isinstance(data, dict) - responses.add( - responses.DELETE, - "https://127.0.0.1:7878/api/v3/movie/999", - headers={"Content-Type": "application/json"}, - status=404, + +def test_get_tag(radarr_client: RadarrAPI): + + data = radarr_client.get_tag() + assert isinstance(data, list) + + data = radarr_client.get_tag(id_=data[0]["id"]) + assert isinstance(data, dict) + + +def test_get_tag_detail(radarr_client: RadarrAPI): + + data = radarr_client.get_tag_detail() + assert isinstance(data, list) + + data = radarr_client.get_tag_detail(id_=data[0]["id"]) + assert isinstance(data, dict) + + +def test_upd_tag(radarr_client: RadarrAPI): + tags = radarr_client.get_tag() + + data = radarr_client.upd_tag(id_=tags[0]["id"], label="newstring") + assert isinstance(data, dict) + assert data["label"] == "newstring" + + +def test_get_download_client_schema(radarr_client: RadarrAPI): + + data = radarr_client.get_download_client_schema() + assert isinstance(data, list) + + data = radarr_client.get_download_client_schema( + implementation=PyarrDownloadClientSchema.ARIA2 ) - with contextlib.suppress(PyarrResourceNotFound): - data = radarr_client.del_movie(999) + assert isinstance(data, list) + + with contextlib.suppress(PyarrRecordNotFound): + data = radarr_client.get_download_client_schema(implementation="polarbear") assert False - responses.add( - responses.DELETE, - "https://127.0.0.1:7878/api/v3/movie/editor", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, + +def test_get_import_list_schema(radarr_client: RadarrAPI): + + data = radarr_client.get_import_list_schema() + assert isinstance(data, list) + + data = radarr_client.get_import_list_schema( + implementation=PyarrImportListSchema.PLEX ) - data = radarr_client.del_movie(id_=[1, 2, 3]) + assert isinstance(data, list) + + with contextlib.suppress(PyarrRecordNotFound): + data = radarr_client.get_import_list_schema(implementation="polarbear") + assert False + + +def test_get_import_list(radarr_client: RadarrAPI): + data = radarr_client.get_import_list() + assert isinstance(data, list) + + +def test_get_config_download_client(radarr_client: RadarrAPI): + data = radarr_client.get_config_download_client() assert isinstance(data, dict) - responses.add( - responses.DELETE, - "https://127.0.0.1:7878/api/v3/movie/editor", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - ) - data = radarr_client.del_movie(id_=[1, 2, 3], delete_files=True, add_exclusion=True) + +def test_upd_config_download_client(radarr_client: RadarrAPI): + dc_config = radarr_client.get_config_download_client() + dc_config["autoRedownloadFailed"] = False + data = radarr_client.upd_config_download_client(data=dc_config) assert isinstance(data, dict) + assert data["autoRedownloadFailed"] == False -@pytest.mark.usefixtures -def test_lookup_movie(responses, radarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/movie/lookup?term=imdb:123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_lookup.json"), - status=200, - match_querystring=True, +def test_add_download_client(): + return NotImplemented + + +def test_upd_download_client(): + return NotImplemented + + +def test_get_download_client(radarr_client: RadarrAPI): + data = radarr_client.get_download_client() + assert isinstance(data, list) + # TODO: Get download client by ID (required add_download_client first) + + +def test_get_quality_definition(radarr_client: RadarrAPI): + + data = radarr_client.get_quality_definition() + assert isinstance(data, list) + + data = radarr_client.get_quality_definition(id_=data[0]["id"]) + assert isinstance(data, dict) + + +def test_upd_quality_definition(radarr_client: RadarrAPI): + rand_float = round(random.uniform(100.0, 199.9)) + + quality_definitions = radarr_client.get_quality_definition() + quality_definition = radarr_client.get_quality_definition( + id_=quality_definitions[0]["id"] + ) + quality_definition["maxSize"] = rand_float + data = radarr_client.upd_quality_definition( + quality_definition["id"], quality_definition ) - data = radarr_client.lookup_movie(term="imdb:123456") + assert isinstance(data, dict) + assert data["maxSize"] == rand_float + + +def test_get_queue_status(radarr_client: RadarrAPI): + + data = radarr_client.get_queue_status() + assert isinstance(data, dict) + + +def test_get_custom_filter(radarr_client: RadarrAPI): + + data = radarr_client.get_custom_filter() assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/movie/lookup?term=tmdb:123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_lookup.json"), - status=200, - match_querystring=True, + +def test_get_indexer_schema(radarr_client: RadarrAPI): + data = radarr_client.get_indexer_schema() + assert isinstance(data, list) + data = radarr_client.get_indexer_schema( + implementation=PyarrIndexerSchema.IP_TORRENTS ) - data = radarr_client.lookup_movie(term="tmdb:123456") assert isinstance(data, list) + assert data[0]["implementation"] == PyarrIndexerSchema.IP_TORRENTS + + with contextlib.suppress(PyarrRecordNotFound): + data = radarr_client.get_indexer_schema(implementation="polarbear") + assert False + + +@pytest.mark.usefixtures +@responses.activate +def test_get_indexer(radarr_mock_client: RadarrAPI): responses.add( responses.GET, - "https://127.0.0.1:7878/api/v3/movie/lookup?term=Movie", + "https://127.0.0.1:7878/api/v3/indexer", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_lookup.json"), + body=load_fixture("common/indexer_all.json"), status=200, match_querystring=True, ) - data = radarr_client.lookup_movie(term="Movie") + data = radarr_mock_client.get_indexer() assert isinstance(data, list) - -@pytest.mark.usefixtures -def test_lookup_movie_by_tmdb_id(responses, radarr_client): responses.add( responses.GET, - "https://127.0.0.1:7878/api/v3/movie/lookup?term=tmdb:123456", + "https://127.0.0.1:7878/api/v3/indexer/1", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_lookup.json"), + body=load_fixture("common/indexer.json"), status=200, match_querystring=True, ) - data = radarr_client.lookup_movie_by_tmdb_id(id_=123456) - assert isinstance(data, list) + data = radarr_mock_client.get_indexer(id_=1) + assert isinstance(data, dict) @pytest.mark.usefixtures -def test_lookup_movie_by_imdb_id(responses, radarr_client): +@responses.activate +def test_upd_indexer(radarr_mock_client: RadarrAPI): + responses.add( responses.GET, - "https://127.0.0.1:7878/api/v3/movie/lookup?term=imdb:123456", + "https://127.0.0.1:7878/api/v3/indexer/1", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_lookup.json"), + body=load_fixture("common/indexer.json"), status=200, match_querystring=True, ) - data = radarr_client.lookup_movie_by_imdb_id(id_="123456") - assert isinstance(data, list) - - -@pytest.mark.usefixtures -def test_upd_movies(responses, radarr_client): + data = radarr_mock_client.get_indexer(1) responses.add( responses.PUT, - "https://127.0.0.1:7878/api/v3/movie/editor", + "https://127.0.0.1:7878/api/v3/indexer/1", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_all.json"), + body=load_fixture("common/indexer.json"), status=202, match_querystring=True, ) - data = radarr_client.upd_movies( - data=json.loads(load_fixture("radarr/movie_all.json")) - ) + data = radarr_mock_client.upd_indexer(1, data) + assert isinstance(data, dict) + + +# def test_add_notification(radarr_client: RadarrAPI): +# schema = radarr_client.get_notification_schema(implementation=PyarrNotificationSchema.EMAIL) +# +# schema["name"] = "Testing123" +# for schema_config in schema["fields"]: +# if schema_config["name"] == "server": +# schema_config["value"] == "smtp.testing.com" +# +# +# +# data = radarr_client.add_notification(data=) + + +def test_get_notification(radarr_client: RadarrAPI): + data = radarr_client.get_notification() assert isinstance(data, list) + # TODO: Get notification by ID (required add_notification first) -@pytest.mark.usefixtures -def test_import_movies(responses, radarr_client): +def test_get_movie_history(radarr_client: RadarrAPI): + movie = radarr_client.get_movie() + data = radarr_client.get_movie_history(id_=movie[0]["id"]) + assert isinstance(data, list) - responses.add( - responses.POST, - "https://127.0.0.1:7878/api/v3/movie/import", - headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_import.json"), - status=200, - match_querystring=True, - ) - data = radarr_client.import_movies( - data=json.loads(load_fixture("radarr/movie_import.json")) + data = radarr_client.get_movie_history( + id_=movie[0]["id"], event_type=RadarrEventType.UNKNOWN ) assert isinstance(data, list) +def test_get_remote_path_mapping(radarr_client: RadarrAPI): + data = radarr_client.get_remote_path_mapping() + assert isinstance(data, list) + + @pytest.mark.usefixtures -def test_get_movie_files_by_movie_id(responses, radarr_client): +@responses.activate +def test_get_blocklist_by_movie_id(radarr_mock_client: RadarrAPI): responses.add( responses.GET, - "https://127.0.0.1:7878/api/v3/moviefile?movieId=1", + "https://127.0.0.1:7878/api/v3/blocklist/movie?movieId=1", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/moviefiles.json"), + body=load_fixture("radarr/movie_blocklist.json"), status=200, match_querystring=True, ) - data = radarr_client.get_movie_files_by_movie_id(id_=1) + data = radarr_mock_client.get_blocklist_by_movie_id(id_=1) assert isinstance(data, list) @pytest.mark.usefixtures -def test_get_movie_file(responses, radarr_client): +@responses.activate +def test_get_blocklist(radarr_mock_client: RadarrAPI): responses.add( responses.GET, - "https://127.0.0.1:7878/api/v3/moviefile/1", + "https://127.0.0.1:7878/api/v3/blocklist", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/moviefile.json"), + body=load_fixture("common/blocklist.json"), status=200, match_querystring=True, ) - data = radarr_client.get_movie_file(id_=1) + data = radarr_mock_client.get_blocklist() assert isinstance(data, dict) responses.add( responses.GET, - "https://127.0.0.1:7878/api/v3/moviefile?movieFileIds=1&movieFileIds=2&movieFileIds=3&movieFileIds=4", + "https://127.0.0.1:7878/api/v3/blocklist?page=1&pageSize=10&sortKey=date&sortDirection=ascending", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/moviefiles.json"), + body=load_fixture("common/blocklist.json"), status=200, match_querystring=True, ) - data = radarr_client.get_movie_file(id_=[1, 2, 3, 4]) - assert isinstance(data, list) + data = radarr_mock_client.get_blocklist( + page=1, + page_size=10, + sort_key=PyarrBlocklistSortKey.DATE, + sort_dir=PyarrSortDirection.ASC, + ) + assert isinstance(data, dict) + with contextlib.suppress(PyarrMissingArgument): + data = radarr_mock_client.get_blocklist(sort_key=PyarrBlocklistSortKey.DATE) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = radarr_mock_client.get_blocklist(sort_dir=PyarrSortDirection.ASC) + assert False @pytest.mark.usefixtures -def test_del_movies(responses, radarr_client): +@responses.activate +def test_get_queue(radarr_mock_client: RadarrAPI): responses.add( - responses.DELETE, - "https://127.0.0.1:7878/api/v3/movie/editor", + responses.GET, + "https://127.0.0.1:7878/api/v3/queue", headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), + body=load_fixture("radarr/queue.json"), status=200, match_querystring=True, ) - del_data = {"movieIds": [0], "deleteFIles": True, "addImportExclusion": True} - data = radarr_client.del_movies(data=del_data) + data = radarr_mock_client.get_queue() assert isinstance(data, dict) - -@pytest.mark.usefixtures -def test_del_movie_file(responses, radarr_client): responses.add( - responses.DELETE, - "https://127.0.0.1:7878/api/v3/moviefile/1", + responses.GET, + "https://127.0.0.1:7878/api/v3/queue?page=1&pageSize=20&sortKey=timeleft&sortDirection=default&includeUnknownMovieItems=False", headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), + body=load_fixture("radarr/queue.json"), status=200, match_querystring=True, ) - data = radarr_client.del_movie_file(id_=1) + data = radarr_mock_client.get_queue( + page=1, + page_size=20, + sort_key=RadarrSortKeys.TIMELEFT, + sort_dir=PyarrSortDirection.DEFAULT, + include_unknown_movie_items=False, + ) assert isinstance(data, dict) - responses.add( - responses.DELETE, - "https://127.0.0.1:7878/api/v3/moviefile/999", - headers={"Content-Type": "application/json"}, - status=404, - ) - with contextlib.suppress(PyarrResourceNotFound): - data = radarr_client.del_movie_file(id_=999) + with contextlib.suppress(PyarrMissingArgument): + data = radarr_mock_client.get_queue(sort_key=RadarrSortKeys.TIMELEFT) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = radarr_mock_client.get_queue(sort_dir=PyarrSortDirection.DEFAULT) assert False + +@pytest.mark.usefixtures +@responses.activate +def test_get_queue_details(radarr_mock_client: RadarrAPI): responses.add( - responses.DELETE, - "https://127.0.0.1:7878/api/v3/moviefile/bulk", + responses.GET, + "https://127.0.0.1:7878/api/v3/queue/details", headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), + body=load_fixture("radarr/queue_details.json"), status=200, + match_querystring=True, ) - data = radarr_client.del_movie_file(id_=[1, 2, 3]) - assert isinstance(data, dict) - + data = radarr_mock_client.get_queue_details() + assert isinstance(data, list) -@pytest.mark.usefixtures -def test_get_movie_history(responses, radarr_client): responses.add( responses.GET, - "https://127.0.0.1:7878/api/v3/history/movie?movieId=1", + "https://127.0.0.1:7878/api/v3/queue/details?movieId=1&includeMovie=True", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_history.json"), + body=load_fixture("radarr/queue_details.json"), status=200, match_querystring=True, ) - data = radarr_client.get_movie_history(id_=1) + data = radarr_mock_client.get_queue_details(id_=1, include_movie=True) assert isinstance(data, list) + +@pytest.mark.usefixtures +@responses.activate +def test_import_movies(radarr_mock_client: RadarrAPI): + responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/history/movie?movieId=1&eventType=unknown", + responses.POST, + "https://127.0.0.1:7878/api/v3/movie/import", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_history.json"), + body=load_fixture("radarr/movie_import.json"), status=200, match_querystring=True, ) - data = radarr_client.get_movie_history(id_=1, event_type=RadarrEventType.UNKNOWN) + data = radarr_mock_client.import_movies( + data=json.loads(load_fixture("radarr/movie_import.json")) + ) assert isinstance(data, list) @pytest.mark.usefixtures -def test_get_blocklist_by_movie_id(responses, radarr_client): +@responses.activate +def test_get_movie_files_by_movie_id(radarr_mock_client: RadarrAPI): responses.add( responses.GET, - "https://127.0.0.1:7878/api/v3/blocklist/movie?movieId=1", + "https://127.0.0.1:7878/api/v3/moviefile?movieId=1", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/movie_blocklist.json"), + body=load_fixture("radarr/moviefiles.json"), status=200, match_querystring=True, ) - data = radarr_client.get_blocklist_by_movie_id(id_=1) + data = radarr_mock_client.get_movie_files_by_movie_id(id_=1) assert isinstance(data, list) @pytest.mark.usefixtures -def test_get_queue(responses, radarr_client): +@responses.activate +def test_get_movie_file(radarr_mock_client: RadarrAPI): responses.add( responses.GET, - "https://127.0.0.1:7878/api/v3/queue", + "https://127.0.0.1:7878/api/v3/moviefile/1", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/queue.json"), + body=load_fixture("radarr/moviefile.json"), status=200, match_querystring=True, ) - data = radarr_client.get_queue() + data = radarr_mock_client.get_movie_file(id_=1) assert isinstance(data, dict) responses.add( responses.GET, - "https://127.0.0.1:7878/api/v3/queue?page=1&pageSize=20&sortKey=timeleft&sortDirection=default&includeUnknownMovieItems=False", + "https://127.0.0.1:7878/api/v3/moviefile?movieFileIds=1&movieFileIds=2&movieFileIds=3&movieFileIds=4", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/queue.json"), + body=load_fixture("radarr/moviefiles.json"), status=200, match_querystring=True, ) - data = radarr_client.get_queue( - page=1, - page_size=20, - sort_key=RadarrSortKeys.TIMELEFT, - sort_dir=PyarrSortDirection.DEFAULT, - include_unknown_movie_items=False, + data = radarr_mock_client.get_movie_file(id_=[1, 2, 3, 4]) + assert isinstance(data, list) + + +def test_get_indexer(radarr_client: RadarrAPI): + data = radarr_client.get_indexer() + assert isinstance(data, list) + + +#### DELETES MUST BE LAST + + +def test_del_download_client(): + return NotImplemented + + +def test_del_tag(radarr_client: RadarrAPI): + tags = radarr_client.get_tag() + data = radarr_client.del_tag(tags[0]["id"]) + assert data.status_code == 200 + + +def test_del_movie(radarr_client: RadarrAPI): + + movie = radarr_client.get_movie() + + data = radarr_client.del_movie( + movie[0]["id"], delete_files=True, add_exclusion=True ) + assert data.status_code == 200 + + movies = radarr_client.get_movie() + movie_ids = [movie["id"] for movie in movies] + print(movie_ids) + data = radarr_client.del_movie(id_=movie_ids, delete_files=True, add_exclusion=True) assert isinstance(data, dict) - with contextlib.suppress(PyarrMissingArgument): - data = radarr_client.get_queue(sort_key=RadarrSortKeys.TIMELEFT) - assert False - with contextlib.suppress(PyarrMissingArgument): - data = radarr_client.get_queue(sort_dir=PyarrSortDirection.DEFAULT) + with contextlib.suppress(PyarrResourceNotFound): + data = radarr_client.del_movie(999) assert False @pytest.mark.usefixtures -def test_get_queue_details(responses, radarr_client): +@responses.activate +def test_del_movies(radarr_mock_client: RadarrAPI): responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/queue/details", + responses.DELETE, + "https://127.0.0.1:7878/api/v3/movie/editor", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/queue_details.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) - data = radarr_client.get_queue_details() - assert isinstance(data, list) + del_data = {"movieIds": [0], "deleteFIles": True, "addImportExclusion": True} + data = radarr_mock_client.del_movies(data=del_data) + assert isinstance(data, dict) + +@pytest.mark.usefixtures +@responses.activate +def test_del_blocklist(radarr_mock_client: RadarrAPI): responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/queue/details?movieId=1&includeMovie=True", + responses.DELETE, + "https://127.0.0.1:7878/api/v3/blocklist/1", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/queue_details.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) - data = radarr_client.get_queue_details(id_=1, include_movie=True) - assert isinstance(data, list) + data = radarr_mock_client.del_blocklist(id_=1) + assert isinstance(data, dict) @pytest.mark.usefixtures -def test_get_queue_status(responses, radarr_client): +@responses.activate +def test_del_blocklist_bulk(radarr_mock_client: RadarrAPI): responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/queue/status", + responses.DELETE, + "https://127.0.0.1:7878/api/v3/blocklist/bulk", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/queue_status.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) - data = radarr_client.get_queue_status() + data = radarr_mock_client.del_blocklist_bulk(ids=[1, 2, 3]) assert isinstance(data, dict) @pytest.mark.usefixtures -def test_del_queue_bulk(responses, radarr_client): +@responses.activate +def test_del_movie_file(radarr_mock_client: RadarrAPI): responses.add( responses.DELETE, - "https://127.0.0.1:7878/api/v3/queue/bulk", + "https://127.0.0.1:7878/api/v3/moviefile/1", headers={"Content-Type": "application/json"}, body=load_fixture("common/delete.json"), status=200, + match_querystring=True, ) - data = radarr_client.del_queue_bulk( - id_=[1, 2, 3], remove_from_client=True, blocklist=True - ) + data = radarr_mock_client.del_movie_file(id_=1) assert isinstance(data, dict) - -@pytest.mark.usefixtures -def test_get_indexer(responses, radarr_client): responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/indexer", + responses.DELETE, + "https://127.0.0.1:7878/api/v3/moviefile/999", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/indexer_all.json"), - status=200, - match_querystring=True, + status=404, ) - data = radarr_client.get_indexer() - assert isinstance(data, list) + with contextlib.suppress(PyarrResourceNotFound): + data = radarr_mock_client.del_movie_file(id_=999) + assert False responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/indexer/1", + responses.DELETE, + "https://127.0.0.1:7878/api/v3/moviefile/bulk", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/indexer.json"), + body=load_fixture("common/delete.json"), status=200, - match_querystring=True, ) - data = radarr_client.get_indexer(id_=1) + data = radarr_mock_client.del_movie_file(id_=[1, 2, 3]) assert isinstance(data, dict) @pytest.mark.usefixtures -def test_upd_indexer(responses, radarr_client): +@responses.activate +def test_del_queue_bulk(radarr_mock_client: RadarrAPI): responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/indexer/1", + responses.DELETE, + "https://127.0.0.1:7878/api/v3/queue/bulk?removeFromClient=True&blocklist=True", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/indexer.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) - data = radarr_client.get_indexer(1) + data = radarr_mock_client.del_queue_bulk( + id_=[1, 2, 3], remove_from_client=True, blocklist=True + ) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +@responses.activate +def test_del_queue(radarr_mock_client: RadarrAPI): responses.add( - responses.PUT, - "https://127.0.0.1:7878/api/v3/indexer/1", + responses.DELETE, + "https://127.0.0.1:7878/api/v3/queue/1?removeFromClient=True&blocklist=True", headers={"Content-Type": "application/json"}, - body=load_fixture("radarr/indexer.json"), - status=202, + body=load_fixture("common/delete.json"), + status=200, match_querystring=True, ) - data = radarr_client.upd_indexer(1, data) + + data = radarr_mock_client.del_queue(id_=1, remove_from_client=True, blocklist=True) assert isinstance(data, dict) @pytest.mark.usefixtures -def test_del_indexer(responses, radarr_client): +@responses.activate +def test_del_indexer(radarr_mock_client: RadarrAPI): responses.add( responses.DELETE, "https://127.0.0.1:7878/api/v3/indexer/1", @@ -704,7 +1056,7 @@ def test_del_indexer(responses, radarr_client): status=200, match_querystring=True, ) - data = radarr_client.del_indexer(id_=1) + data = radarr_mock_client.del_indexer(id_=1) assert isinstance(data, dict) responses.add( @@ -714,72 +1066,50 @@ def test_del_indexer(responses, radarr_client): status=404, ) with contextlib.suppress(PyarrResourceNotFound): - data = radarr_client.del_indexer(id_=999) + data = radarr_mock_client.del_indexer(id_=999) assert False @pytest.mark.usefixtures -def test_post_command(responses, radarr_client): +@responses.activate +def test_force_grab_queue_item(radarr_mock_client: RadarrAPI): + # TODO: get filled out fixture responses.add( responses.POST, - "https://127.0.0.1:7878/api/v3/command", + "https://127.0.0.1:7878/api/v3/queue/grab/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/command.json"), + body=load_fixture("common/blank_dict.json"), status=201, match_querystring=True, ) - - data = radarr_client.post_command(name=RadarrCommands.DOWNLOADED_MOVIES_SCAN) - assert isinstance(data, dict) - data = radarr_client.post_command(RadarrCommands.DOWNLOADED_MOVIES_SCAN, clientId=1) - assert isinstance(data, dict) - data = radarr_client.post_command(RadarrCommands.RENAME_FILES) - assert isinstance(data, dict) - data = radarr_client.post_command(RadarrCommands.RENAME_FILES, files=[1, 2, 3]) - assert isinstance(data, dict) - data = radarr_client.post_command( - RadarrCommands.DOWNLOADED_MOVIES_SCAN, path="/path" - ) - assert isinstance(data, dict) - data = radarr_client.post_command(RadarrCommands.REFRESH_MOVIE, movieId=1) - assert isinstance(data, dict) - data = radarr_client.post_command(RadarrCommands.RENAME_MOVIE, movieId=1) - assert isinstance(data, dict) - data = radarr_client.post_command(RadarrCommands.RESCAN_MOVIE, movieId=1) - assert isinstance(data, dict) - data = radarr_client.post_command(RadarrCommands.RESCAN_MOVIE, movieId=1) - assert isinstance(data, dict) - data = radarr_client.post_command(RadarrCommands.MISSING_MOVIES_SEARCH) - assert isinstance(data, dict) - data = radarr_client.post_command(RadarrCommands.BACKUP) + data = radarr_mock_client.force_grab_queue_item(id_=1) assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_get_custom_filter(responses, radarr_client): - # TODO: get filled out fixture - responses.add( - responses.GET, - "https://127.0.0.1:7878/api/v3/customfilter", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/blank_list.json"), - status=201, - match_querystring=True, - ) - data = radarr_client.get_custom_filter() - assert isinstance(data, list) +def test_del_root_folder(radarr_client: RadarrAPI): + root_folders = radarr_client.get_root_folder() -@pytest.mark.usefixtures -def test_force_grab_queue_item(responses, radarr_client): - # TODO: get filled out fixture - responses.add( - responses.POST, - "https://127.0.0.1:7878/api/v3/queue/grab/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/blank_dict.json"), - status=201, - match_querystring=True, - ) - data = radarr_client.force_grab_queue_item(id_=1) - assert isinstance(data, dict) + # Check folder can be deleted + data = radarr_client.del_root_folder(root_folders[0]["id"]) + assert data.status_code == 200 + + # Check that none existant root folder doesnt throw error + data = radarr_client.del_root_folder(999) + assert data.status_code == 200 + + +def test_del_quality_profile(radarr_client: RadarrAPI): + + quality_profiles = radarr_client.get_quality_profile() + + for profile in quality_profiles: + if profile["name"] == "Testing": + + # Check folder can be deleted + data = radarr_client.del_quality_profile(profile["id"]) + assert data.status_code == 200 + + # Check that none existant root folder doesnt throw error + data = radarr_client.del_quality_profile(999) + assert data.status_code == 200 diff --git a/tests/test_readarr.py b/tests/test_readarr.py index 420a79b..4f671b8 100644 --- a/tests/test_readarr.py +++ b/tests/test_readarr.py @@ -1,6 +1,7 @@ import contextlib import pytest +import responses from pyarr.exceptions import ( PyarrMissingArgument, @@ -10,275 +11,62 @@ from pyarr.models.common import PyarrSortDirection from pyarr.models.readarr import ( ReadarrAuthorMonitor, - ReadarrBookTypes, ReadarrCommands, + ReadarrSearchType, ReadarrSortKeys, ) - -from tests import load_fixture - - -@pytest.mark.usefixtures -def test_lookup(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/search?term=goodreads%3A123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/lookup.json"), - status=200, - match_querystring=True, - ) - data = readarr_client.lookup(term="goodreads:123456") - assert isinstance(data, list) - - -@pytest.mark.usefixtures -def test_lookup_book(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/book/lookup?term=goodreads%3A123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/lookup_book.json"), - status=200, - match_querystring=True, - ) - data = readarr_client.lookup_book(term="goodreads:123456") - assert isinstance(data, list) +from pyarr.readarr import ReadarrAPI + +from tests import ( + READARR_ASIN_ID, + READARR_AUTHOR_ID, + READARR_AUTHOR_TERM, + READARR_GOODREADS_ID, + READARR_ISBN_ID, + load_fixture, +) -@pytest.mark.usefixtures -def test_lookup_author(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/author/lookup?term=j.k. rowling", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/lookup_author.json"), - status=200, - match_querystring=True, - ) - data = readarr_client.lookup_author(term="j.k. rowling") - assert isinstance(data, list) +def test_add_root_folder(readarr_client: ReadarrAPI): + qual_profile = readarr_client.get_quality_profile() + meta_profile = readarr_client.get_metadata_profile() -@pytest.mark.usefixtures -def test__book_json(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/book/lookup?term=goodreads%3A123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/lookup_book.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/book/lookup?term=asin%3A123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/lookup_book.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/book/lookup?term=isbn%3A123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/lookup_book.json"), - status=200, - match_querystring=True, - ) - - data = readarr_client._book_json( - id_="123456", - book_id_type=ReadarrBookTypes.GOODREADS, - root_dir="/", - quality_profile_id=1, - metadata_profile_id=1, - monitored=False, - search_for_new_book=True, - author_monitor=ReadarrAuthorMonitor.EXISTING, - author_search_for_missing_books=False, - ) - assert isinstance(data, dict) - assert data["author"]["metadataProfileId"] == 1 - assert data["author"]["qualityProfileId"] == 1 - assert data["author"]["rootFolderPath"] == "/" - assert data["author"]["addOptions"]["monitor"] == "existing" - assert data["author"]["addOptions"]["searchForMissingBooks"] == False - assert data["monitored"] == False - assert data["author"]["manualAdd"] == True - assert data["addOptions"]["searchForNewBook"] == True - - data = readarr_client._book_json( - id_="123456", - book_id_type=ReadarrBookTypes.ASIN, - root_dir="/", - quality_profile_id=1, - metadata_profile_id=1, - monitored=False, - search_for_new_book=True, - author_monitor=ReadarrAuthorMonitor.EXISTING, - author_search_for_missing_books=False, + data = readarr_client.add_root_folder( + name="test", + path="/defaults/", + default_quality_profile_id=qual_profile[0]["id"], + default_metadata_profile_id=meta_profile[0]["id"], ) assert isinstance(data, dict) - data = readarr_client._book_json( - id_="123456", - book_id_type=ReadarrBookTypes.ISBN, - root_dir="/", - quality_profile_id=1, - metadata_profile_id=1, - monitored=False, - search_for_new_book=True, - author_monitor=ReadarrAuthorMonitor.EXISTING, - author_search_for_missing_books=False, - ) - assert isinstance(data, dict) +def test_get_root_folder(readarr_client: ReadarrAPI): -@pytest.mark.usefixtures -def test__book_json_2(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/qualityprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/blank_list.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/metadataprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/blank_list.json"), - status=200, - match_querystring=True, - ) - with contextlib.suppress(PyarrMissingProfile): - data = readarr_client._book_json( - id_="123456", book_id_type=ReadarrBookTypes.ISBN, root_dir="/" - ) - assert False - - with contextlib.suppress(PyarrMissingProfile): - data = readarr_client._book_json( - id_="123456", - book_id_type=ReadarrBookTypes.ISBN, - root_dir="/", - quality_profile_id=1, - ) - assert False - - -@pytest.mark.usefixtures -def test__author_json(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/author/lookup?term=J.K.+Rowling", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/lookup_author.json"), - status=200, - match_querystring=True, - ) + data = readarr_client.get_root_folder() + assert isinstance(data, list) - data = readarr_client._author_json( - term="J.K. Rowling", - root_dir="/", - quality_profile_id=1, - metadata_profile_id=1, - monitored=False, - author_monitor=ReadarrAuthorMonitor.EXISTING, - search_for_missing_books=False, - ) + data = readarr_client.get_root_folder(data[0]["id"]) assert isinstance(data, dict) - assert data["metadataProfileId"] == 1 - assert data["qualityProfileId"] == 1 - assert data["rootFolderPath"] == "/" - assert data["addOptions"]["monitor"] == "existing" - assert data["addOptions"]["searchForMissingBooks"] == False - assert data["monitored"] == False - - -@pytest.mark.usefixtures -def test__author_json_2(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/qualityprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/blank_list.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/metadataprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/blank_list.json"), - status=200, - match_querystring=True, - ) - with contextlib.suppress(PyarrMissingProfile): - data = readarr_client._author_json(term="J.K. Rowling", root_dir="/") - assert False - - with contextlib.suppress(PyarrMissingProfile): - data = readarr_client._author_json( - term="J.K. Rowling", - root_dir="/", - quality_profile_id=1, - ) - assert False -@pytest.mark.usefixtures -def test_get_command(responses, readarr_client): +def test_get_command(readarr_client: ReadarrAPI): # No args - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/command", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/command_all.json"), - status=200, - match_querystring=True, - ) data = readarr_client.get_command() assert isinstance(data, list) # When an ID is supplied - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/command/4327826", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/command.json"), - status=200, - match_querystring=True, - ) - data = readarr_client.get_command(4327826) + data = readarr_client.get_command(data[0]["id"]) assert isinstance(data, dict) # when an incorrect ID is supplied, not found response - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/command/4321", - headers={"Content-Type": "application/json"}, - status=404, - match_querystring=True, - ) with contextlib.suppress(PyarrResourceNotFound): data = readarr_client.get_command(4321) assert False -@pytest.mark.usefixtures -def test_post_command(responses, readarr_client): - responses.add( - responses.POST, - "https://127.0.0.1:8787/api/v1/command", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/command.json"), - status=201, - match_querystring=True, - ) +def test_post_command(readarr_client: ReadarrAPI): data = readarr_client.post_command(name=ReadarrCommands.APP_UPDATE_CHECK) assert isinstance(data, dict) @@ -306,29 +94,154 @@ def test_post_command(responses, readarr_client): assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_get_missing(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/wanted/missing", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/wanted_missing.json"), - status=200, - match_querystring=True, +def test_get_quality_profile(readarr_client: ReadarrAPI): + + data = readarr_client.get_quality_profile() + assert isinstance(data, list) + + data = readarr_client.get_quality_profile(data[0]["id"]) + assert isinstance(data, dict) + + +def test_lookup(readarr_client: ReadarrAPI): + data = readarr_client.lookup(term=f"goodreads:{READARR_GOODREADS_ID}") + assert isinstance(data, list) + + +def test_lookup_book(readarr_client: ReadarrAPI): + data = readarr_client.lookup_book(term=f"goodreads:{READARR_GOODREADS_ID}") + assert isinstance(data, list) + + +def test_lookup_author(readarr_client: ReadarrAPI): + data = readarr_client.lookup_author(term=READARR_AUTHOR_TERM) + assert isinstance(data, list) + + +def test_add_book(readarr_client: ReadarrAPI): + qual_profile = readarr_client.get_quality_profile() + meta_profile = readarr_client.get_metadata_profile() + + items = readarr_client.lookup( + f"{ReadarrSearchType.GOODREADS}:{READARR_GOODREADS_ID}" ) - data = readarr_client.get_missing() + for item in items: + if "book" in item: + book = item["book"] + data = readarr_client.add_book( + book=book, + root_dir="/defaults/", + quality_profile_id=qual_profile[0]["id"], + metadata_profile_id=meta_profile[0]["id"], + ) + break assert isinstance(data, dict) + assert data["title"] == book["title"] - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/wanted/missing?page=2&pageSize=20&sortKey=Books.Id&sortDirection=ascending", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/wanted_missing.json"), - status=200, - match_querystring=True, + +def test_create_tag(readarr_client: ReadarrAPI): + + data = readarr_client.create_tag(label="test") + assert isinstance(data, dict) + assert data["label"] == "test" + + +def test_get_tag(readarr_client: ReadarrAPI): + data = readarr_client.get_tag() + assert isinstance(data, list) + + data = readarr_client.get_tag(id_=data[0]["id"]) + assert isinstance(data, dict) + + +def test_add_metadata_profile(readarr_client: ReadarrAPI): + data = readarr_client.add_metadata_profile( + name="Standard", + min_popularity=0, + skip_missing_date=False, + skip_missing_isbn=False, + skip_parts_and_sets=False, + skip_series_secondary=False, + allowed_languages="eng", + min_pages=0, ) + assert isinstance(data, dict) + assert data["name"] == "Standard" + + +def test_add_quality_profile(readarr_client: ReadarrAPI): + + data = readarr_client.add_quality_profile( + name="eBook", + upgrades_allowed=False, + cutoff=4, + items=[ + { + "quality": {"id": 0, "name": "Unknown Text"}, + "items": [], + "allowed": False, + }, + {"quality": {"id": 1, "name": "PDF"}, "items": [], "allowed": False}, + {"quality": {"id": 2, "name": "MOBI"}, "items": [], "allowed": True}, + {"quality": {"id": 3, "name": "EPUB"}, "items": [], "allowed": True}, + {"quality": {"id": 4, "name": "AZW3"}, "items": [], "allowed": True}, + { + "quality": {"id": 13, "name": "Unknown Audio"}, + "items": [], + "allowed": False, + }, + {"quality": {"id": 10, "name": "MP3"}, "items": [], "allowed": False}, + {"quality": {"id": 12, "name": "M4B"}, "items": [], "allowed": False}, + {"quality": {"id": 11, "name": "FLAC"}, "items": [], "allowed": False}, + ], + min_format_score=0, + cutoff_format_score=0, + ) + assert isinstance(data, dict) + assert data["name"] == "eBook" + + +def test_add_release_profile(readarr_client: ReadarrAPI): + tags = readarr_client.get_tag() + + data = readarr_client.add_release_profile( + ignored=["testing"], + required=["test2"], + indexerId=0, + tags=[tags[0]["id"]], + enabled=False, + includePreferredWhenRenaming=True, + ) + assert isinstance(data, dict) + + +def test_add_delay_profile(readarr_client: ReadarrAPI): + tags = readarr_client.get_tag() + data = readarr_client.add_delay_profile( + tags=[tags[0]["id"]], + preferredProtocol="usenet", + usenetDelay=10, + torrentDelay=10, + bypassIfHighestQuality=True, + bypassIfAboveCustomFormatScore=True, + minimumCustomFormatScore=10, + ) + assert isinstance(data, dict) + assert data["preferredProtocol"] == "usenet" + assert data["usenetDelay"] == 10 + assert data["torrentDelay"] == 10 + assert data["bypassIfHighestQuality"] == True + assert data["bypassIfAboveCustomFormatScore"] == True + assert data["minimumCustomFormatScore"] == 10 + + +@pytest.mark.usefixtures +def test_get_missing(readarr_client: ReadarrAPI): + data = readarr_client.get_missing() + assert isinstance(data, dict) + data = readarr_client.get_missing( - page=2, + page=1, page_size=20, sort_key=ReadarrSortKeys.BOOK_ID, sort_dir=PyarrSortDirection.ASC, @@ -344,28 +257,12 @@ def test_get_missing(responses, readarr_client): @pytest.mark.usefixtures -def test_get_cutoff(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/wanted/cutoff", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/wanted_cutoff.json"), - status=200, - match_querystring=True, - ) +def test_get_cutoff(readarr_client: ReadarrAPI): data = readarr_client.get_cutoff() assert isinstance(data, dict) - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/wanted/cutoff?page=2&pageSize=20&sortKey=Books.Id&sortDirection=ascending&monitored=True", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/wanted_cutoff.json"), - status=200, - match_querystring=True, - ) data = readarr_client.get_cutoff( - page=2, + page=1, page_size=20, sort_key=ReadarrSortKeys.BOOK_ID, sort_dir=PyarrSortDirection.ASC, @@ -382,461 +279,274 @@ def test_get_cutoff(responses, readarr_client): @pytest.mark.usefixtures -def test_get_queue(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/queue", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/queue.json"), - status=200, - match_querystring=True, - ) - data = readarr_client.get_queue() +def test_get_book(readarr_client: ReadarrAPI): + + data = readarr_client.get_book() + assert isinstance(data, list) + + data = readarr_client.get_book(id_=data[0]["id"]) assert isinstance(data, dict) - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/queue?page=2&pageSize=20&sortKey=Books.Id&sortDirection=ascending&includeUnknownAuthorItems=True&includeAuthor=True&includeBook=True", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/queue.json"), - status=200, - match_querystring=True, - ) - data = readarr_client.get_queue( - page=2, - page_size=20, - sort_key=ReadarrSortKeys.BOOK_ID, - sort_dir=PyarrSortDirection.ASC, - unknown_authors=True, - include_author=True, - include_book=True, - ) + +@pytest.mark.usefixtures +def test_upd_book(readarr_client: ReadarrAPI): + + book = readarr_client.get_book() + + data = readarr_client.upd_book(id_=book[0]["id"], data=book[0]) assert isinstance(data, dict) - with contextlib.suppress(PyarrMissingArgument): - data = readarr_client.get_queue(sort_key=ReadarrSortKeys.TIMELEFT) - assert False - with contextlib.suppress(PyarrMissingArgument): - data = readarr_client.get_queue(sort_dir=PyarrSortDirection.DEFAULT) - assert False + +@pytest.mark.usefixtures +def test_add_author(readarr_client: ReadarrAPI): + qual_profile = readarr_client.get_quality_profile() + meta_profile = readarr_client.get_metadata_profile() + + items = readarr_client.lookup(f"{ReadarrSearchType.AUTHOR}:{READARR_AUTHOR_ID}") + for item in items: + if "author" in item: + author = item["author"] + data = readarr_client.add_author( + author=author, + root_dir="/defaults/", + quality_profile_id=qual_profile[0]["id"], + metadata_profile_id=meta_profile[0]["id"], + ) + break + if item == items[-1]: + assert False + + assert isinstance(data, dict) @pytest.mark.usefixtures -def test_get_metadata_profile(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/metadataprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/metadataprofile_all.json"), - status=200, - match_querystring=True, - ) - data = readarr_client.get_metadata_profile() - assert isinstance(data, list) +def test_upd_author(readarr_client: ReadarrAPI): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/metadataprofile/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/metadataprofile.json"), - status=200, - match_querystring=True, - ) - data = readarr_client.get_metadata_profile(id_=1) + author = readarr_client.get_author() + author[0]["monitored"] = True + + data = readarr_client.upd_author(id_=author[0]["id"], data=author[0]) assert isinstance(data, dict) + assert data["monitored"] == True @pytest.mark.usefixtures -def test_get_delay_profile(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/delayprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/delayprofile_all.json"), - status=200, - match_querystring=True, - ) +def test_get_author(readarr_client: ReadarrAPI): - data = readarr_client.get_delay_profile() + data = readarr_client.get_author() assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/delayprofile/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/delayprofile.json"), - status=200, - match_querystring=True, - ) - data = readarr_client.get_delay_profile(id_=1) + data = readarr_client.get_author(id_=data[0]["id"]) assert isinstance(data, dict) @pytest.mark.usefixtures -def test_get_release_profile(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/releaseprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/releaseprofile_all.json"), - status=200, - match_querystring=True, - ) +def test_get_metadata_profile(readarr_client: ReadarrAPI): - data = readarr_client.get_release_profile() + data = readarr_client.get_metadata_profile() assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/releaseprofile/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/releaseprofile.json"), - status=200, - match_querystring=True, - ) - data = readarr_client.get_release_profile(id_=1) + data = readarr_client.get_metadata_profile(id_=data[0]["id"]) assert isinstance(data, dict) @pytest.mark.usefixtures -def test_get_book(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/book", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/book_all.json"), - status=200, - match_querystring=True, - ) +def test_get_delay_profile(readarr_client: ReadarrAPI): - data = readarr_client.get_book() + data = readarr_client.get_delay_profile() assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/book/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/book.json"), - status=200, - match_querystring=True, - ) - data = readarr_client.get_book(id_=1) + data = readarr_client.get_delay_profile(id_=data[0]["id"]) assert isinstance(data, dict) @pytest.mark.usefixtures -def test_add_book(responses, readarr_client): - responses.add( - responses.POST, - "https://127.0.0.1:8787/api/v1/book", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/book.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/book/lookup?term=goodreads%3A123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/lookup_book.json"), - status=200, - match_querystring=True, - ) +def test_get_release_profile(readarr_client: ReadarrAPI): - data = readarr_client.add_book( - id_="123456", - book_id_type=ReadarrBookTypes.GOODREADS, - root_dir="/books/", - quality_profile_id=1, - metadata_profile_id=1, - ) + data = readarr_client.get_release_profile() + assert isinstance(data, list) + + data = readarr_client.get_release_profile(id_=data[0]["id"]) assert isinstance(data, dict) @pytest.mark.usefixtures -def test_add_book_2(responses, readarr_client): +@responses.activate +def test_get_queue(readarr_mock_client: ReadarrAPI): + ## Using mock to avoid need to have actual downloads + responses.add( responses.GET, - "https://127.0.0.1:8787/api/v1/qualityprofile", + "https://127.0.0.1:8787/api/v1/queue", headers={"Content-Type": "application/json"}, - body=load_fixture("common/blank_list.json"), + body=load_fixture("readarr/queue.json"), status=200, match_querystring=True, ) + data = readarr_mock_client.get_queue() + assert isinstance(data, dict) + responses.add( responses.GET, - "https://127.0.0.1:8787/api/v1/metadataprofile", + "https://127.0.0.1:8787/api/v1/queue?page=2&pageSize=20&sortKey=Books.Id&sortDirection=ascending&includeUnknownAuthorItems=True&includeAuthor=True&includeBook=True", headers={"Content-Type": "application/json"}, - body=load_fixture("common/blank_list.json"), + body=load_fixture("readarr/queue.json"), status=200, match_querystring=True, ) - with contextlib.suppress(PyarrMissingProfile): - data = readarr_client.add_book( - id_="123456", book_id_type=ReadarrBookTypes.ISBN, root_dir="/" - ) - assert False + data = readarr_mock_client.get_queue( + page=2, + page_size=20, + sort_key=ReadarrSortKeys.BOOK_ID, + sort_dir=PyarrSortDirection.ASC, + unknown_authors=True, + include_author=True, + include_book=True, + ) + assert isinstance(data, dict) - with contextlib.suppress(PyarrMissingProfile): - data = readarr_client.add_book( - id_="123456", - book_id_type=ReadarrBookTypes.ISBN, - root_dir="/", - quality_profile_id=1, - ) + with contextlib.suppress(PyarrMissingArgument): + data = readarr_mock_client.get_queue(sort_key=ReadarrSortKeys.TIMELEFT) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = readarr_mock_client.get_queue(sort_dir=PyarrSortDirection.DEFAULT) assert False @pytest.mark.usefixtures -def test_upd_book(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/book/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/book.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.PUT, - "https://127.0.0.1:8787/api/v1/book/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/book.json"), - status=200, - match_querystring=True, - ) - book = readarr_client.get_book(id_=1) +def test_get_log_file(readarr_client: ReadarrAPI): - data = readarr_client.upd_book(id_=1, data=book) - assert isinstance(data, dict) + data = readarr_client.get_log_file() + assert isinstance(data, list) @pytest.mark.usefixtures -def test_del_book(responses, readarr_client): - responses.add( - responses.DELETE, - "https://127.0.0.1:8787/api/v1/book/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = readarr_client.del_book(1) - assert isinstance(data, dict) - responses.add( - responses.DELETE, - "https://127.0.0.1:8787/api/v1/book/1?deleteFiles=True&addImportListExclusion=True", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = readarr_client.del_book(id_=1, delete_files=True, import_list_exclusion=True) +def test_get_metadata_provider(readarr_client: ReadarrAPI): + + data = readarr_client.get_metadata_provider() assert isinstance(data, dict) @pytest.mark.usefixtures -def test_get_author(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/author", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/author_all.json"), - status=200, - match_querystring=True, - ) +def test_upd_metadata_provider(readarr_client: ReadarrAPI): - data = readarr_client.get_author() - assert isinstance(data, list) - - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/author/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/author.json"), - status=200, - match_querystring=True, - ) - data = readarr_client.get_author(id_=1) + provider = readarr_client.get_metadata_provider() + data = readarr_client.upd_metadata_provider(data=provider) assert isinstance(data, dict) +# DELETE ACTIONS MUST BE LAST + + @pytest.mark.usefixtures -def test_add_author(responses, readarr_client): - responses.add( - responses.POST, - "https://127.0.0.1:8787/api/v1/author", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/author.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/author/lookup?term=J.k+Rowling", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/lookup_author.json"), - status=200, - match_querystring=True, - ) +def test_del_book(readarr_client: ReadarrAPI): + book = readarr_client.get_book() - data = readarr_client.add_author( - term="J.k Rowling", - root_dir="/books/", - quality_profile_id=1, - metadata_profile_id=1, + data = readarr_client.del_book( + book[0]["id"], delete_files=True, import_list_exclusion=True ) - assert isinstance(data, dict) + assert data.status_code == 200 + + # Check that none existant tag throws error + with contextlib.suppress(PyarrResourceNotFound): + data = readarr_client.del_book(999) + assert False @pytest.mark.usefixtures -def test_add_author_2(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/qualityprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/blank_list.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/metadataprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/blank_list.json"), - status=200, - match_querystring=True, - ) - with contextlib.suppress(PyarrMissingProfile): - data = readarr_client.add_author(term="123456", root_dir="/") - assert False +def test_del_author(readarr_client: ReadarrAPI): + authors = readarr_client.get_author() - with contextlib.suppress(PyarrMissingProfile): - data = readarr_client.add_author( - term="123456", - root_dir="/", - quality_profile_id=1, + for author in authors: + data = readarr_client.del_author( + author["id"], delete_files=True, import_list_exclusion=True ) + assert data.status_code == 200 + + # Check that none existant tag throws error + with contextlib.suppress(PyarrResourceNotFound): + data = readarr_client.del_author(999) assert False @pytest.mark.usefixtures -def test_upd_author(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/author/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/author.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.PUT, - "https://127.0.0.1:8787/api/v1/author/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/author.json"), - status=200, - match_querystring=True, - ) - author = readarr_client.get_author(id_=1) +def test_del_tag(readarr_client: ReadarrAPI): + tag = readarr_client.get_tag() - data = readarr_client.upd_author(id_=1, data=author) + data = readarr_client.del_tag(tag[0]["id"]) assert isinstance(data, dict) + # Check that none existant tag throws error + with contextlib.suppress(PyarrResourceNotFound): + data = readarr_client.del_tag(999) + assert False -@pytest.mark.usefixtures -def test_del_author(responses, readarr_client): - responses.add( - responses.DELETE, - "https://127.0.0.1:8787/api/v1/author/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = readarr_client.del_author(1) - assert isinstance(data, dict) - responses.add( - responses.DELETE, - "https://127.0.0.1:8787/api/v1/author/1?deleteFiles=True&addImportListExclusion=True", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = readarr_client.del_author( - id_=1, delete_files=True, import_list_exclusion=True - ) - assert isinstance(data, dict) +def test_del_root_folder(readarr_client: ReadarrAPI): -@pytest.mark.usefixtures -def test_get_log_file(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/log/file", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/logfile_all.json"), - status=200, - match_querystring=True, - ) + root_folders = readarr_client.get_root_folder() - data = readarr_client.get_log_file() - assert isinstance(data, list) + # Check folder can be deleted + data = readarr_client.del_root_folder(root_folders[0]["id"]) + assert data.status_code == 200 + # Check that none existant doesnt throw error + with contextlib.suppress(PyarrResourceNotFound): + data = readarr_client.del_root_folder(999) + assert False -@pytest.mark.usefixtures -def test_add_root_folder(responses, readarr_client): - responses.add( - responses.POST, - "https://127.0.0.1:8787/api/v1/rootFolder", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/rootfolder.json"), - status=201, - match_querystring=True, - ) - data = readarr_client.add_root_folder( - name="test", - path="/path/to/folder", - default_quality_profile_id=1, - default_metadata_profile_id=1, - ) - assert isinstance(data, dict) +def test_del_quality_profile(readarr_client: ReadarrAPI): -@pytest.mark.usefixtures -def test_get_metadata_provider(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/config/metadataProvider", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/metadataprovider.json"), - status=200, - match_querystring=True, - ) + quality_profiles = readarr_client.get_quality_profile() - data = readarr_client.get_metadata_provider() - assert isinstance(data, dict) + for profile in quality_profiles: + if profile["name"] == "eBook": + # Check folder can be deleted + data = readarr_client.del_quality_profile(profile["id"]) + assert data.status_code == 200 -@pytest.mark.usefixtures -def test_upd_metadata_provider(responses, readarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8787/api/v1/config/metadataProvider", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/metadataprovider.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.PUT, - "https://127.0.0.1:8787/api/v1/config/metadataProvider", - headers={"Content-Type": "application/json"}, - body=load_fixture("readarr/metadataprovider.json"), - status=200, - match_querystring=True, - ) - provider = readarr_client.get_metadata_provider() - data = readarr_client.upd_metadata_provider(data=provider) - assert isinstance(data, dict) + # Check that none existant doesnt throw error + data = readarr_client.del_quality_profile(999) + assert data.status_code == 200 + + +def test_del_release_profile(readarr_client: ReadarrAPI): + + profile = readarr_client.get_release_profile() + + # Check folder can be deleted + data = readarr_client.del_release_profile(profile[0]["id"]) + assert data.status_code == 200 + + # Check that none existant doesnt throw error + data = readarr_client.del_release_profile(999) + assert data.status_code == 200 + + +def test_del_delay_profile(readarr_client: ReadarrAPI): + + profile = readarr_client.get_delay_profile() + + # Check folder can be deleted + data = readarr_client.del_delay_profile(profile[1]["id"]) + assert data.status_code == 200 + + # Check that none existant doesnt throw error + data = readarr_client.del_delay_profile(999) + assert data.status_code == 200 + + +def test_del_metadata_profile(readarr_client: ReadarrAPI): + + profiles = readarr_client.get_metadata_profile() + + for profile in profiles: + if profile["name"] == "Standard": + data = readarr_client.del_metadata_profile(profile["id"]) + assert data.status_code == 200 + + with contextlib.suppress(PyarrResourceNotFound): + data = readarr_client.del_metadata_profile(999) + assert False diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index e17e6b8..42eb26c 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -1,7 +1,9 @@ import contextlib from datetime import datetime +import random import pytest +import responses from pyarr.exceptions import ( PyarrMissingArgument, @@ -13,6 +15,7 @@ PyarrDownloadClientSchema, PyarrHistorySortKey, PyarrImportListSchema, + PyarrIndexerSchema, PyarrLogFilterKey, PyarrLogFilterValue, PyarrLogSortKey, @@ -21,24 +24,31 @@ PyarrTaskSortKey, ) from pyarr.models.sonarr import SonarrCommands, SonarrSortKey +from pyarr.sonarr import SonarrAPI -from tests import load_fixture +from tests import SONARR_TVDB, load_fixture -@pytest.mark.usefixtures -def test__series_json(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/series/lookup?term=tvdb%3A1234567", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/series_lookup.json"), - status=200, - match_querystring=True, - ) +def test_add_root_folder(sonarr_client: SonarrAPI): + + data = sonarr_client.add_root_folder(directory="/defaults") + assert isinstance(data, dict) + + +def test_get_root_folder(sonarr_client: SonarrAPI): + + data = sonarr_client.get_root_folder() + assert isinstance(data, list) + + data = sonarr_client.get_root_folder(data[0]["id"]) + assert isinstance(data, dict) + +def test__series_json(sonarr_client: SonarrAPI): data = sonarr_client._series_json( - tvdb_id=1234567, + tvdb_id=SONARR_TVDB, quality_profile_id=1, + language_profile_id=1, root_dir="/", season_folder=False, monitored=False, @@ -52,77 +62,31 @@ def test__series_json(responses, sonarr_client): assert data["qualityProfileId"] == 1 assert data["seasonFolder"] == False assert data["monitored"] == False - assert data["tvdbId"] == 1234567 + assert data["tvdbId"] == SONARR_TVDB + assert data["title"] == "Stranger Things" assert data["addOptions"]["ignoreEpisodesWithFiles"] == True assert data["addOptions"]["ignoreEpisodesWithoutFiles"] == True assert data["addOptions"]["searchForMissingEpisodes"] == True -@pytest.mark.usefixtures -def test_add_root_folder(responses, sonarr_client): - responses.add( - responses.POST, - "https://127.0.0.1:8989/api/v3/rootfolder", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/rootfolder.json"), - status=201, - match_querystring=True, - ) - data = sonarr_client.add_root_folder(directory="/path/to/folder") - assert isinstance(data, dict) - - -@pytest.mark.usefixtures -def test_get_command(responses, sonarr_client): +def test_get_command(sonarr_client: SonarrAPI): """Check get_command()""" # No args - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/command", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/command_all.json"), - status=200, - match_querystring=True, - ) data = sonarr_client.get_command() assert isinstance(data, list) # When an ID is supplied - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/command/4327826", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/command.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_command(4327826) + data = sonarr_client.get_command(data[0]["id"]) assert isinstance(data, dict) # when an incorrect ID is supplied, not found response - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/command/4321", - headers={"Content-Type": "application/json"}, - status=404, - match_querystring=True, - ) with contextlib.suppress(PyarrResourceNotFound): data = sonarr_client.get_command(4321) assert False -@pytest.mark.usefixtures -def test_post_command(responses, sonarr_client): - responses.add( - responses.POST, - "https://127.0.0.1:8989/api/v3/command", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/command.json"), - status=201, - match_querystring=True, - ) +def test_post_command(sonarr_client: SonarrAPI): data = sonarr_client.post_command(name=SonarrCommands.REFRESH_SERIES) assert isinstance(data, dict) @@ -152,253 +116,195 @@ def test_post_command(responses, sonarr_client): assert isinstance(data, dict) data = sonarr_client.post_command(SonarrCommands.BACKUP) assert isinstance(data, dict) - data = sonarr_client.post_command(SonarrCommands.MISSING_EPISODE_SEARCH) + assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_get_episode(responses, sonarr_client): - """Test getting episode""" - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/episode/0", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/episode.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_episode(0) +def test_get_quality_profile(sonarr_client: SonarrAPI): + + data = sonarr_client.get_quality_profile() + assert isinstance(data, list) + data = sonarr_client.get_quality_profile(data[0]["id"]) assert isinstance(data, dict) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/episode?seriesId=1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/episode_series.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_episode(1, True) + +def test_upd_quality_profile(sonarr_client: SonarrAPI): + + data = sonarr_client.get_quality_profile() assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/episode/999", - headers={"Content-Type": "application/json"}, - status=404, - match_querystring=True, - ) - with contextlib.suppress(PyarrResourceNotFound): - data = sonarr_client.get_episode(999) - assert False + data = sonarr_client.upd_quality_profile(id_=data[0]["id"], data=data) + assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_get_episodes_by_series_id(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/episode?seriesId=1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/episode_series.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_episodes_by_series_id(1) +def test_get_language_profile_schema(sonarr_client: SonarrAPI): + + data = sonarr_client.get_language_profile_schema() + assert isinstance(data, dict) + + +def test_get_language_profile(sonarr_client: SonarrAPI): + data = sonarr_client.get_language_profile() assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/episode?seriesId=999", - headers={"Content-Type": "application/json"}, - status=404, - match_querystring=True, - ) - with contextlib.suppress(PyarrResourceNotFound): - data = sonarr_client.get_episodes_by_series_id(999) + data = sonarr_client.get_language_profile(data[0]["id"]) + assert isinstance(data, dict) + + +def test_upd_language_profile(sonarr_client: SonarrAPI): + profile = sonarr_client.get_language_profile() + profile[0]["upgradeAllowed"] = False + data = sonarr_client.upd_language_profile(id_=profile[0]["id"], data=profile[0]) + assert isinstance(data, dict) + + +def test_lookup_series(sonarr_client: SonarrAPI): + + data = sonarr_client.lookup_series(id_=SONARR_TVDB) + assert isinstance(data, list) + + data = sonarr_client.lookup_series(term="Stranger Things") + assert isinstance(data, list) + + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.lookup_series() assert False -@pytest.mark.usefixtures -def test_get_episode_by_episode_id(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/episode/0", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/episode.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_episode_by_episode_id(0) +def test_lookup_series_by_tvdb_id(sonarr_client: SonarrAPI): - assert isinstance(data, dict) + data = sonarr_client.lookup_series_by_tvdb_id(SONARR_TVDB) + assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/episode/999", - headers={"Content-Type": "application/json"}, - status=404, - match_querystring=True, + with pytest.deprecated_call(): + sonarr_client.lookup_series_by_tvdb_id(SONARR_TVDB) + + +def test_add_series(sonarr_client: SonarrAPI): + + quality_profile = sonarr_client.get_quality_profile() + language_profile = sonarr_client.get_language_profile() + + data = sonarr_client.add_series( + tvdb_id=SONARR_TVDB, + quality_profile_id=quality_profile[0]["id"], + language_profile_id=language_profile[0]["id"], + root_dir="/defaults/", ) - with contextlib.suppress(PyarrResourceNotFound): - data = sonarr_client.get_episode_by_episode_id(999) + data = sonarr_client.add_series( + tvdb_id=81189, + quality_profile_id=quality_profile[0]["id"], + language_profile_id=language_profile[0]["id"], + root_dir="/defaults/", + ) + assert isinstance(data, dict) + + with contextlib.suppress(Exception): + data = sonarr_client.add_series( + tvdb_id=SONARR_TVDB, + quality_profile_id=quality_profile[0]["id"], + language_profile_id=language_profile[0]["id"], + root_dir="/defaults/", + ) assert False -@pytest.mark.usefixtures -def test_upd_episode(responses, sonarr_client): - responses.add( - responses.PUT, - "https://127.0.0.1:8989/api/v3/episode/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/episode_update.json"), - status=202, - match_querystring=True, - ) - payload = {"monitored": True} - data = sonarr_client.upd_episode(1, payload) +def test_get_series(sonarr_client: SonarrAPI): + + data = sonarr_client.get_series() + assert isinstance(data, list) + data = sonarr_client.get_series(data[0]["id"]) assert isinstance(data, dict) - assert data["monitored"] == True -@pytest.mark.usefixtures -def test_get_episode_files_by_series_id(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/episodefile?seriesId=1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/episodefile_series.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_episode_files_by_series_id(1) +def test_get_episode(sonarr_client: SonarrAPI): + """Test getting episode""" + series = sonarr_client.get_series() + + data = sonarr_client.get_episode(series[0]["id"], True) assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/episodefile?seriesId=999", - headers={"Content-Type": "application/json"}, - status=404, - match_querystring=True, - ) + data = sonarr_client.get_episode(data[0]["id"]) + assert isinstance(data, dict) + with contextlib.suppress(PyarrResourceNotFound): - data = sonarr_client.get_episode_files_by_series_id(999) + data = sonarr_client.get_episode(999) assert False -@pytest.mark.usefixtures -def test_get_episode_file(responses, sonarr_client): - """Test getting episode""" - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/episodefile/0", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/episodefile.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_episode_file(0) +def test_upd_series(sonarr_client: SonarrAPI): + series = sonarr_client.get_series() + + data = sonarr_client.upd_series(data=series[0]["id"]) assert isinstance(data, dict) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/episodefile?seriesId=1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/episodefile_series.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_episode_file(1, True) + +def test_get_episodes_by_series_id(sonarr_client: SonarrAPI): + + series = sonarr_client.get_series() + data = sonarr_client.get_episodes_by_series_id(series[0]["id"]) + assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/episodefile/999", - headers={"Content-Type": "application/json"}, - status=404, - match_querystring=True, - ) - with contextlib.suppress(PyarrResourceNotFound): - data = sonarr_client.get_episode_file(999) - assert False + with pytest.deprecated_call(): + sonarr_client.get_episodes_by_series_id(series[0]["id"]) -@pytest.mark.usefixtures -def test_del_episode_file(responses, sonarr_client): - responses.add( - responses.DELETE, - "https://127.0.0.1:8989/api/v3/episodefile/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.del_episode_file(1) +def test_get_episode_by_episode_id(sonarr_client: SonarrAPI): + series = sonarr_client.get_series() + episodes = sonarr_client.get_episode(id_=series[0]["id"], series=True) + data = sonarr_client.get_episode_by_episode_id(episodes[0]["id"]) assert isinstance(data, dict) - responses.add( - responses.DELETE, - "https://127.0.0.1:8989/api/v3/episodefile/999", - headers={"Content-Type": "application/json"}, - status=404, - match_querystring=True, - ) with contextlib.suppress(PyarrResourceNotFound): - data = sonarr_client.del_episode_file(999) + data = sonarr_client.get_episode_by_episode_id(999) assert False + with pytest.deprecated_call(): + sonarr_client.get_episode_by_episode_id(episodes[0]["id"]) + + +def test_get_episode_files_by_series_id(sonarr_client: SonarrAPI): + series = sonarr_client.get_series() + data = sonarr_client.get_episode_files_by_series_id(id_=series[0]["id"]) + assert isinstance(data, list) + + with pytest.deprecated_call(): + sonarr_client.get_episode_files_by_series_id(series[0]["id"]) + + +def test_get_episode_file(sonarr_client: SonarrAPI): + series = sonarr_client.get_series() + episodes = sonarr_client.get_episode(id_=series[0]["id"], series=True) + + data = sonarr_client.get_episode_file(id_=series[0]["id"], series=True) + assert isinstance(data, list) + + +def test_upd_episode(sonarr_client: SonarrAPI): + + series = sonarr_client.get_series() + episodes = sonarr_client.get_episode(id_=series[0]["id"], series=True) + + payload = {"monitored": True} + data = sonarr_client.upd_episode(episodes[0]["id"], payload) -@pytest.mark.usefixtures -def test_upd_episode_file_quality(responses, sonarr_client): - responses.add( - responses.PUT, - "https://127.0.0.1:8989/api/v3/episodefile/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/episodefile.json"), - status=202, - match_querystring=True, - ) - data = sonarr_client.upd_episode_file_quality( - 1, load_fixture("sonarr/file_quality.json") - ) assert isinstance(data, dict) + assert data["monitored"] == True -@pytest.mark.usefixtures -def test_get_wanted(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/wanted/missing", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/wanted_missing.json"), - status=200, - match_querystring=True, - ) +def test_get_wanted(sonarr_client: SonarrAPI): + data = sonarr_client.get_wanted() assert isinstance(data, dict) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/wanted/missing?includeSeries=True", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/wanted_missing_extended.json"), - status=200, - match_querystring=True, - ) data = sonarr_client.get_wanted(include_series=True) assert isinstance(data, dict) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/wanted/missing?page=2&pageSize=20&sortKey=series.sortTitle&sortDirection=ascending", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/wanted_missing.json"), - status=200, - match_querystring=True, - ) data = sonarr_client.get_wanted( page=2, page_size=20, @@ -410,1535 +316,732 @@ def test_get_wanted(responses, sonarr_client): with contextlib.suppress(PyarrMissingArgument): data = sonarr_client.get_wanted(sort_key=SonarrSortKey.TIMELEFT) assert False + with contextlib.suppress(PyarrMissingArgument): data = sonarr_client.get_wanted(sort_dir=PyarrSortDirection.DEFAULT) assert False -@pytest.mark.usefixtures -def test_get_quality_profile(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/qualityprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/qualityprofileall.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_quality_profile() - assert isinstance(data, list) +def test_get_history(sonarr_client: SonarrAPI): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/qualityprofile/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/qualityprofile.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_quality_profile(1) + data = sonarr_client.get_history() assert isinstance(data, dict) - -@pytest.mark.usefixtures -def test_get_queue(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/queue", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/queue.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_queue() + series = sonarr_client.get_series() + episodes = sonarr_client.get_episode(id_=series[0]["id"], series=True) + data = sonarr_client.get_history() assert isinstance(data, dict) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/queue?page=1&pageSize=20&sortKey=timeleft&sortDirection=default&includeUnknownSeriesItems=False&includeSeries=False&includeEpisode=False", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/queue.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_queue( + data = sonarr_client.get_history( page=1, - page_size=20, - sort_key=SonarrSortKey.TIMELEFT, + page_size=10, + sort_key=PyarrHistorySortKey.TIME, sort_dir=PyarrSortDirection.DEFAULT, - include_unknown_series_items=False, - include_series=False, - include_episode=False, + id_=episodes[0]["id"], ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_queue(sort_key=SonarrSortKey.TIMELEFT) + data = sonarr_client.get_history(sort_key=PyarrHistorySortKey.TIME) assert False + with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_queue(sort_dir=PyarrSortDirection.DEFAULT) + data = sonarr_client.get_history(sort_dir=PyarrSortDirection.DESC) assert False -@pytest.mark.usefixtures -def test_get_parsed_title(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/parse?title=Series.Title.S01E01", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/parse.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_parsed_title("Series.Title.S01E01") - assert isinstance(data, dict) - - -@pytest.mark.usefixtures -def test_get_parsed_path(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/parse?path=/", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/parse.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_parsed_path("/") - assert isinstance(data, dict) +def test_get_calendar(sonarr_client: SonarrAPI): + start = datetime.strptime("Nov 30 2020 1:33PM", "%b %d %Y %I:%M%p") + end = datetime.strptime("Dec 1 2020 1:33PM", "%b %d %Y %I:%M%p") + data = sonarr_client.get_calendar(start_date=start, end_date=end) + assert isinstance(data, list) -@pytest.mark.usefixtures -def test_get_parse_title_path(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/parse?title=Series.Title.S01E01&path=/", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/parse.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_parse_title_path(title="Series.Title.S01E01", path="/") - assert isinstance(data, dict) + start = datetime.strptime("Nov 30 2020 1:33PM", "%b %d %Y %I:%M%p") + end = datetime.strptime("Dec 1 2020 1:33PM", "%b %d %Y %I:%M%p") + data = sonarr_client.get_calendar(start_date=start, end_date=end, unmonitored=False) + assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/parse?title=Series.Title.S01E01", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/parse.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_parse_title_path(title="Series.Title.S01E01") - assert isinstance(data, dict) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/parse?path=/", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/parse.json"), - status=200, - match_querystring=True, +def test_get_indexer_schema(sonarr_client: SonarrAPI): + data = sonarr_client.get_indexer_schema() + assert isinstance(data, list) + data = sonarr_client.get_indexer_schema( + implementation=PyarrIndexerSchema.IP_TORRENTS ) - data = sonarr_client.get_parse_title_path(path="/") - assert isinstance(data, dict) + assert isinstance(data, list) + assert data[0]["implementation"] == PyarrIndexerSchema.IP_TORRENTS - with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_parse_title_path() + with contextlib.suppress(PyarrRecordNotFound): + data = sonarr_client.get_indexer_schema(implementation="polarbear") assert False @pytest.mark.usefixtures -def test_get_releases(responses, sonarr_client): +@responses.activate +def test_get_indexer(sonarr_mock_client: SonarrAPI): + responses.add( responses.GET, - "https://127.0.0.1:8989/api/v3/release", + "https://127.0.0.1:8989/api/v3/indexer", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/release.json"), + body=load_fixture("common/indexer_all.json"), status=200, match_querystring=True, ) - data = sonarr_client.get_releases() + data = sonarr_mock_client.get_indexer() assert isinstance(data, list) responses.add( responses.GET, - "https://127.0.0.1:8989/api/v3/release?episodeId=1", + "https://127.0.0.1:8989/api/v3/indexer/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/release.json"), + body=load_fixture("common/indexer.json"), status=200, match_querystring=True, ) - data = sonarr_client.get_releases(1) - assert isinstance(data, list) - - -@pytest.mark.usefixtures -def test_download_release(responses, sonarr_client): - responses.add( - responses.POST, - "https://127.0.0.1:8989/api/v3/release", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/release_download.json"), - status=201, - match_querystring=True, - ) - data = sonarr_client.download_release(guid="1450590", indexer_id=2) + data = sonarr_mock_client.get_indexer(id_=1) assert isinstance(data, dict) @pytest.mark.usefixtures -def test_push_release(responses, sonarr_client): - responses.add( - responses.POST, - "https://127.0.0.1:8989/api/v3/release/push", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/release_download.json"), - status=201, - match_querystring=True, - ) - data = sonarr_client.push_release( - title="test", - download_url="https://ipt.beelyrics.net/t/1450590", - protocol="Torrent", - publish_date=datetime(2020, 5, 17), - ) - assert isinstance(data, dict) +@responses.activate +def test_upd_indexer(sonarr_mock_client: SonarrAPI): - -@pytest.mark.usefixtures -def test_get_series(responses, sonarr_client): responses.add( responses.GET, - "https://127.0.0.1:8989/api/v3/series", + "https://127.0.0.1:8989/api/v3/indexer/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/series_all.json"), + body=load_fixture("common/indexer.json"), status=200, match_querystring=True, ) - data = sonarr_client.get_series() - assert isinstance(data, list) + data = sonarr_mock_client.get_indexer(1) responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/series/1", + responses.PUT, + "https://127.0.0.1:8989/api/v3/indexer/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/series.json"), - status=200, + body=load_fixture("common/indexer.json"), + status=202, match_querystring=True, ) - data = sonarr_client.get_series(1) + data = sonarr_mock_client.upd_indexer(1, data) assert isinstance(data, dict) -def test_add_series(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/series/lookup?term=tvdb:123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/series_lookup.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.POST, - "https://127.0.0.1:8989/api/v3/series", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/series.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.add_series(tvdb_id=123456, quality_profile_id=0, root_dir="/") +def test_get_system_status(sonarr_client: SonarrAPI): + + data = sonarr_client.get_system_status() assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_upd_series(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/series/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/series.json"), - status=202, - match_querystring=True, - ) - series = sonarr_client.get_series(1) - responses.add( - responses.PUT, - "https://127.0.0.1:8989/api/v3/series", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/series.json"), - status=202, - match_querystring=True, - ) - data = sonarr_client.upd_series(data=series) - assert isinstance(data, dict) +def test_get_health(sonarr_client: SonarrAPI): + data = sonarr_client.get_health() + assert isinstance(data, list) -@pytest.mark.usefixtures -def test_del_series(responses, sonarr_client): - responses.add( - responses.DELETE, - "https://127.0.0.1:8989/api/v3/series/1?deleteFiles=False", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.del_series(1) - assert isinstance(data, dict) - assert data == {} - responses.add( - responses.DELETE, - "https://127.0.0.1:8989/api/v3/series/1?deleteFiles=True", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.del_series(1, delete_files=True) +def test_get_metadata(sonarr_client: SonarrAPI): + + data = sonarr_client.get_metadata() + assert isinstance(data, list) + + data = sonarr_client.get_metadata(data[0]["id"]) assert isinstance(data, dict) - assert data == {} -@pytest.mark.usefixtures -def test_lookup_series(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/series/lookup?term=tvdb:123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/series_lookup.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.lookup_series(id_=123456) +def test_get_update(sonarr_client: SonarrAPI): + + data = sonarr_client.get_update() assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/series/lookup?term=test", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/series_lookup.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.lookup_series(term="test") + +def test_get_disk_space(sonarr_client: SonarrAPI): + + data = sonarr_client.get_disk_space() assert isinstance(data, list) - with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.lookup_series() - assert False +def test_get_backup(sonarr_client: SonarrAPI): -@pytest.mark.usefixtures -def test_lookup_series_by_tvdb_id(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/series/lookup?term=tvdb%3A123456", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/series_lookup.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.lookup_series_by_tvdb_id(123456) + data = sonarr_client.get_backup() assert isinstance(data, list) -@pytest.mark.usefixtures -def test_get_history(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/history", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/history.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_history() +def test_get_log(sonarr_client: SonarrAPI): + + data = sonarr_client.get_log() assert isinstance(data, dict) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/history?episodeId=1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/history.json"), - status=200, - match_querystring=True, - ) - - data = sonarr_client.get_history(id_=1) - assert isinstance(data, dict) - - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/history?page=1&pageSize=10&sortKey=time&sortDirection=default", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/history.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_history( - page=1, - page_size=10, - sort_key=PyarrHistorySortKey.TIME, - sort_dir=PyarrSortDirection.DEFAULT, - ) - assert isinstance(data, dict) - - with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_history(sort_key=PyarrHistorySortKey.TIME) - assert False - with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_history(sort_dir=PyarrSortDirection.DESC) - assert False - - -#### BASE TESTS #### -# These tests are to make sure the base functions work as -# expected for each api - - -@pytest.mark.usefixtures -def test_get_calendar(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/calendar?start=2020-11-30&end=2020-12-01&unmonitored=True", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/calendar.json"), - status=200, - match_querystring=True, - ) - start = datetime.strptime("Nov 30 2020 1:33PM", "%b %d %Y %I:%M%p") - end = datetime.strptime("Dec 1 2020 1:33PM", "%b %d %Y %I:%M%p") - data = sonarr_client.get_calendar(start_date=start, end_date=end) - assert isinstance(data, list) - - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/calendar?start=2020-11-30&end=2020-12-01&unmonitored=False", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/calendar.json"), - status=200, - match_querystring=True, - ) - start = datetime.strptime("Nov 30 2020 1:33PM", "%b %d %Y %I:%M%p") - end = datetime.strptime("Dec 1 2020 1:33PM", "%b %d %Y %I:%M%p") - data = sonarr_client.get_calendar(start_date=start, end_date=end, unmonitored=False) - assert isinstance(data, list) - - -def test_get_system_status(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/system/status", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/system_status.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_system_status() - assert isinstance(data, dict) - - -def test_get_health(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/health", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/health.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_health() - assert isinstance(data, list) - - -def test_get_metadata(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/metadata", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/metadata_all.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_metadata() - assert isinstance(data, list) - - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/metadata/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/metadata.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_metadata(1) - assert isinstance(data, dict) - - -def test_get_update(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/update", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/metadata_all.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_update() - assert isinstance(data, list) - - -def test_get_root_folder(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/rootfolder", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/rootfolder_all.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_root_folder() - assert isinstance(data, list) - - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/rootfolder/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/rootfolder.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_root_folder(1) - assert isinstance(data, dict) - - -@pytest.mark.usefixtures -def test_del_root_folder(responses, sonarr_client): - responses.add( - responses.DELETE, - "https://127.0.0.1:8989/api/v3/rootfolder/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.del_root_folder(1) - assert isinstance(data, dict) - - responses.add( - responses.DELETE, - "https://127.0.0.1:8989/api/v3/rootfolder/999", - headers={"Content-Type": "application/json"}, - status=404, - ) - with contextlib.suppress(PyarrResourceNotFound): - data = sonarr_client.del_root_folder(999) - assert False - - -@pytest.mark.usefixtures -def test_get_disk_space(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/diskspace", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/diskspace.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_disk_space() - assert isinstance(data, list) - - -@pytest.mark.usefixtures -def test_get_backup(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/system/backup", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/backup.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_backup() - assert isinstance(data, list) - - -@pytest.mark.usefixtures -def test_get_log(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/log", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/log.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_log() - assert isinstance(data, dict) - - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/log?page=10&pageSize=10&sortKey=Id&sortDirection=descending&filterKey=level&filterValue=all", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/log.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_log( - page=10, - page_size=10, - sort_key=PyarrLogSortKey.ID, - sort_dir=PyarrSortDirection.DESC, - filter_key=PyarrLogFilterKey.LEVEL, - filter_value=PyarrLogFilterValue.ALL, - ) - assert isinstance(data, dict) - - with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_log(sort_key=PyarrLogSortKey.ID) - assert False - with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_log(sort_dir=PyarrSortDirection.DESC) - assert False - with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_log(filter_key=PyarrLogFilterKey.LEVEL) - assert False - with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_log(filter_value=PyarrLogFilterValue.ALL) - assert False - - -@pytest.mark.usefixtures -def test_get_blocklist(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/blocklist", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/blocklist.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_blocklist() - assert isinstance(data, dict) - - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/blocklist?page=1&pageSize=10&sortKey=date&sortDirection=ascending", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/blocklist.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_blocklist( - page=1, - page_size=10, - sort_key=PyarrBlocklistSortKey.DATE, - sort_dir=PyarrSortDirection.ASC, - ) - assert isinstance(data, dict) - - with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_blocklist(sort_key=PyarrHistorySortKey.TIME) - assert False - with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_blocklist(sort_dir=PyarrSortDirection.DESC) - assert False - - -@pytest.mark.usefixtures -def test_del_blocklist(responses, sonarr_client): - responses.add( - responses.DELETE, - "https://127.0.0.1:8989/api/v3/blocklist/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.del_blocklist(1) - assert isinstance(data, dict) - - responses.add( - responses.DELETE, - "https://127.0.0.1:8989/api/v3/blocklist/999", - headers={"Content-Type": "application/json"}, - status=404, - match_querystring=True, - ) - with contextlib.suppress(PyarrResourceNotFound): - data = sonarr_client.del_blocklist(999) - assert False - - -@pytest.mark.usefixtures -def test_del_blocklist_bulk(responses, sonarr_client): - responses.add( - responses.DELETE, - "https://127.0.0.1:8989/api/v3/blocklist/bulk", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.del_blocklist_bulk(ids=[8]) - assert isinstance(data, dict) - - -@pytest.mark.usefixtures -def test_get_quality_profile(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/qualityprofile", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/quality_profile_all.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_quality_profile() - assert isinstance(data, list) - - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/qualityprofile/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/quality_profile.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_quality_profile(1) - assert isinstance(data, dict) - - -@pytest.mark.usefixtures -def test_upd_quality_profile(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/qualityprofile/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/quality_profile.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_quality_profile(1) - - responses.add( - responses.PUT, - "https://127.0.0.1:8989/api/v3/qualityprofile/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/quality_profile.json"), - status=202, - match_querystring=True, - ) - data = sonarr_client.upd_quality_profile(1, data) - assert isinstance(data, dict) - - -@pytest.mark.usefixtures -def test_del_quality_profile(responses, sonarr_client): - responses.add( - responses.DELETE, - "https://127.0.0.1:8989/api/v3/qualityprofile/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.del_quality_profile(id_=1) - assert isinstance(data, dict) - - -@pytest.mark.usefixtures -def test_get_quality_definition(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/qualitydefinition", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/quality_definition_all.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_quality_definition() - assert isinstance(data, list) - - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/qualitydefinition/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/quality_definition.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_quality_definition(1) - assert isinstance(data, dict) - - -@pytest.mark.usefixtures -def test_upd_quality_definition(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/qualitydefinition/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/quality_definition.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_quality_definition(1) - - responses.add( - responses.PUT, - "https://127.0.0.1:8989/api/v3/qualitydefinition/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/quality_definition.json"), - status=202, - match_querystring=True, - ) - data = sonarr_client.upd_quality_definition(1, data) - assert isinstance(data, dict) - - -@pytest.mark.usefixtures -def test_get_indexer(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/indexer", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/indexer_all.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_indexer() - assert isinstance(data, list) - - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/indexer/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/indexer.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_indexer(1) - assert isinstance(data, dict) - - -@pytest.mark.usefixtures -def test_upd_indexer(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/indexer/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/indexer.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_indexer(1) - - responses.add( - responses.PUT, - "https://127.0.0.1:8989/api/v3/indexer/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/indexer.json"), - status=202, - match_querystring=True, - ) - data = sonarr_client.upd_indexer(1, data) - assert isinstance(data, dict) - - -@pytest.mark.usefixtures -def test_del_indexer(responses, sonarr_client): - responses.add( - responses.DELETE, - "https://127.0.0.1:8989/api/v3/indexer/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.del_indexer(id_=1) - assert isinstance(data, dict) - - -@pytest.mark.usefixtures -def test_del_queue(responses, sonarr_client): - responses.add( - responses.DELETE, - "https://127.0.0.1:8989/api/v3/queue/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.del_queue(id_=1) - assert isinstance(data, dict) - responses.add( - responses.DELETE, - "https://127.0.0.1:8989/api/v3/queue/1?removeFromClient=True&blocklist=True", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.del_queue(id_=1, remove_from_client=True, blocklist=True) - assert isinstance(data, dict) - - -@pytest.mark.usefixtures -def test_get_task(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/system/task", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/system_task_all.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_task() - assert isinstance(data, dict) - - # TODO: Need an example task, currently using fake dict - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/system/task/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/system_task.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_task(id_=1) - assert isinstance(data, dict) - - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/system/task?page=1&pageSize=10&sortKey=timeleft&sortDirection=default", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/system_task_all.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_task( - page=1, - page_size=10, - sort_key=PyarrTaskSortKey.TIME_LEFT, - sort_dir=PyarrSortDirection.DEFAULT, + data = sonarr_client.get_log( + page=10, + page_size=10, + sort_key=PyarrLogSortKey.ID, + sort_dir=PyarrSortDirection.DESC, + filter_key=PyarrLogFilterKey.LEVEL, + filter_value=PyarrLogFilterValue.ALL, ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_task(sort_key=PyarrTaskSortKey.TIME_LEFT) + data = sonarr_client.get_log(sort_key=PyarrLogSortKey.ID) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_log(sort_dir=PyarrSortDirection.DESC) assert False with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_task(sort_dir=PyarrSortDirection.DESC) + data = sonarr_client.get_log(filter_key=PyarrLogFilterKey.LEVEL) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_log(filter_value=PyarrLogFilterValue.ALL) assert False -@pytest.mark.usefixtures -def test_get_remote_path_mapping(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/remotepathmapping", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/remotepathmapping_all.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_remote_path_mapping() +def test_get_task(sonarr_client: SonarrAPI): + + data = sonarr_client.get_task() assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/remotepathmapping/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/remotepathmapping.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_remote_path_mapping(1) + data = sonarr_client.get_task(id_=data[0]["id"]) assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_get_config_ui(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/config/ui", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/config_ui.json"), - status=200, - match_querystring=True, - ) +def test_get_config_ui(sonarr_client: SonarrAPI): + data = sonarr_client.get_config_ui() assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_upd_config_ui(responses, sonarr_client): - responses.add( - responses.PUT, - "https://127.0.0.1:8989/api/v3/config/ui", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/config_ui.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/config/ui", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/config_ui.json"), - status=200, - match_querystring=True, - ) +def test_upd_config_ui(sonarr_client: SonarrAPI): + payload = sonarr_client.get_config_ui() + payload["enableColorImpairedMode"] = True data = sonarr_client.upd_config_ui(payload) - assert isinstance(data, dict) + assert data["enableColorImpairedMode"] == True -@pytest.mark.usefixtures -def test_get_config_host(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/config/host", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/config_host.json"), - status=200, - match_querystring=True, - ) +def test_get_config_host(sonarr_client: SonarrAPI): + data = sonarr_client.get_config_host() assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_upd_config_host(responses, sonarr_client): - responses.add( - responses.PUT, - "https://127.0.0.1:8989/api/v3/config/host", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/config_host.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/config/host", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/config_host.json"), - status=200, - match_querystring=True, - ) +def test_upd_config_host(sonarr_client: SonarrAPI): + payload = sonarr_client.get_config_host() + payload["backupRetention"] = 29 data = sonarr_client.upd_config_host(payload) assert isinstance(data, dict) + assert data["backupRetention"] == 29 -@pytest.mark.usefixtures -def test_get_config_naming(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/config/naming", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/config_naming.json"), - status=200, - match_querystring=True, - ) +def test_get_config_naming(sonarr_client: SonarrAPI): + data = sonarr_client.get_config_naming() assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_upd_config_naming(responses, sonarr_client): - responses.add( - responses.PUT, - "https://127.0.0.1:8989/api/v3/config/naming", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/config_naming.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/config/naming", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/config_naming.json"), - status=200, - match_querystring=True, - ) +def test_upd_config_naming(sonarr_client: SonarrAPI): + payload = sonarr_client.get_config_naming() + payload["numberStyle"] = ( + "E{episode:00}S{season:00}" + if payload["numberStyle"] == "S{season:00}E{episode:00}" + else "S{season:00}E{episode:00}" + ) data = sonarr_client.upd_config_naming(payload) assert isinstance(data, dict) + if payload["numberStyle"] == "S{season:00}E{episode:00}": + assert data["numberStyle"] == "E{episode:00}S{season:00}" + else: + assert data["numberStyle"] == "S{season:00}E{episode:00}" -@pytest.mark.usefixtures -def test_get_media_management(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/config/mediamanagement", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/media_management.json"), - status=200, - match_querystring=True, - ) +def test_get_media_management(sonarr_client: SonarrAPI): + data = sonarr_client.get_media_management() assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_upd_media_management(responses, sonarr_client): - responses.add( - responses.PUT, - "https://127.0.0.1:8989/api/v3/config/mediamanagement", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/media_management.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/config/mediamanagement", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/media_management.json"), - status=200, - match_querystring=True, - ) +def test_upd_media_management(sonarr_client: SonarrAPI): + payload = sonarr_client.get_media_management() + payload["recycleBinCleanupDays"] = 6 data = sonarr_client.upd_media_management(payload) assert isinstance(data, dict) + assert data["recycleBinCleanupDays"] == 6 -@pytest.mark.usefixtures -def test_get_notification(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/notification", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/notification_all.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_notification() +def test_get_notification_schema(sonarr_client: SonarrAPI): + + data = sonarr_client.get_notification_schema() assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/notification/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/notification.json"), - status=200, - match_querystring=True, + data = sonarr_client.get_notification_schema( + implementation=PyarrNotificationSchema.BOXCAR ) - data = sonarr_client.get_notification(id_=1) + assert isinstance(data, list) + + with contextlib.suppress(PyarrRecordNotFound): + data = sonarr_client.get_notification_schema(implementation="polarbear") + assert False + + +def test_create_tag(sonarr_client: SonarrAPI): + + data = sonarr_client.create_tag(label="string") assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_get_notification_schema(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/notification/schema", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/notification_schema_all.json"), - status=200, - match_querystring=True, +def test_get_tag(sonarr_client: SonarrAPI): + + data = sonarr_client.get_tag() + assert isinstance(data, list) + + data = sonarr_client.get_tag(id_=data[0]["id"]) + assert isinstance(data, dict) + + +def test_get_tag_detail(sonarr_client: SonarrAPI): + + data = sonarr_client.get_tag_detail() + assert isinstance(data, list) + + data = sonarr_client.get_tag_detail(id_=data[0]["id"]) + assert isinstance(data, dict) + + +def test_upd_tag(sonarr_client: SonarrAPI): + tags = sonarr_client.get_tag() + + data = sonarr_client.upd_tag(id_=tags[0]["id"], label="newstring") + assert isinstance(data, dict) + assert data["label"] == "newstring" + + +def test_get_download_client_schema(sonarr_client: SonarrAPI): + + data = sonarr_client.get_download_client_schema() + assert isinstance(data, list) + + data = sonarr_client.get_download_client_schema( + implementation=PyarrDownloadClientSchema.ARIA2 ) - data = sonarr_client.get_notification_schema() assert isinstance(data, list) - data = sonarr_client.get_notification_schema( - implementation=PyarrNotificationSchema.BOXCAR + with contextlib.suppress(PyarrRecordNotFound): + data = sonarr_client.get_download_client_schema(implementation="polarbear") + assert False + + +def test_get_import_list_schema(sonarr_client: SonarrAPI): + + data = sonarr_client.get_import_list_schema() + assert isinstance(data, list) + + data = sonarr_client.get_import_list_schema( + implementation=PyarrImportListSchema.PLEX ) assert isinstance(data, list) - with contextlib.suppress(PyarrRecordNotFound): - data = sonarr_client.get_notification_schema(implementation="polarbear") - assert False + with contextlib.suppress(PyarrRecordNotFound): + data = sonarr_client.get_import_list_schema(implementation="polarbear") + assert False + + +def test_get_releases(sonarr_client: SonarrAPI): + + data = sonarr_client.get_releases() + assert isinstance(data, list) + + # TODO: Get release by ID, may require a mock + + +def test_get_quality_definition(sonarr_client: SonarrAPI): + + data = sonarr_client.get_quality_definition() + assert isinstance(data, list) + + data = sonarr_client.get_quality_definition(id_=data[0]["id"]) + assert isinstance(data, dict) + +def test_upd_quality_definition(sonarr_client: SonarrAPI): + rand_float = round(random.uniform(100.0, 199.9)) -@pytest.mark.usefixtures -def test_add_notification(responses, sonarr_client): - responses.add( - responses.POST, - "https://127.0.0.1:8989/api/v3/notification", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/notification.json"), - status=200, - match_querystring=True, + quality_definitions = sonarr_client.get_quality_definition() + quality_definition = sonarr_client.get_quality_definition( + id_=quality_definitions[0]["id"] ) - data = sonarr_client.add_notification( - data={"implementationName": "Plex Media Server"} + quality_definition["maxSize"] = rand_float + data = sonarr_client.upd_quality_definition( + quality_definition["id"], quality_definition ) assert isinstance(data, dict) + assert data["maxSize"] == rand_float @pytest.mark.usefixtures -def test_upd_notification(responses, sonarr_client): +@responses.activate +def test_get_queue(sonarr_mock_client: SonarrAPI): responses.add( responses.GET, - "https://127.0.0.1:8989/api/v3/notification/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/notification.json"), - status=200, - match_querystring=True, - ) - responses.add( - responses.PUT, - "https://127.0.0.1:8989/api/v3/notification/1", + "https://127.0.0.1:8989/api/v3/queue", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/notification.json"), + body=load_fixture("sonarr/queue.json"), status=200, match_querystring=True, ) - notification = sonarr_client.get_notification(id_=1) - data = sonarr_client.upd_notification(id_=1, data=notification) + data = sonarr_mock_client.get_queue() assert isinstance(data, dict) - -@pytest.mark.usefixtures -def test_del_notification(responses, sonarr_client): responses.add( - responses.DELETE, - "https://127.0.0.1:8989/api/v3/notification/1", + responses.GET, + "https://127.0.0.1:8989/api/v3/queue?page=1&pageSize=20&sortKey=timeleft&sortDirection=default&includeUnknownSeriesItems=True&includeSeries=True&includeEpisode=True", headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), + body=load_fixture("sonarr/queue.json"), status=200, match_querystring=True, ) - data = sonarr_client.del_notification(id_=1) + data = sonarr_mock_client.get_queue( + page=1, + page_size=20, + sort_key=SonarrSortKey.TIMELEFT, + sort_dir=PyarrSortDirection.DEFAULT, + include_unknown_series_items=True, + include_series=True, + include_episode=True, + ) assert isinstance(data, dict) + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_mock_client.get_queue(sort_key=SonarrSortKey.TIMELEFT) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_mock_client.get_queue(sort_dir=PyarrSortDirection.DEFAULT) + assert False + @pytest.mark.usefixtures -def test_get_tag(responses, sonarr_client): +@responses.activate +def test_get_blocklist(sonarr_mock_client: SonarrAPI): responses.add( responses.GET, - "https://127.0.0.1:8989/api/v3/tag", + "https://127.0.0.1:8989/api/v3/blocklist", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/tag_all.json"), + body=load_fixture("common/blocklist.json"), status=200, match_querystring=True, ) - data = sonarr_client.get_tag() - assert isinstance(data, list) + data = sonarr_mock_client.get_blocklist() + assert isinstance(data, dict) responses.add( responses.GET, - "https://127.0.0.1:8989/api/v3/tag/1", + "https://127.0.0.1:8989/api/v3/blocklist?page=1&pageSize=10&sortKey=date&sortDirection=ascending", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/tag.json"), + body=load_fixture("common/blocklist.json"), status=200, match_querystring=True, ) - data = sonarr_client.get_tag(id_=1) + data = sonarr_mock_client.get_blocklist( + page=1, + page_size=10, + sort_key=PyarrBlocklistSortKey.DATE, + sort_dir=PyarrSortDirection.ASC, + ) assert isinstance(data, dict) + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_mock_client.get_blocklist(sort_key=PyarrBlocklistSortKey.DATE) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_mock_client.get_blocklist(sort_dir=PyarrSortDirection.ASC) + assert False -@pytest.mark.usefixtures -def test_get_tag_detail(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/tag/detail", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/tag_detail_all.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_tag_detail() +def test_get_remote_path_mapping(sonarr_client: SonarrAPI): + data = sonarr_client.get_remote_path_mapping() assert isinstance(data, list) - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/tag/detail/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/tag_detail.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_tag_detail(id_=1) - assert isinstance(data, dict) +def test_get_notification(sonarr_client: SonarrAPI): + data = sonarr_client.get_notification() + assert isinstance(data, list) + # TODO: Get notification by ID (required add_notification first) -@pytest.mark.usefixtures -def test_create_tag(responses, sonarr_client): - responses.add( - responses.POST, - "https://127.0.0.1:8989/api/v3/tag", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/tag.json"), - status=201, - match_querystring=True, - ) - data = sonarr_client.create_tag(label="string") - assert isinstance(data, dict) +def test_get_download_client(sonarr_client: SonarrAPI): + data = sonarr_client.get_download_client() + assert isinstance(data, list) + # TODO: Get download client by ID (required add_download_client first) -@pytest.mark.usefixtures -def test_upd_tag(responses, sonarr_client): - responses.add( - responses.PUT, - "https://127.0.0.1:8989/api/v3/tag", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/tag.json"), - status=202, - match_querystring=True, - ) - data = sonarr_client.upd_tag(id_=1, label="string") + +def test_get_import_list(sonarr_client: SonarrAPI): + data = sonarr_client.get_import_list() + assert isinstance(data, list) + + +def test_get_config_download_client(sonarr_client: SonarrAPI): + data = sonarr_client.get_config_download_client() assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_del_tag(responses, sonarr_client): - responses.add( - responses.DELETE, - "https://127.0.0.1:8989/api/v3/tag/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("common/delete.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.del_tag(id_=1) +def test_upd_config_download_client(sonarr_client: SonarrAPI): + dc_config = sonarr_client.get_config_download_client() + dc_config["autoRedownloadFailed"] = False + data = sonarr_client.upd_config_download_client(data=dc_config) assert isinstance(data, dict) + assert data["autoRedownloadFailed"] == False -@pytest.mark.usefixtures -def test_get_download_client(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/downloadclient", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/downloadclient_all.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_download_client() - assert isinstance(data, list) +def test_get_parsed_title(sonarr_client: SonarrAPI): + + with pytest.deprecated_call(): + sonarr_client.get_parsed_title(title="test") + +@pytest.mark.usefixtures +@responses.activate +def test_get_parsed_path(sonarr_mock_client: SonarrAPI): responses.add( responses.GET, - "https://127.0.0.1:8989/api/v3/downloadclient/1", + "https://127.0.0.1:8989/api/v3/parse?path=/", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/downloadclient.json"), + body=load_fixture("sonarr/parse.json"), status=200, match_querystring=True, ) - data = sonarr_client.get_download_client(id_=1) + data = sonarr_mock_client.get_parsed_path("/") assert isinstance(data, dict) + with pytest.deprecated_call(): + sonarr_mock_client.get_parsed_path(file_path="/") + @pytest.mark.usefixtures -def test_get_download_client_schema(responses, sonarr_client): +@responses.activate +def test_download_release(sonarr_mock_client: SonarrAPI): responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/downloadclient/schema", + responses.POST, + "https://127.0.0.1:8989/api/v3/release", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/download_client_schema_all.json"), - status=200, + body=load_fixture("sonarr/release_download.json"), + status=201, match_querystring=True, ) - data = sonarr_client.get_download_client_schema() - assert isinstance(data, list) + data = sonarr_mock_client.download_release(guid="1450590", indexer_id=2) + assert isinstance(data, dict) - data = sonarr_client.get_download_client_schema( - implementation=PyarrDownloadClientSchema.ARIA2 - ) - assert isinstance(data, list) - with contextlib.suppress(PyarrRecordNotFound): - data = sonarr_client.get_download_client_schema(implementation="polarbear") +def test_get_parse_title_path(sonarr_client: SonarrAPI): + data = sonarr_client.get_parse_title_path(title="test") + assert isinstance(data, dict) + + data = sonarr_client.get_parse_title_path(path="/defaults") + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = sonarr_client.get_parse_title_path() assert False @pytest.mark.usefixtures -def test_add_download_client(responses, sonarr_client): +@responses.activate +def test_push_release(sonarr_mock_client: SonarrAPI): responses.add( responses.POST, - "https://127.0.0.1:8989/api/v3/downloadclient", + "https://127.0.0.1:8989/api/v3/release/push", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/downloadclient.json"), - status=200, + body=load_fixture("sonarr/release_download.json"), + status=201, match_querystring=True, ) - data = sonarr_client.add_download_client( - data={"implementationName": "Plex Media Server"} + data = sonarr_mock_client.push_release( + title="test", + download_url="https://ipt.beelyrics.net/t/1450590", + protocol="Torrent", + publish_date=datetime(2020, 5, 17), ) assert isinstance(data, dict) @pytest.mark.usefixtures -def test_upd_download_client(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/downloadclient/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/downloadclient.json"), - status=200, - match_querystring=True, - ) +@responses.activate +def test_upd_episode_file_quality(sonarr_mock_client: SonarrAPI): responses.add( responses.PUT, - "https://127.0.0.1:8989/api/v3/downloadclient/1", + "https://127.0.0.1:8989/api/v3/episodefile/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/downloadclient.json"), - status=200, + body=load_fixture("sonarr/episodefile.json"), + status=202, match_querystring=True, ) - download_client = sonarr_client.get_download_client(id_=1) - data = sonarr_client.upd_download_client(id_=1, data=download_client) + data = sonarr_mock_client.upd_episode_file_quality( + 1, load_fixture("sonarr/file_quality.json") + ) + assert isinstance(data, dict) + + +# DELETE ACTIONS MUST BE LAST + + +def test_del_series(sonarr_client: SonarrAPI): + series = sonarr_client.get_series() + data = sonarr_client.del_series(series[0]["id"]) + assert isinstance(data, dict) + assert data == {} + + series = sonarr_client.get_series() + data = sonarr_client.del_series(series[0]["id"], delete_files=True) + + assert isinstance(data, dict) + assert data == {} + + +def test_del_root_folder(sonarr_client: SonarrAPI): + + root_folders = sonarr_client.get_root_folder() + + # Check folder can be deleted + data = sonarr_client.del_root_folder(root_folders[0]["id"]) + assert isinstance(data, dict) + + # Check that none existant root folder doesnt throw error + data = sonarr_client.del_root_folder(999) + assert isinstance(data, dict) + + +def test_del_tag(sonarr_client: SonarrAPI): + + tags = sonarr_client.get_tag() + + data = sonarr_client.del_tag(tags[0]["id"]) + assert isinstance(data, dict) + assert data == {} @pytest.mark.usefixtures -def test_del_download_client(responses, sonarr_client): +@responses.activate +def test_del_blocklist(sonarr_mock_client: SonarrAPI): responses.add( responses.DELETE, - "https://127.0.0.1:8989/api/v3/downloadclient/1", + "https://127.0.0.1:8989/api/v3/blocklist/1", headers={"Content-Type": "application/json"}, body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) - data = sonarr_client.del_download_client(id_=1) + data = sonarr_mock_client.del_blocklist(id_=1) assert isinstance(data, dict) @pytest.mark.usefixtures -def test_get_import_list(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/importlist", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/import_list_all.json"), - status=200, - match_querystring=True, - ) - data = sonarr_client.get_import_list() - assert isinstance(data, list) - +@responses.activate +def test_del_blocklist_bulk(sonarr_mock_client: SonarrAPI): responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/importlist/1", + responses.DELETE, + "https://127.0.0.1:8989/api/v3/blocklist/bulk", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/import_list.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) - data = sonarr_client.get_import_list(id_=1) + data = sonarr_mock_client.del_blocklist_bulk(ids=[1, 2, 3]) assert isinstance(data, dict) @pytest.mark.usefixtures -def test_get_import_list_schema(responses, sonarr_client): +@responses.activate +def test_del_indexer(sonarr_mock_client: SonarrAPI): responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/importlist/schema", + responses.DELETE, + "https://127.0.0.1:8989/api/v3/indexer/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/import_list_schema_all.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) - data = sonarr_client.get_import_list_schema() - assert isinstance(data, list) - - data = sonarr_client.get_import_list_schema( - implementation=PyarrImportListSchema.PLEX - ) - assert isinstance(data, list) - - with contextlib.suppress(PyarrRecordNotFound): - data = sonarr_client.get_import_list_schema(implementation="polarbear") - assert False - + data = sonarr_mock_client.del_indexer(id_=1) + assert isinstance(data, dict) -@pytest.mark.usefixtures -def test_add_import_list(responses, sonarr_client): responses.add( - responses.POST, - "https://127.0.0.1:8989/api/v3/importlist", + responses.DELETE, + "https://127.0.0.1:8989/api/v3/indexer/999", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/import_list.json"), - status=200, - match_querystring=True, + status=404, ) - data = sonarr_client.add_import_list(data={"implementationName": "Plex Watchlist"}) - assert isinstance(data, dict) + with contextlib.suppress(PyarrResourceNotFound): + data = sonarr_mock_client.del_indexer(id_=999) + assert False @pytest.mark.usefixtures -def test_upd_import_list(responses, sonarr_client): - responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/importlist/1", - headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/import_list.json"), - status=200, - match_querystring=True, - ) +@responses.activate +def test_del_queue(sonarr_mock_client: SonarrAPI): responses.add( - responses.PUT, - "https://127.0.0.1:8989/api/v3/importlist/1", + responses.DELETE, + "https://127.0.0.1:8989/api/v3/queue/1?removeFromClient=True&blocklist=True", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/import_list.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) - import_list = sonarr_client.get_import_list(id_=1) - data = sonarr_client.upd_import_list(id_=1, data=import_list) + + data = sonarr_mock_client.del_queue(id_=1, remove_from_client=True, blocklist=True) assert isinstance(data, dict) @pytest.mark.usefixtures -def test_del_import_list(responses, sonarr_client): +@responses.activate +def test_del_episode_file(sonarr_mock_client: SonarrAPI): responses.add( responses.DELETE, - "https://127.0.0.1:8989/api/v3/importlist/1", + "https://127.0.0.1:8989/api/v3/episodefile/1", headers={"Content-Type": "application/json"}, body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) - data = sonarr_client.del_import_list(id_=1) + data = sonarr_mock_client.del_episode_file(id_=1) assert isinstance(data, dict) - -@pytest.mark.usefixtures -def test_get_config_download_client(responses, sonarr_client): responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/config/downloadclient", + responses.DELETE, + "https://127.0.0.1:8989/api/v3/episodefile/999", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/config_downloadclient.json"), - status=200, - match_querystring=True, + status=404, ) - data = sonarr_client.get_config_download_client() - assert isinstance(data, dict) + with contextlib.suppress(PyarrResourceNotFound): + data = sonarr_mock_client.del_episode_file(id_=999) + assert False @pytest.mark.usefixtures -def test_upd_config_download_client(responses, sonarr_client): +@responses.activate +def test_del_language_profile(sonarr_mock_client: SonarrAPI): responses.add( - responses.PUT, - "https://127.0.0.1:8989/api/v3/config/downloadclient", + responses.DELETE, + "https://127.0.0.1:8989/api/v3/languageprofile/1", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/config_downloadclient.json"), + body=load_fixture("common/delete.json"), status=200, match_querystring=True, ) + data = sonarr_mock_client.del_language_profile(id_=1) + assert isinstance(data, dict) + responses.add( - responses.GET, - "https://127.0.0.1:8989/api/v3/config/downloadclient", + responses.DELETE, + "https://127.0.0.1:8989/api/v3/languageprofile/999", headers={"Content-Type": "application/json"}, - body=load_fixture("sonarr/config_downloadclient.json"), - status=200, - match_querystring=True, + status=404, ) - payload = sonarr_client.get_config_download_client() - data = sonarr_client.upd_config_download_client(payload) - - assert isinstance(data, dict) + with contextlib.suppress(PyarrResourceNotFound): + data = sonarr_mock_client.del_language_profile(id_=999) + assert False From 65cf4c893039e4b43ea6c747c5dcd8fe77d8d5cd Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Mon, 27 Mar 2023 13:46:04 +0000 Subject: [PATCH 46/53] test: Added more tests for lidarr and fixed sonarr tests --- .gitignore | 19 +- noxfile.py | 8 +- pyarr/base.py | 8 +- pyarr/lidarr.py | 59 +- pyarr/models/lidarr.py | 14 + pyarr/sonarr.py | 82 +- tests/__init__.py | 4 +- .../archive/state-2023-02-28T09-11-00.tar.xz | Bin 420 -> 0 bytes .../archive/state-2023-03-01T14-59-38.tar.xz | Bin 424 -> 0 bytes .../archive/state-2023-03-13T15-21-08.tar.xz | Bin 416 -> 0 bytes .../archive/state-2023-03-19T19-46-46.tar.xz | Bin 416 -> 0 bytes tests/docker_configs/deluge/config/auth | 1 - tests/docker_configs/deluge/config/core.conf | 95 - .../docker_configs/deluge/config/deluged.log | 3 - .../docker_configs/deluge/config/deluged.pid | 1 - .../deluge/config/hostlist.conf | 14 - .../deluge/config/session.state | Bin 5411 -> 0 bytes .../deluge/config/session.state.bak | Bin 2011 -> 0 bytes .../deluge/config/ssl/daemon.cert | 17 - .../deluge/config/ssl/daemon.pkey | 28 - .../deluge/config/state/.safe_state_check | 0 .../deluge/config/state/torrents.state | Bin 80 -> 0 bytes .../deluge/config/state/torrents.state.bak | Bin 80 -> 0 bytes tests/docker_configs/deluge/config/web.conf | 24 - ...y-992d35cd-3ce7-4994-b3b3-cf6630deeec7.xml | 16 - .../jackett/Jackett/Indexers/1337x.json | 67 - .../jackett/Jackett/Indexers/1337x.json.bak | 67 - .../config/jackett/Jackett/ServerConfig.json | 26 - .../jackett/config/jackett/Jackett/log.txt | 616 - .../config/jackett/Jackett/updater.txt | 1655 -- .../Jackett/updater.txt.20230318.00000.txt | 14553 ---------------- tests/test_lidarr.py | 640 +- tests/test_sonarr.py | 36 +- 33 files changed, 667 insertions(+), 17386 deletions(-) delete mode 100644 tests/docker_configs/deluge/config/archive/state-2023-02-28T09-11-00.tar.xz delete mode 100644 tests/docker_configs/deluge/config/archive/state-2023-03-01T14-59-38.tar.xz delete mode 100644 tests/docker_configs/deluge/config/archive/state-2023-03-13T15-21-08.tar.xz delete mode 100644 tests/docker_configs/deluge/config/archive/state-2023-03-19T19-46-46.tar.xz delete mode 100644 tests/docker_configs/deluge/config/auth delete mode 100644 tests/docker_configs/deluge/config/core.conf delete mode 100644 tests/docker_configs/deluge/config/deluged.log delete mode 100644 tests/docker_configs/deluge/config/deluged.pid delete mode 100644 tests/docker_configs/deluge/config/hostlist.conf delete mode 100644 tests/docker_configs/deluge/config/session.state delete mode 100644 tests/docker_configs/deluge/config/session.state.bak delete mode 100644 tests/docker_configs/deluge/config/ssl/daemon.cert delete mode 100644 tests/docker_configs/deluge/config/ssl/daemon.pkey delete mode 100644 tests/docker_configs/deluge/config/state/.safe_state_check delete mode 100644 tests/docker_configs/deluge/config/state/torrents.state delete mode 100644 tests/docker_configs/deluge/config/state/torrents.state.bak delete mode 100644 tests/docker_configs/deluge/config/web.conf delete mode 100644 tests/docker_configs/jackett/config/jackett/Jackett/DataProtection/key-992d35cd-3ce7-4994-b3b3-cf6630deeec7.xml delete mode 100644 tests/docker_configs/jackett/config/jackett/Jackett/Indexers/1337x.json delete mode 100644 tests/docker_configs/jackett/config/jackett/Jackett/Indexers/1337x.json.bak delete mode 100644 tests/docker_configs/jackett/config/jackett/Jackett/ServerConfig.json delete mode 100644 tests/docker_configs/jackett/config/jackett/Jackett/log.txt delete mode 100644 tests/docker_configs/jackett/config/jackett/Jackett/updater.txt delete mode 100644 tests/docker_configs/jackett/config/jackett/Jackett/updater.txt.20230318.00000.txt diff --git a/.gitignore b/.gitignore index 7e39213..49dd170 100644 --- a/.gitignore +++ b/.gitignore @@ -30,11 +30,14 @@ _build !.devcontainer/recommended-docker-compose.yml !.devcontainer/docker-compose.workspace.yml -tests/arrs/sonarr/* -!tests/arrs/sonarr/config.xml -tests/arrs/radarr/* -!tests/arrs/radarr/config.xml -tests/arrs/readarr/* -!tests/arrs/readarr/config.xml -tests/arrs/lidarr/* -!tests/arrs/lidarr/config.xml +tests/docker_configs/sonarr/* +!tests/docker_configs/sonarr/config.xml +tests/docker_configs/radarr/* +!tests/docker_configs/radarr/config.xml +tests/docker_configs/readarr/* +!tests/docker_configs/readarr/config.xml +tests/docker_configs/lidarr/* +!tests/docker_configs/lidarr/config.xml +tests/docker_configs/deluge/* +tests/docker_configs/jackett/* +!tests/docker_configs/jackett/config/jackett/Jackett/ServerConfig.json diff --git a/noxfile.py b/noxfile.py index bfb4918..477e003 100644 --- a/noxfile.py +++ b/noxfile.py @@ -32,15 +32,15 @@ def test(session: Session) -> None: @nox.session(reuse_venv=True) def docker_test(session: Session) -> None: """Run the complete test suite""" - session.notify("test_docker_start") + session.notify("test_docker_up") session.notify("test_types") session.notify("test_style") session.notify("test_suite") - session.notify("test_docker_stop") + session.notify("test_docker_down") @nox.session(reuse_venv=True) -def test_docker_start(session: Session) -> None: +def test_docker_up(session: Session) -> None: session.run( "docker", "compose", @@ -63,7 +63,7 @@ def test_docker_start(session: Session) -> None: @nox.session(reuse_venv=True) -def test_docker_stop(session: Session) -> None: +def test_docker_down(session: Session) -> None: session.run( "docker", "compose", diff --git a/pyarr/base.py b/pyarr/base.py index 9895052..a7a0147 100644 --- a/pyarr/base.py +++ b/pyarr/base.py @@ -16,6 +16,7 @@ PyarrNotificationSchema, PyarrSortDirection, ) +from pyarr.models.lidarr import LidarrImportListSchema from pyarr.types import JsonArray, JsonObject from .request_handler import RequestHandler @@ -862,12 +863,15 @@ def get_import_list(self, id_: Optional[int] = None) -> JsonArray: return self._get(path, self.ver_uri) def get_import_list_schema( - self, implementation: Optional[PyarrImportListSchema] = None + self, + implementation: Optional[ + Union[PyarrImportListSchema, LidarrImportListSchema] + ] = None, ) -> JsonArray: """Gets the schemas for the different import list sources Args: - implementation (Optional[PyarrImportListSchema], optional): Client implementation name. Defaults to None. + implementation (Optional[Union[PyarrImportListSchema, LidarrImportListSchema]], optional): Client implementation name. Defaults to None. Returns: JsonArray: List of dictionaries with items diff --git a/pyarr/lidarr.py b/pyarr/lidarr.py index 34cdc36..d792afd 100644 --- a/pyarr/lidarr.py +++ b/pyarr/lidarr.py @@ -268,9 +268,9 @@ def get_album( params=params, ) - def _album_json( + def add_album( self, - id_: str, + album: JsonObject, root_dir: str, quality_profile_id: Optional[int] = None, metadata_profile_id: Optional[int] = None, @@ -278,22 +278,19 @@ def _album_json( artist_monitor: LidarrArtistMonitor = LidarrArtistMonitor.ALL_ALBUMS, artist_search_for_missing_albums: bool = False, ) -> JsonObject: - """Method to help build the JSON for adding an album + """Adds an album to Lidarr Args: - id_ (str): Album MusicBrainz ID - root_dir (str): Director to store the album. + album (JsonObject): Album record from `lookup()` + root_dir (str): Location to store music quality_profile_id (Optional[int], optional): Quality profile ID. Defaults to None. metadata_profile_id (Optional[int], optional): Metadata profile ID. Defaults to None. - monitored (bool, optional): Monitor the albums. Defaults to True. - artist_monitor (LidarrArtistMonitor, optional): Monitor the artist. Defaults to LidarrArtistMonitor.ALL_ALBUMS. - artist_search_for_missing_albums (bool, optional): Search for missing albums by the artist. Defaults to False. - - Raises: - PyarrMissingProfile: Error if there are no quality or metadata profiles that match + monitored (bool, optional): Should the album be monitored. Defaults to True. + artist_monitor (LidarrArtistMonitor, optional): What level to monitor the artist. Defaults to LidarrArtistMonitor.ALL_ALBUMS. + artist_search_for_missing_albums (bool, optional): Search for any missing albums by this artist. Defaults to False. Returns: - JsonObject: Dictionary with album data + JsonObject: Dictionary with added record """ if quality_profile_id is None: try: @@ -310,7 +307,6 @@ def _album_json( "There is no Metadata Profile setup" ) from exception - album: dict[str, Any] = self.lookup_album(term=f"lidarr:{id_}")[0] album["id"] = 0 album["artist"]["metadataProfileId"] = metadata_profile_id album["artist"]["qualityProfileId"] = quality_profile_id @@ -320,42 +316,7 @@ def _album_json( "searchForMissingAlbums": artist_search_for_missing_albums, } album["monitored"] = monitored - return album - - def add_album( - self, - id_: str, - root_dir: str, - quality_profile_id: Optional[int] = None, - metadata_profile_id: Optional[int] = None, - monitored: bool = True, - artist_monitor: LidarrArtistMonitor = LidarrArtistMonitor.ALL_ALBUMS, - artist_search_for_missing_albums: bool = False, - ) -> JsonObject: - """Adds an album to Lidarr - - Args: - id_ (str): Album MusicBrainz ID - root_dir (str): Location to store music - quality_profile_id (Optional[int], optional): Quality profile ID. Defaults to None. - metadata_profile_id (Optional[int], optional): Metadata profile ID. Defaults to None. - monitored (bool, optional): Should the album be monitored. Defaults to True. - artist_monitor (LidarrArtistMonitor, optional): What level to monitor the artist. Defaults to LidarrArtistMonitor.ALL_ALBUMS. - artist_search_for_missing_albums (bool, optional): Search for any missing albums by this artist. Defaults to False. - - Returns: - JsonObject: Dictionary with added record - """ - album_json: JsonObject = self._album_json( - id_, - root_dir, - quality_profile_id, - metadata_profile_id, - monitored, - artist_monitor, - artist_search_for_missing_albums, - ) - return self._post("album", self.ver_uri, data=album_json) + return self._post("album", self.ver_uri, data=album) def upd_album(self, data: JsonObject) -> JsonObject: """Update an album diff --git a/pyarr/models/lidarr.py b/pyarr/models/lidarr.py index 192dc5e..20813c7 100644 --- a/pyarr/models/lidarr.py +++ b/pyarr/models/lidarr.py @@ -44,3 +44,17 @@ class LidarrArtistMonitor(str, Enum): EXISTING_ALBUMS = "existing" FIRST_ALBUM = "first" LATEST_ALBUM = "latest" + + +class LidarrImportListSchema(str, Enum): + """Import List schema implementations""" + + LIDARR = "LidarrImport" + HEADPHONES = "HeadphonesImport" + LAST_FM_TAG = "LastFmTag" + LAST_FM_USER = "LastFmUser" + LIDARR_LISTS = "LidarrLists" + MUSICBRAINZ_SERIES = "MusicBrainzSeries" + SPOTIFY_FOLLOWED_ARTISTS = "SpotifyFollowedArtists" + SPOTIFY_PLAYLIST = "SpotifyPlaylist" + SPOTIFY_SAVED_ALBUMS = "SpotifySavedAlbums" diff --git a/pyarr/sonarr.py b/pyarr/sonarr.py index f6401cc..1085153 100644 --- a/pyarr/sonarr.py +++ b/pyarr/sonarr.py @@ -26,57 +26,6 @@ def __init__(self, host_url: str, api_key: str, ver_uri: str = "/v3"): super().__init__(host_url, api_key, ver_uri) - def _series_json( - self, - tvdb_id: int, - quality_profile_id: int, - language_profile_id: int, - root_dir: str, - season_folder: bool = True, - monitored: bool = True, - ignore_episodes_with_files: bool = False, - ignore_episodes_without_files: bool = False, - search_for_missing_episodes: bool = False, - ) -> dict: - """Searches for new shows on trakt and returns Series JSON to add - - Args: - tvdb_id (int): TVDB id to search - quality_profile_id (int): Database id for Quality profile - language_profile_id (int): Database id for language - root_dir (str): Root directory for media - season_folder (bool, optional): Specify if a season folder should be created. Defaults to True. - monitored (bool, optional): Specify if the series should be monitored. Defaults to True. - ignore_episodes_with_files (bool, optional): Ignore episodes that already have files. Defaults to False. - ignore_episodes_without_files (bool, optional): Ignore episodes that dont have any files. Defaults to False. - search_for_missing_episodes (bool, optional): Search for any missing episodes and download them. Defaults to False. - - Returns: - dict: dictionary of series data - """ - series: dict[str, Any] = self.lookup_series(id_=tvdb_id)[0] - if not monitored and series.get("seasons"): - for season in series["seasons"]: - season["monitored"] = False - - return { - "title": series["title"], - "seasons": series["seasons"], - "rootFolderPath": root_dir, - "qualityProfileId": quality_profile_id, - "languageProfileId": language_profile_id, - "seasonFolder": season_folder, - "monitored": monitored, - "tvdbId": tvdb_id, - "images": series["images"], - "titleSlug": series["titleSlug"], - "addOptions": { - "ignoreEpisodesWithFiles": ignore_episodes_with_files, - "ignoreEpisodesWithoutFiles": ignore_episodes_without_files, - "searchForMissingEpisodes": search_for_missing_episodes, - }, - } - # POST /rootfolder def add_root_folder( self, @@ -499,7 +448,7 @@ def get_series(self, id_: Optional[int] = None) -> Union[JsonArray, JsonObject]: # POST /series def add_series( self, - tvdb_id: int, + series: JsonObject, quality_profile_id: int, language_profile_id: int, root_dir: str, @@ -516,7 +465,7 @@ def add_series( indeed make a "series". But it wont function properly in nzbdrone. Args: - tvdb_id (int): TVDB Id + series (JsonObject): A series object from `lookup()` quality_profile_id (int): Database id for quality profile language_profile_id (int): Database id for language profile root_dir (str): Root folder location, full path will be created from this @@ -529,19 +478,22 @@ def add_series( Returns: JsonObject: Dictionary of added record """ - series_json = self._series_json( - tvdb_id, - quality_profile_id, - language_profile_id, - root_dir, - season_folder, - monitored, - ignore_episodes_with_files, - ignore_episodes_without_files, - search_for_missing_episodes, - ) + if not monitored and series.get("seasons"): + for season in series["seasons"]: + season["monitored"] = False + + series["rootFolderPath"] = root_dir + series["qualityProfileId"] = quality_profile_id + series["languageProfileId"] = language_profile_id + series["seasonFolder"] = season_folder + series["monitored"] = monitored + series["addOptions"] = { + "ignoreEpisodesWithFiles": ignore_episodes_with_files, + "ignoreEpisodesWithoutFiles": ignore_episodes_without_files, + "searchForMissingEpisodes": search_for_missing_episodes, + } - response: dict[str, Any] = self._post("series", self.ver_uri, data=series_json) + response: dict[str, Any] = self._post("series", self.ver_uri, data=series) for item in response: if "errorMessage" in item: raise Exception(item) diff --git a/tests/__init__.py b/tests/__init__.py index f5d3676..a489d70 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -26,8 +26,8 @@ LIDARR_TERM = "Silvertin" LIDARR_ARTIST_TERM = "Silvertin" LIDARR_ALBUM_TERM = "Dawn" -LIDARR_MUSICBRAINZ_ARTIST_ID = "a2324db2-9f11-41cf-bdef-4ccea8aae4bf" -LIDARR_MUSICBRAINZ_ALBUM_ID = "1dc4c347-a1db-32aa-b14f-bc9cc507b843" +LIDARR_MUSICBRAINZ_ARTIST_ID = "171a57fb-1a66-4094-8373-72c7d1b0c621" +LIDARR_MUSICBRAINZ_ALBUM_ID = "f3f61963-359d-4f2f-8fc6-63856ffbe070" READARR_GOODREADS_ID = "489521" READARR_ASIN_ID = "9780691017846" diff --git a/tests/docker_configs/deluge/config/archive/state-2023-02-28T09-11-00.tar.xz b/tests/docker_configs/deluge/config/archive/state-2023-02-28T09-11-00.tar.xz deleted file mode 100644 index bc687950bf1a8de27f8742463bfd29533781e18c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 420 zcmV;V0bBn4H+ooF000E$*0e?f03iVu0001VFXf})C;tItT>uvg+ysD7GA8aFeH-)g z%QNik_&4zC)_Xa@yc<>@b#9&+*YTBN)!VIG#ciz=hC-Pj>Ht(`7Bh@f=0*x$D}GW7 zT&-^g-9y0HZvu~&r3kl_NL7sY*=nyLnNAuVrDle`otY8UUZ{wu(>)08x;L}_(~6oq z!%u6a;0@D1>M!J}Ljv#02Xr$<<)IMr`?I_rO2&_KD&FJfJ6EI4-sd4`Px;5S`e*ai z>Z0A=QlByJjHryY+M(#vm;;y#zVPu5nFeDik=vZr1ZOsaqBx4Fz6r~u?3o(=(xcy2<$8>E#xm$EN z+pS9U68EC0VqXGqfw2*h5Iy>t#cCSn+L_J3s;vNjoD_x1PlU7p0e}O5Pyhg4BA^?w O#Ao{g000001X)^%9LDkh diff --git a/tests/docker_configs/deluge/config/archive/state-2023-03-01T14-59-38.tar.xz b/tests/docker_configs/deluge/config/archive/state-2023-03-01T14-59-38.tar.xz deleted file mode 100644 index 229720ceb26b6b07925794bb6c1d0979274bd6a0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 424 zcmV;Z0ayP0H+ooF000E$*0e?f03iVu0001VFXf})C;tIuT>uvg+ysD7GA8aFeH-)g z%QNik_&4zC)_Xa@yc<>@b#9&+*YTBN)!VIG#ciz=hC-Pj>Ht(`7Bh@f=0*x$D}Mpv z5$IHb0boFacOn2J*cHCyS8Nbzmli~)bzI1i0J)TkO>E48wouQRe_aee2o0`H(*EDE za@)wgXo-vG&*3iwB9|o!%Cdk5%jN3?qy``wC+{p{l(_R57)36VA;u>W))q+#@(Yrz znDS6UFOU+x9`s}k`aJ*SyiI7@X};xvXS)|2^Q$Cgpl~lV)z3k;8jm-DVzfCC6mt6m zpm<_XICIR70k?%J=_R8qAZwm7q|nP^l(*_)04Kr@{T|ccyynSY@5hV|@a0R0Yv~6N zciISre5}gmlLpoq_!Lms%m?m)#`xDSooHK&lX|LC56R%ee)u6DJW^CFT4soVB+9&Y z>YzDHh{FF~`9TP3J@N9%_NiHfah7}$K)_|&Tb0=W0001wmbgBEt?aS@0f7U6Pyhh? S@%+%S#Ao{g000001X)_SWyLxG diff --git a/tests/docker_configs/deluge/config/archive/state-2023-03-13T15-21-08.tar.xz b/tests/docker_configs/deluge/config/archive/state-2023-03-13T15-21-08.tar.xz deleted file mode 100644 index 6989f413858e40ac1b0c241a8c0ddcbc60d9f80d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 416 zcmV;R0bl<8H+ooF000E$*0e?f03iVu0001VFXf})C;tInT>uvg+ysD7GA8aFeH-)g z%QNik_&4zC)_Xa@yc<>@b#9&+*YTBN)!VIG#ciz=hC-Pj>Ht(`7Bh@f=0*x$D}Sc5 zO@Q#ByZh?WocF6MMmCz}WC(XS-lVr({#SqF6(8x%z~7%iR4!kP@WFqnI19+LD8DgpWj4M^!MD&a|ZUTS?pEco( zotL-#F|xUysG}ZIlE79B#d8Zo|M+@r0001aYwEk?ABHdh0r~=fPyhf)C3%do#Ao{g K000001X)@;FvlwZ diff --git a/tests/docker_configs/deluge/config/archive/state-2023-03-19T19-46-46.tar.xz b/tests/docker_configs/deluge/config/archive/state-2023-03-19T19-46-46.tar.xz deleted file mode 100644 index edeca40293df052f6f9902814cfab8deba007ff5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 416 zcmV;R0bl<8H+ooF000E$*0e?f03iVu0001VFXf})C;tInT>uvg+ysD7GA8aFeH-)g z%QNik_&4zC)_Xa@yc<>@b#9&+*YTBN)!VIG#ciz=hC-Pj>Ht(`7Bh@f=0*x$Aee)NI9k z(4n}R83o#&fp*6JS#(<=y2on&q(qW0o5?j9BWVFvk~-k~00000Y$6D2GOx%00r~=fPyhf)C3%do#Ao{g K000001X)^^XTXU7 diff --git a/tests/docker_configs/deluge/config/auth b/tests/docker_configs/deluge/config/auth deleted file mode 100644 index acb303e..0000000 --- a/tests/docker_configs/deluge/config/auth +++ /dev/null @@ -1 +0,0 @@ -localclient:942f6f4ab8b0b0c14aed9417affdf2ff350a173f:10 diff --git a/tests/docker_configs/deluge/config/core.conf b/tests/docker_configs/deluge/config/core.conf deleted file mode 100644 index b1cf6fd..0000000 --- a/tests/docker_configs/deluge/config/core.conf +++ /dev/null @@ -1,95 +0,0 @@ -{ - "file": 1, - "format": 1 -}{ - "add_paused": false, - "allow_remote": false, - "auto_manage_prefer_seeds": false, - "auto_managed": true, - "cache_expiry": 60, - "cache_size": 512, - "copy_torrent_file": false, - "daemon_port": 58846, - "del_copy_torrent_file": false, - "dht": true, - "dont_count_slow_torrents": false, - "download_location": "/downloads", - "download_location_paths_list": [], - "enabled_plugins": [], - "enc_in_policy": 1, - "enc_level": 2, - "enc_out_policy": 1, - "geoip_db_location": "/usr/share/GeoIP/GeoIP.dat", - "ignore_limits_on_local_network": true, - "info_sent": 0.0, - "listen_interface": "", - "listen_ports": [ - 6881, - 6891 - ], - "listen_random_port": 51765, - "listen_reuse_port": true, - "listen_use_sys_port": false, - "lsd": true, - "max_active_downloading": 3, - "max_active_limit": 8, - "max_active_seeding": 5, - "max_connections_global": 200, - "max_connections_per_second": 20, - "max_connections_per_torrent": -1, - "max_download_speed": -1.0, - "max_download_speed_per_torrent": -1, - "max_half_open_connections": 50, - "max_upload_slots_global": 4, - "max_upload_slots_per_torrent": -1, - "max_upload_speed": -1.0, - "max_upload_speed_per_torrent": -1, - "move_completed": false, - "move_completed_path": "/downloads", - "move_completed_paths_list": [], - "natpmp": true, - "new_release_check": true, - "outgoing_interface": "", - "outgoing_ports": [ - 0, - 0 - ], - "path_chooser_accelerator_string": "Tab", - "path_chooser_auto_complete_enabled": true, - "path_chooser_max_popup_rows": 20, - "path_chooser_show_chooser_button_on_localhost": true, - "path_chooser_show_hidden_files": false, - "peer_tos": "0x00", - "plugins_location": "/config/plugins", - "pre_allocate_storage": false, - "prioritize_first_last_pieces": false, - "proxy": { - "anonymous_mode": false, - "force_proxy": false, - "hostname": "", - "password": "", - "port": 8080, - "proxy_hostnames": true, - "proxy_peer_connections": true, - "proxy_tracker_connections": true, - "type": 0, - "username": "" - }, - "queue_new_to_top": false, - "random_outgoing_ports": true, - "random_port": true, - "rate_limit_ip_overhead": true, - "remove_seed_at_ratio": false, - "seed_time_limit": 180, - "seed_time_ratio_limit": 7.0, - "send_info": false, - "sequential_download": false, - "share_ratio_limit": 2.0, - "shared": false, - "stop_seed_at_ratio": false, - "stop_seed_ratio": 2.0, - "super_seeding": false, - "torrentfiles_location": "/config/torrents", - "upnp": true, - "utpex": true -} \ No newline at end of file diff --git a/tests/docker_configs/deluge/config/deluged.log b/tests/docker_configs/deluge/config/deluged.log deleted file mode 100644 index dd9c9be..0000000 --- a/tests/docker_configs/deluge/config/deluged.log +++ /dev/null @@ -1,3 +0,0 @@ -Exiting... -Exiting... -Exiting... diff --git a/tests/docker_configs/deluge/config/deluged.pid b/tests/docker_configs/deluge/config/deluged.pid deleted file mode 100644 index 66d1b1c..0000000 --- a/tests/docker_configs/deluge/config/deluged.pid +++ /dev/null @@ -1 +0,0 @@ -128;58846 diff --git a/tests/docker_configs/deluge/config/hostlist.conf b/tests/docker_configs/deluge/config/hostlist.conf deleted file mode 100644 index ad315cc..0000000 --- a/tests/docker_configs/deluge/config/hostlist.conf +++ /dev/null @@ -1,14 +0,0 @@ -{ - "file": 3, - "format": 1 -}{ - "hosts": [ - [ - "e2a02e4d50f6454ba6db0f2891749d4a", - "127.0.0.1", - 58846, - "localclient", - "942f6f4ab8b0b0c14aed9417affdf2ff350a173f" - ] - ] -} \ No newline at end of file diff --git a/tests/docker_configs/deluge/config/session.state b/tests/docker_configs/deluge/config/session.state deleted file mode 100644 index 121ba2b475c693743197c4e57f8e45baffa37212..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5411 zcmZWtd036<`)8D842H-kCQXH+(>c|7)zer~G$LAQk=N;*w>mmY&eCFJDOp0wI($Qx zOp{WUYC@utN@zoAnL*PGO_pI~_xn6YznSlKeXsM!b3M;}Klk#vm*+jV#EwY9H4=dX z5ru`RIJH_D#j!G_GC~`vmI^q5kc7yT;s{nH(r_}VT&j@@Ie}g8p++j_lv<6{j?br@ zoFY`I5_7CVDdAYDM9SxEZ3!2n;S>^1!m22zB8=6DLS!67+wzGtOrcb9tVE=WV5JHT zr&4els??51HJqH4Nkg%ha}b0hxhRH(sVpU_rBkU&d);BENGfB+O07a8wdHe;y0b`* zQ>mrGPj=Cpx&v0lMap8O0vy|Zx~oyDRGdP?syUHL9NtTZ6oIWyOfOjt!JkA$s-#gO zaqK?`QGF^-Bw>{b2!>cbwrY(^D%Sktu=Ep>l(Co6tF4#7kluZWN~92n10!Gzxo~#8 zS_9lAQwfFCS}Kvj?CmcFM?=n+#r1tN;FmHy$K3Quu}kTlYT0;$A!jeV?OC}P^tSVJ zseEnIxP)QpRF0REFAKh*dt`^ZaQW7p6gTx9yh8)@kA@aj67ZpPx@4oB3jZ2~DU5*3w>x5535nWek!pBoN z1*^OBKjA;;jVJVL8?4!oV#u`~o?4>9zI1Q4MK<`fCKI1GU|)aM(u9w-<@@|2XMlrs zwZRV9p&jhTqxL)bKUzfniF_43ite>#q00VbDrs&~bb_FSr0`|;xV znoz7&*E*gcKE`+QmerbrZ)tG>^`Glw<)Q5ay>#aE6zeecyNm z9s|F&;$t|CQ?-xfyQg!3lar#^xf|#0xqGOb6Be7=NA9BX7iSyh123{+_W2W_zp{;{ zctoE&@Zr>Ds%OWLF$oO0ruGZh();x#8))9N>|gb>3Gy%U)l2qGUxwuN$#C?U40`RO zsRgAtH}OudhMm*;cIt3t<8vK+wbTce5MHc zThynh-)-rq5@tIvH{f*SF z#~Wyzj7w#IP&r|zifqJ)t5fjs2b168{>QT!{?Bk8c(6Q_VE8UD}O;^my{vA<0Zy}T^V8>RGa=`J@^_7;^n&aqLA|a#IIRT z?QZpq4ZDZB)L-b^c=HYVO?})o!wC$z(cCm-Qwu|E=R9j^tzk&O##zo=1|pC6nKNBo zQ2&p%vh==H$Zt7;h)>Y{Y*RA>hJ3a1yt5JVY*kuw<0B37V}!m9)n~zHQySn0?~nTY zH$sLSSlPPV=mA6gE?qF!|BN9^E1a(`|B4~aE@@^|uC>v@D{t!=QWW8qD33;eT*)?5 zImzpr3o2F6m%sNJ<%>(sOQCB~|Kg0|pWw$TvO=_o92Yk8~9P_s4f<(7i=!t?~-u!26@2f)8ANlN-9PC5zq$zAof5zK_1nGBXQ`U#`8DD)!~7Ao!{?EmlL^j`v@ZH?;yZ?H z%x`?(@eShh<(C(FAV+`WksXxp)~1DzD}QImx*e0eDL#8Wjepc4?=lRd3XO4pucy_% z$AJvlwsdr1Ecw}dQJOc6E@cGT1&bs)tGJfE*Zi+jLI0OF_ zIqINY88hGz`r)l(cdR=U)W6suDz7Mloh?UQ!S2V@9w)t-#Rm~DdG$2CfhM3|bI`kb z9(u0T^gA~Q^yBL<(fr6WS>yT|xSt;1982YR6}S(i_r0?8_o}J9JuRvCU!oq5Zm%&J z%#hE#^OfbPpr05y>slTBci7B3hx!i~{R3l`z>u=y+9^BH*KVyHe5!64jYIJ7E!GSv zy}5H7l^d|TW)WS(Mjf*l*q0%J`@j3%&Wa(cliez){<8hgYK{9N4@ck5T8aK-!4Ejs z@f2}gZnuTfPajF`l&?a578sdcuV%=(A5dvtvl~ao)69;PLWIJTdeP+t3Ta4@3VXEh8OQqXNHM`seN~YvN)qh$j^-T zM!^-ZbFbI7ap2$UX@1{qBH|<$Lk3)GWLm}5Ab6DjIoxTC|{^H;K?0bMyp19WB9R05>E8Bve`wbua zp8Dlqb^M^G9`GzaA6SWcU4B;UWQ+J}9e=**JD(w$R}LN7F#&#CRaVS}zTAWh9$k*; zAHJ!9Vth|5H8}Y_l~=TWgC3RV(IbzEb707h###H;pQCYUzbO|%|DfiCM|sHmV`Z~x zek@80*hl%<%*^sG^dD!FZUL2Z%iZ^=;T(p9^OMzdUwG&8nFz$I!lL3?74p1n|C!Hn z;~8?{ubaC17*Qt`TpGm?yTT33+R?CMcfh2pYKC0)@IKrPd@qlFGx-ku3D{j3EZ<1u z<+fG6miEh=VRsrJCq8Kp#l3aOyvO72FeGGI|8Oz#ZIj^3YHA-ZBzE&$jIyBVF3yFS^f?E=N)M+4K}VRza9`(kIrYrxk@RDaRxC%XQhlD#@ugE(CD$;zem zg}!%jF7VQy=%K^AXjD^XH~M(l{yZ~N*opq_LJlL(oF?nuVXr>osxH*0SE270JC@*m zx_>Fb8+cmJKR54E0YiRt`1?<_H}HA>?7MX6Z5o)Z;?+y^9IxJ zqLj^nx$0Pkd@Bql&dBf6f_eSvz0)p7&E_HBEY5Q!)bGHc|8&wmZ5I?3Y>IxNKjPgK z{yyAGYtSrusq=q&CHkAIa%m^cL-a+vr&!OeocF;9b#yl4)?0h@rxwfceXl@X-k>?U z{;=nD@YmvXG#=OWjK`qQt>)!xg{ZIQr*%|s(E5?i{gKB-w?{bAy-VTpAvFHJf1NX> z`-XQ`M-FIctskLdY3im`UH`_$MO{nu_qQ7&r(`A+K@# z^J@79=-c_1e;ndbWO6K54>-;|8-MsH@LS+597n$cJuSzqk|2MFT8S2x8zNuk1ynA~ zhrFBTSDQkv=Zi4~w_WKwF3S~*f#;TzMYT$XEKJy(Pvd}h!cD%1A#OhDe^P(-*FBI7 z=nGuZqpgnvZ?CL`rktCo^NVE%DgQh&XnbNi-c9ERk|}?p-z+NedHEdQ8=t*Ql^{Rj zqMOh4?~nLr7wo(QyQh_Pg$J$#eg~4gOi&kXyRy5|(MPw~7z{USMIEjF>Hgc{DCo;|d_&JYEVh<^4ShLxO(*4o&eQz)fy%$!r@7CvB=p}G z;~qa)jQ91`q<$jg6Kj&)F!nRxoXw4mvqXPXd??Y^XGqDJjrz2na{@AdUuI0-wUlRG z9~m-HariaWQ{~THpN>2&^uF=Xa6dzWm*yEZpx&%IlG+jzVOL9Ww?6v5&A3dar3vSH z)om?vpyxzf_uEF`d9qaEc7Y+koOw8ZI_yw%tk->qet&oFmw~Y7=C0v^>G*D98@4T9 zhJIT$$UH|=fqrUW=g_|&?5W*+X+R-E1lK>l8v}cd9eWOE+@Nx!?5KU`zk1rCe+hQn zPqK-r#k-w!QBh?M`zJe2zKwj0G?!URry_6q__^l~Lw%==a*r=TUZvI#qxaj={oFU9 z?-jm3`3*0GA^BD|>#W?-KWn4+Q9S+jbuK6#g8v5#udku}OUInt+yOsr#^sb}FVkGKkMXlf&lAs?Sz?l&Iq`~jY(w#5_uiP%r4_j%WE`AE}&uh;cx zx^H`UY(v^n1dxXB4Ky` z^f40*(8u|zihTHA;*(fc;spEtx-aW{`GP7xLIe*O93A)q zI}Weur_&W$PRp@s=}OF?Fx1hFdc-1eILC4^ky2Hxl)(|7d^*yx2?e(Fx>%`Da8RXG zuxd<`By`v$&`oLB5T#Os(T*rmH~LZwgnT-@;fXLY(@51ku~JSL2M56vIs)TVyb!4d zN1Wzg0_Dbig<3Af1Wu_4`7hePmwKmB|6c1QY5#{n<;kQW|9`Gjg%Mk!Jzs$Fkwl4c zmu_0ds%6S(_MZ_Kyb+Rckt~!|Msf-a-*m%1-K4B{PKWuGR?e|>B!{__{L@%#Dv?Rm z81a1?;Dw6BoEpPAK2P@}Lcvr2j#StYjrG@w)?7&@bRZ5HqyXjmPI7Sl9k v1cEI?czTKUG`Lzd?u)`O__GrbS5Br4<7{ks0-j*}zo6lO&vW4MIqv@es@}2X diff --git a/tests/docker_configs/deluge/config/session.state.bak b/tests/docker_configs/deluge/config/session.state.bak deleted file mode 100644 index 9182f07998651569cde5fb6eb1d2049d5a0e3140..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2011 zcmZuydr(wW7}xPp>X=hRD$WQ@N)KV%yXzj7569H-tprLSHgvsv_w4R;s}n?l#19`Q|kCigPQuzvf&>!JF{oL_jkVExxdeC z2e;33b50PvUY#0-lt+14)BM4JA#s#*fJ@dyKd%cWl_f1bUVW$|?^5%zv&)W@!|H8G6D-9S&GUhVPBDL@psP>NGQ(qb-jRc)s_`ui4t%X8?hm)u}mceem=~&RT_e>t@e4YS1s; z8P$9IT>_;wW3-tVzo~V1Wm8{fFKLWwC-8RO@A>m@F@0mvuWu5_-Y|0Mg-QbB*ZC_- zI|yv+n|}YopExgjOmx;T0>?WBmG#ZR_@ASu#8wlyxa1{w>E8tQ=guffTZ!?l`#R3A z#dCu8+t7;yKB&(gk>thsG;*h>qrN(3O!c8E0yFn!^=J24b?ADq>j44ZogZ@M<`J0X zYf3v7OR(X%b=M`txva@AjY-#yr z0?8xJ#FgDgeCqn=MdSQh+V`BT7=!200p(@Q1Oi{)dRVp`@mW!Gq8a-Q>{)5hdS3c)_IH&`N$d`MvPvQOJO@LgonPjm2lT z&Q5tyMX3|Nbd!;w;YNZHL^DLTAy#!#&I*D|b(2>F!;gfMAbL zok&I@iV_9UM|qkbkn{qHpvnr}s*sz5v$1edQ&ozkG?h1y1>KA!xe&YXE=@C$l7v8r zvJK9G?1d~%b&E?fMNOfm1^EiF(sp?1k#>cLz)h;Ja5R_BEE;3@iq?d39^UR0#wDN5n56qh7a!- zp%Pv9m zBikndTPwWV5Cd#S;fKXU4+2be+!U(mgoKpIHjXnA5SoBaJ!sa&vE7T+Krlj0g?r|# zP6lfd1aS*!egs=ac*4f94BViB@q!l@mYstXDhIvv4V#6ta4}COi3+R5X|YoJ4_Hzj ASpWb4 diff --git a/tests/docker_configs/deluge/config/ssl/daemon.cert b/tests/docker_configs/deluge/config/ssl/daemon.cert deleted file mode 100644 index e0f4b91..0000000 --- a/tests/docker_configs/deluge/config/ssl/daemon.cert +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICpDCCAYwCAQAwDQYJKoZIhvcNAQELBQAwGDEWMBQGA1UEAwwNRGVsdWdlIERh -ZW1vbjAeFw0yMzAyMjUxNTUwMTZaFw0yNjAyMjQxNTUwMTZaMBgxFjAUBgNVBAMM -DURlbHVnZSBEYWVtb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCP -sWE2Gk0meLr/SgMnSz+3g42e+1Xb3tiDuzOrQWRJT2ZNuhfU7ZvTCX+Y+sEtnTB+ -onSfSJ+/qQBKY7RG9a3s7mec8HbzNEXYakwxTd6ae5rJl/zz6sE9Xa+D5a2k/mNO -jyI1VYTgAl7MoVVCWAysZHguidPNL+ussDoRkrYe71SKr3mm+Tehm6q4jMR0dIVX -EcLK6bJjGdTY14EDTJzxUCxDw+blyr6EdVPIyh2G57+SvxHflkdNF53mtXJcJFQS -zqlDgjo60CA0Mg/tAD3bslt6dII29oMfH0F0VM2rg78skbf0tPZ7cfpE4VDQ/7lD -cVIqYNReXgQ5vJ+/RFl9AgMBAAEwDQYJKoZIhvcNAQELBQADggEBABBLQg1/IBhW -KGTpMuiRrTuzTcttqKG9Hpn3MECy7V/JFOHWUkkyGVAA4D/vXdCLQzYOR7oobhzS -hPGQbaqCMhlRuiOdtq3Smfw9xirvIW7QPa0JeivI4Uyn/p4T1+3SUffN1VBKLoFa -yc0L/3I99OkW8aAUhycaAgm0SblfOm4n4Sf06RgxApE3PqigEQ9WrzJpNSiQZdTz -WPqT6dzhcErm5pLVW7uc9HNUg/B/SIQ/tCmjZMOyN7NrQSRTZcabOrFmaoToImPd -iLiA3AXBVF8v/qkfePXtBb0RhY2L8jXx3++fWVqkgXY8JqA65XWuk7bJ2Lo0cOg1 -zIMtFiVOAWo= ------END CERTIFICATE----- diff --git a/tests/docker_configs/deluge/config/ssl/daemon.pkey b/tests/docker_configs/deluge/config/ssl/daemon.pkey deleted file mode 100644 index 993621a..0000000 --- a/tests/docker_configs/deluge/config/ssl/daemon.pkey +++ /dev/null @@ -1,28 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCPsWE2Gk0meLr/ -SgMnSz+3g42e+1Xb3tiDuzOrQWRJT2ZNuhfU7ZvTCX+Y+sEtnTB+onSfSJ+/qQBK -Y7RG9a3s7mec8HbzNEXYakwxTd6ae5rJl/zz6sE9Xa+D5a2k/mNOjyI1VYTgAl7M -oVVCWAysZHguidPNL+ussDoRkrYe71SKr3mm+Tehm6q4jMR0dIVXEcLK6bJjGdTY -14EDTJzxUCxDw+blyr6EdVPIyh2G57+SvxHflkdNF53mtXJcJFQSzqlDgjo60CA0 -Mg/tAD3bslt6dII29oMfH0F0VM2rg78skbf0tPZ7cfpE4VDQ/7lDcVIqYNReXgQ5 -vJ+/RFl9AgMBAAECggEAAKHuxB60hT1V0WbhgaxGoQeuuWrw01F1UYsi7JeSmfIE -CMaPcUwEehbaHXHJJOrCumP7sHHQ5jaXvjwXIJLXS6o3AY1bcLGjtxKsuDDYEIUH -xuho4CgB5sPBUIrTy1ylUkS2CVcRiSzpfuwc5HhfweiFUOshaA9UccOq1cX4EEXK -wEvtK92s+KYd5doSqSB0EKZF3z30oY8XLL+lHIe0NZge18cgJrDJ0HL9CMzJeGx+ -ECzsPR1V1wAab1PiU2AjVh2vW5BQsCfvZUEnwL2FGk/7u5DogrBbLvPeYckyMylQ -ajJ9KpSH8RAlkCLXRD5i/kpeDlQhgcFZF3qkTEGhcQKBgQDIM1n34PSnGiGpP14t -EBk7raJXhoVDawlMEszl/J2aLmqleb6wlVC62HYnlw/snk7utNVeIv7pP9FLBKC2 -VtA2gMVYKwZ9NJ+rsjeF/xH4+QtK9Fttw0AN5ZR8nypXUTzxGkBF/AfG3IA0t8Cb -UGai2UeL6qoN3dGB/YwEylSepQKBgQC3vhvblHZKJAPyapETcZDNV3/Q2vNovqJL -sHYZUWJ8gdPV2nbbFKJiaEorDQ+UjFh+o1w/BGaaiY3QD38UhnhPCV2jZfkTH16N -L2kB0Gf5nAgwbK75TTs61FaP5fTKVWI+wTYO+IBbBHemPj0wxMmucA31jE3FRatC -DkjC+lLv+QKBgBWrqVNxoEnuRDKDz3flRDX3h5kd0JMJpQn9BvzmKVElMRoUYZXP -s9tlzvReH7UnNbgVDvuPojQxWkBakeLq5sLfkX0Huz4WUipNskDo6VMf8h788GCj -P+3BKh+LQxQMkSIwC0EIFPdrqt0J/ulQ/KsoBdyZXCsAFcuSXHOwSxSZAoGBAIpF -56Lz85zRw6KfbbPLJ+RPr6FV1A2EQJBjKEzfQRVfgjISKJWvzo/t2brSJmJsx3/t -odLOlgQ/9deYgdLJaypXav83Exy/46CuCADUfBqMwGDouThlVWhtOQMrU28cmEWP -kwXrHnTgRMZ3WgckYH4EV4zs2+3UAxA/vaP1S4rJAoGAXO0z9ysHcuCDgGZX1RNU -Jddp6WMGtw+Y1yGj5zSDdfiK07id53zjWP8DEuAo9Jy6nalSkFVFJz8/9Jm/YdCo -7JpMF6OaWK47Ltdp8mcT6A3MesbFs7xLry0fcVU/DR8X0UIDmq0/GR9zZzXY/Hwf -AlYl8AV1GXUH7WvWoXc5RJU= ------END PRIVATE KEY----- diff --git a/tests/docker_configs/deluge/config/state/.safe_state_check b/tests/docker_configs/deluge/config/state/.safe_state_check deleted file mode 100644 index e69de29..0000000 diff --git a/tests/docker_configs/deluge/config/state/torrents.state b/tests/docker_configs/deluge/config/state/torrents.state deleted file mode 100644 index b57309cade3c5b60b7f668f46b1b798d763d3784..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 80 zcmZo*N=`}5DNRq+OU^G!)ho#_DoV{O$xX~lOiwN13W0EaA>81S#FA95LI%yoLdM!c VrU(uO1_r2x;zH)wLYCqrJpiAy8?OKW diff --git a/tests/docker_configs/deluge/config/state/torrents.state.bak b/tests/docker_configs/deluge/config/state/torrents.state.bak deleted file mode 100644 index b57309cade3c5b60b7f668f46b1b798d763d3784..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 80 zcmZo*N=`}5DNRq+OU^G!)ho#_DoV{O$xX~lOiwN13W0EaA>81S#FA95LI%yoLdM!c VrU(uO1_r2x;zH)wLYCqrJpiAy8?OKW diff --git a/tests/docker_configs/deluge/config/web.conf b/tests/docker_configs/deluge/config/web.conf deleted file mode 100644 index e462be9..0000000 --- a/tests/docker_configs/deluge/config/web.conf +++ /dev/null @@ -1,24 +0,0 @@ -{ - "file": 2, - "format": 1 -}{ - "base": "/", - "cert": "ssl/daemon.cert", - "default_daemon": "", - "enabled_plugins": [], - "first_login": true, - "https": false, - "interface": "0.0.0.0", - "language": "", - "pkey": "ssl/daemon.pkey", - "port": 8112, - "pwd_salt": "c26ab3bbd8b137f99cd83c2c1c0963bcc1a35cad", - "pwd_sha1": "2ce1a410bcdcc53064129b6d950f2e9fee4edc1e", - "session_timeout": 3600, - "sessions": {}, - "show_session_speed": false, - "show_sidebar": true, - "sidebar_multiple_filters": true, - "sidebar_show_zero": false, - "theme": "gray" -} \ No newline at end of file diff --git a/tests/docker_configs/jackett/config/jackett/Jackett/DataProtection/key-992d35cd-3ce7-4994-b3b3-cf6630deeec7.xml b/tests/docker_configs/jackett/config/jackett/Jackett/DataProtection/key-992d35cd-3ce7-4994-b3b3-cf6630deeec7.xml deleted file mode 100644 index 176fab7..0000000 --- a/tests/docker_configs/jackett/config/jackett/Jackett/DataProtection/key-992d35cd-3ce7-4994-b3b3-cf6630deeec7.xml +++ /dev/null @@ -1,16 +0,0 @@ -๏ปฟ - - 2023-02-28T09:15:33.243488Z - 2023-02-28T09:15:33.2344714Z - 2023-05-29T09:15:33.2344714Z - - - - - - - e4dLZlzAPmADuJ3hLF7ecnD9bA2gN8EGUKWuySStPnMGme+EuR0WZiLhGnyg0qzyVQGTExHDwZGwWpMgKy+KUA== - - - - \ No newline at end of file diff --git a/tests/docker_configs/jackett/config/jackett/Jackett/Indexers/1337x.json b/tests/docker_configs/jackett/config/jackett/Jackett/Indexers/1337x.json deleted file mode 100644 index e456009..0000000 --- a/tests/docker_configs/jackett/config/jackett/Jackett/Indexers/1337x.json +++ /dev/null @@ -1,67 +0,0 @@ -[ - { - "id": "sitelink", - "type": "inputstring", - "name": "Site Link", - "value": "https://1337x.to/" - }, - { - "id": "cookieheader", - "type": "hiddendata", - "name": "CookieHeader", - "value": "" - }, - { - "id": "lasterror", - "type": "hiddendata", - "name": "LastError", - "value": null - }, - { - "id": "downloadlink", - "type": "inputselect", - "name": "Download link", - "value": "http://itorrents.org/", - "options": { - "http://itorrents.org/": "iTorrents.org", - "magnet:": "magnet" - } - }, - { - "id": "downloadlink(fallback)", - "type": "inputselect", - "name": "Download link (fallback)", - "value": "magnet:", - "options": { - "http://itorrents.org/": "iTorrents.org", - "magnet:": "magnet" - } - }, - { - "id": "sortrequestedfromsite", - "type": "inputselect", - "name": "Sort requested from site", - "value": "time", - "options": { - "time": "created", - "seeders": "seeders", - "size": "size" - } - }, - { - "id": "orderrequestedfromsite", - "type": "inputselect", - "name": "Order requested from site", - "value": "desc", - "options": { - "desc": "desc", - "asc": "asc" - } - }, - { - "id": "tags", - "type": "inputtags", - "name": "Tags", - "value": "" - } -] \ No newline at end of file diff --git a/tests/docker_configs/jackett/config/jackett/Jackett/Indexers/1337x.json.bak b/tests/docker_configs/jackett/config/jackett/Jackett/Indexers/1337x.json.bak deleted file mode 100644 index 0323226..0000000 --- a/tests/docker_configs/jackett/config/jackett/Jackett/Indexers/1337x.json.bak +++ /dev/null @@ -1,67 +0,0 @@ -[ - { - "id": "sitelink", - "type": "inputstring", - "name": "Site Link", - "value": "https://1337x.to/" - }, - { - "id": "cookieheader", - "type": "hiddendata", - "name": "CookieHeader", - "value": null - }, - { - "id": "lasterror", - "type": "hiddendata", - "name": "LastError", - "value": null - }, - { - "id": "downloadlink", - "type": "inputselect", - "name": "Download link", - "value": "http://itorrents.org/", - "options": { - "http://itorrents.org/": "iTorrents.org", - "magnet:": "magnet" - } - }, - { - "id": "downloadlink(fallback)", - "type": "inputselect", - "name": "Download link (fallback)", - "value": "magnet:", - "options": { - "http://itorrents.org/": "iTorrents.org", - "magnet:": "magnet" - } - }, - { - "id": "sortrequestedfromsite", - "type": "inputselect", - "name": "Sort requested from site", - "value": "time", - "options": { - "time": "created", - "seeders": "seeders", - "size": "size" - } - }, - { - "id": "orderrequestedfromsite", - "type": "inputselect", - "name": "Order requested from site", - "value": "desc", - "options": { - "desc": "desc", - "asc": "asc" - } - }, - { - "id": "tags", - "type": "inputtags", - "name": "Tags", - "value": "" - } -] \ No newline at end of file diff --git a/tests/docker_configs/jackett/config/jackett/Jackett/ServerConfig.json b/tests/docker_configs/jackett/config/jackett/Jackett/ServerConfig.json deleted file mode 100644 index 0c2569a..0000000 --- a/tests/docker_configs/jackett/config/jackett/Jackett/ServerConfig.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "Port": 9117, - "AllowExternal": true, - "AllowCORS": false, - "APIKey": "kk8487s588bhn8uvxskwdtuencjjar5f", - "AdminPassword": null, - "InstanceId": "2n71zqg1oqjao1wghugwackupdrq38g4mp9cv6e6m2vfy7lm2qykdj8vm3ke1i9a", - "BlackholeDir": null, - "UpdateDisabled": false, - "UpdatePrerelease": false, - "BasePathOverride": null, - "BaseUrlOverride": null, - "CacheEnabled": true, - "CacheTtl": 2100, - "CacheMaxResultsPerIndexer": 1000, - "FlareSolverrUrl": null, - "FlareSolverrMaxTimeout": 55000, - "OmdbApiKey": null, - "OmdbApiUrl": null, - "ProxyType": 0, - "ProxyUrl": null, - "ProxyPort": null, - "ProxyUsername": null, - "ProxyPassword": null, - "ProxyIsAnonymous": true -} \ No newline at end of file diff --git a/tests/docker_configs/jackett/config/jackett/Jackett/log.txt b/tests/docker_configs/jackett/config/jackett/Jackett/log.txt deleted file mode 100644 index a423b39..0000000 --- a/tests/docker_configs/jackett/config/jackett/Jackett/log.txt +++ /dev/null @@ -1,616 +0,0 @@ -2023-02-28 09:15:29.5222 Info Starting Jackett v0.20.3269 -2023-02-28 09:15:30.5915 Info Environment version: 6.0.14 (/app/Jackett/) -2023-02-28 09:15:30.5941 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) -2023-02-28 09:15:30.5954 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-02-28 09:15:30.5965 Info File /etc/issue: Welcome to Alpine Linux 3.17 -2023-02-28 09:15:30.5970 Info Running in Docker: Yes (image build: v0.20.3269-ls95) -2023-02-28 09:15:30.5989 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads -2023-02-28 09:15:30.5989 Info App config/log directory: /config/Jackett -2023-02-28 09:15:30.6002 Info Using proxy: Disabled -2023-02-28 09:15:30.6002 Info Using FlareSolverr: No -2023-02-28 09:15:30.6082 Info Using HTTP Client: HttpWebClient2 -2023-02-28 09:15:30.6306 Info Loading Native indexers ... -2023-02-28 09:15:30.8857 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api -2023-02-28 09:15:30.8915 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions -2023-02-28 09:15:32.9973 Info Loaded 494 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, cloudtorrents, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornleech, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker -2023-02-28 09:15:32.9979 Info Loaded 570 indexers in total -2023-02-28 09:15:32.9996 Info Adding aggregate indexer ('all' indexer) ... -2023-02-28 09:15:33.0235 Info Adding filter indexer ('type:public' indexer) ... -2023-02-28 09:15:33.0242 Info Adding filter indexer ('type:private' indexer) ... -2023-02-28 09:15:33.0242 Info Adding filter indexer ('type:semi-public' indexer) ... -2023-02-28 09:15:33.2622 Warn No XML encryptor configured. Key {992d35cd-3ce7-4994-b3b3-cf6630deeec7} may be persisted to storage in unencrypted form. -2023-02-28 09:15:33.3340 Info Jackett startup finished in 5.619 s -2023-02-28 09:16:38.1358 Info Jackett stopped -2023-02-28 09:28:23.2128 Info Starting Jackett v0.20.3269 -2023-02-28 09:28:24.2356 Info Environment version: 6.0.14 (/app/Jackett/) -2023-02-28 09:28:24.2368 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) -2023-02-28 09:28:24.2380 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-02-28 09:28:24.2380 Info File /etc/issue: Welcome to Alpine Linux 3.17 -2023-02-28 09:28:24.2387 Info Running in Docker: Yes (image build: v0.20.3269-ls95) -2023-02-28 09:28:24.2404 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads -2023-02-28 09:28:24.2404 Info App config/log directory: /config/Jackett -2023-02-28 09:28:24.2416 Info Using proxy: Disabled -2023-02-28 09:28:24.2418 Info Using FlareSolverr: No -2023-02-28 09:28:24.2493 Info Using HTTP Client: HttpWebClient2 -2023-02-28 09:28:24.2701 Info Loading Native indexers ... -2023-02-28 09:28:24.5193 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api -2023-02-28 09:28:24.5252 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions -2023-02-28 09:28:26.7100 Info Loaded 494 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, cloudtorrents, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornleech, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker -2023-02-28 09:28:26.7100 Info Loaded 570 indexers in total -2023-02-28 09:28:26.7125 Info Adding aggregate indexer ('all' indexer) ... -2023-02-28 09:28:26.7384 Info Adding filter indexer ('type:public' indexer) ... -2023-02-28 09:28:26.7389 Info Adding filter indexer ('type:private' indexer) ... -2023-02-28 09:28:26.7389 Info Adding filter indexer ('type:semi-public' indexer) ... -2023-02-28 09:28:27.0413 Info Jackett startup finished in 5.346 s -2023-02-28 09:45:58.7057 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 09:46:05.8350 Info Torznab search in 1337x => Found 20 releases -2023-02-28 09:46:13.5622 Warn Request to IPTorrents failed with exception 'The request was canceled due to the configured HttpClient.Timeout of 100 seconds elapsing.'. Retrying in 0.5s... (Attempt 1 of 2). -2023-02-28 09:46:40.8895 Warn Request to IPTorrents failed with exception 'Network unreachable (iptorrents.com:443)'. Retrying in 1s... (Attempt 2 of 2). -2023-02-28 09:46:43.2272 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 09:46:43.2368 Info Torznab search in 1337x => Found 20 releases (from cache) -2023-02-28 09:47:31.7757 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 09:47:31.7769 Info Torznab search in 1337x => Found 20 releases (from cache) -2023-02-28 09:48:21.9194 Error System.Exception: Your cookie did not work, make sure the user agent matches your computer: The request was canceled due to the configured HttpClient.Timeout of 100 seconds elapsing. System.Exception: Your cookie did not work, make sure the user agent matches your computer: The request was canceled due to the configured HttpClient.Timeout of 100 seconds elapsing. - at Jackett.Common.Indexers.IPTorrents.ApplyConfiguration(JToken configJson) in /home/vsts/work/1/s/src/Jackett.Common/Indexers/IPTorrents.cs:line 196 - at Jackett.Server.Controllers.IndexerApiController.UpdateConfig(ConfigItem[] config) in /home/vsts/work/1/s/src/Jackett.Server/Controllers/IndexerApiController.cs:line 97 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Jackett.Server.Middleware.CustomExceptionHandler.Invoke(HttpContext httpContext) in /home/vsts/work/1/s/src/Jackett.Server/Middleware/CustomExceptionHandler.cs:line 61 -2023-02-28 10:04:16.0034 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:04:21.1475 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases -2023-02-28 10:04:21.1643 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:04:27.7230 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 32 releases -2023-02-28 10:05:49.6471 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:05:49.6515 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases (from cache) -2023-02-28 10:05:51.6414 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:05:51.6428 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 32 releases (from cache) -2023-02-28 10:07:04.5848 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:07:04.5863 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases (from cache) -2023-02-28 10:07:06.5934 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:07:06.5947 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 32 releases (from cache) -2023-02-28 10:09:20.2742 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:09:20.2773 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases (from cache) -2023-02-28 10:09:22.1289 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:09:22.1310 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 32 releases (from cache) -2023-02-28 10:27:04.7846 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:27:09.9358 Info Torznab search in 1337x for Plane 2023 => Found 18 releases -2023-02-28 10:27:12.5553 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:27:15.1834 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:27:15.1840 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases (from cache) -2023-02-28 10:27:17.1655 Info Torznab search in 1337x for Black Panther: Wakanda Forever 2022 => Found 60 releases -2023-02-28 10:27:17.1829 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:27:17.1829 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 32 releases (from cache) -2023-02-28 10:28:12.5496 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:28:12.5522 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases (from cache) -2023-02-28 10:28:14.5623 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:28:14.5633 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 32 releases (from cache) -2023-02-28 10:28:19.6063 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:28:24.8383 Info Torznab search in 1337x => Found 20 releases -2023-02-28 10:28:26.7689 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-02-28 10:28:26.9834 Info New release found. Current version: v0.20.3269 New version: v0.20.3403 -2023-02-28 10:28:26.9839 Info Downloading release v0.20.3403 It could take a while... -2023-02-28 10:28:31.6802 Info Starting updater: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "135" --NoRestart -2023-02-28 10:28:31.6813 Info Updater started process id: 294 -2023-02-28 10:28:39.9761 Info Starting Jackett v0.20.3403 -2023-02-28 10:28:40.9721 Info Environment version: 6.0.14 (/app/Jackett/) -2023-02-28 10:28:40.9733 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) -2023-02-28 10:28:40.9746 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-02-28 10:28:40.9749 Info File /etc/issue: Welcome to Alpine Linux 3.17 -2023-02-28 10:28:40.9749 Info Running in Docker: Yes (image build: v0.20.3269-ls95) -2023-02-28 10:28:40.9771 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads -2023-02-28 10:28:40.9771 Info App config/log directory: /config/Jackett -2023-02-28 10:28:40.9785 Info Using proxy: Disabled -2023-02-28 10:28:40.9787 Info Using FlareSolverr: No -2023-02-28 10:28:40.9864 Info Using HTTP Client: HttpWebClient2 -2023-02-28 10:28:41.0089 Info Loading Native indexers ... -2023-02-28 10:28:41.2484 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api -2023-02-28 10:28:41.2545 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions -2023-02-28 10:28:43.8279 Info Loaded 493 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornleech, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker -2023-02-28 10:28:43.8279 Info Loaded 569 indexers in total -2023-02-28 10:28:43.8303 Info Adding aggregate indexer ('all' indexer) ... -2023-02-28 10:28:43.8422 Info Adding filter indexer ('type:public' indexer) ... -2023-02-28 10:28:43.8428 Info Adding filter indexer ('type:private' indexer) ... -2023-02-28 10:28:43.8428 Info Adding filter indexer ('type:semi-public' indexer) ... -2023-02-28 10:28:43.8506 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3403-638131769094127020 -2023-02-28 10:28:44.3935 Info Jackett startup finished in 6.271 s -2023-02-28 10:50:30.3592 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:50:38.0499 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases -2023-02-28 10:50:38.1297 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 10:50:46.7187 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 40 releases -2023-02-28 11:28:44.0031 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-02-28 11:28:44.9394 Info Jackett is already updated. Current version: v0.20.3403 -2023-02-28 11:28:52.2161 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 11:28:58.8866 Info Torznab search in 1337x => Found 20 releases -2023-02-28 12:29:24.1687 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 12:29:31.6105 Info Torznab search in 1337x => Found 20 releases -2023-02-28 13:29:56.3515 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 13:30:03.7712 Info Torznab search in 1337x => Found 20 releases -2023-02-28 14:30:28.1020 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 14:30:35.7821 Info Torznab search in 1337x => Found 20 releases -2023-02-28 15:30:59.7660 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 15:31:07.4339 Info Torznab search in 1337x => Found 20 releases -2023-02-28 16:31:31.9563 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 16:31:39.8101 Info Torznab search in 1337x => Found 20 releases -2023-02-28 17:32:03.8075 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 17:32:11.5367 Info Torznab search in 1337x => Found 20 releases -2023-02-28 18:32:36.0480 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 18:32:43.2025 Info Torznab search in 1337x => Found 20 releases -2023-02-28 19:33:08.1782 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 19:33:15.2451 Info Torznab search in 1337x => Found 20 releases -2023-02-28 20:33:40.3318 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 20:33:49.1289 Info Torznab search in 1337x => Found 20 releases -2023-02-28 21:34:12.7374 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-02-28 21:34:20.1442 Info Torznab search in 1337x => Found 20 releases -2023-03-01 14:59:37.2374 Info Starting Jackett v0.20.3403 -2023-03-01 14:59:39.8874 Info Environment version: 6.0.14 (/app/Jackett/) -2023-03-01 14:59:39.8885 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) -2023-03-01 14:59:39.8899 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-01 14:59:39.8899 Info File /etc/issue: Welcome to Alpine Linux 3.17 -2023-03-01 14:59:39.8906 Info Running in Docker: Yes (image build: v0.20.3269-ls95) -2023-03-01 14:59:39.8924 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads -2023-03-01 14:59:39.8927 Info App config/log directory: /config/Jackett -2023-03-01 14:59:39.8938 Info Using proxy: Disabled -2023-03-01 14:59:39.8938 Info Using FlareSolverr: No -2023-03-01 14:59:39.9018 Info Using HTTP Client: HttpWebClient2 -2023-03-01 14:59:39.9222 Info Loading Native indexers ... -2023-03-01 14:59:40.1878 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api -2023-03-01 14:59:40.1961 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions -2023-03-01 14:59:44.4337 Info Loaded 493 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornleech, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker -2023-03-01 14:59:44.4337 Info Loaded 569 indexers in total -2023-03-01 14:59:44.4363 Info Adding aggregate indexer ('all' indexer) ... -2023-03-01 14:59:44.4485 Info Adding filter indexer ('type:public' indexer) ... -2023-03-01 14:59:44.4491 Info Adding filter indexer ('type:private' indexer) ... -2023-03-01 14:59:44.4491 Info Adding filter indexer ('type:semi-public' indexer) ... -2023-03-01 14:59:44.7600 Info Jackett startup finished in 9.345 s -2023-03-01 15:00:16.6490 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-01 15:00:24.6431 Info Torznab search in 1337x => Found 21 releases -2023-03-01 15:50:53.9753 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-01 15:51:01.3002 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases -2023-03-01 15:51:01.3373 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-01 15:51:10.3784 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 40 releases -2023-03-01 15:52:44.0609 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-01 15:52:44.0677 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases (from cache) -2023-03-01 15:52:46.0187 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-01 15:52:46.0197 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 40 releases (from cache) -2023-03-01 15:59:44.4955 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-03-01 15:59:45.2720 Info New release found. Current version: v0.20.3403 New version: v0.20.3411 -2023-03-01 15:59:45.2727 Info Downloading release v0.20.3411 It could take a while... -2023-03-01 15:59:50.4000 Info Starting updater: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "134" --NoRestart -2023-03-01 15:59:50.4009 Info Updater started process id: 224 -2023-03-01 16:00:00.4336 Info Starting Jackett v0.20.3411 -2023-03-01 16:00:01.5514 Info Environment version: 6.0.14 (/app/Jackett/) -2023-03-01 16:00:01.5527 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) -2023-03-01 16:00:01.5541 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-01 16:00:01.5541 Info File /etc/issue: Welcome to Alpine Linux 3.17 -2023-03-01 16:00:01.5549 Info Running in Docker: Yes (image build: v0.20.3269-ls95) -2023-03-01 16:00:01.5568 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads -2023-03-01 16:00:01.5568 Info App config/log directory: /config/Jackett -2023-03-01 16:00:01.5583 Info Using proxy: Disabled -2023-03-01 16:00:01.5583 Info Using FlareSolverr: No -2023-03-01 16:00:01.5672 Info Using HTTP Client: HttpWebClient2 -2023-03-01 16:00:01.5907 Info Loading Native indexers ... -2023-03-01 16:00:01.8514 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api -2023-03-01 16:00:01.8576 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions -2023-03-01 16:00:04.1625 Info Loaded 493 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornleech, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker -2023-03-01 16:00:04.1631 Info Loaded 569 indexers in total -2023-03-01 16:00:04.1649 Info Adding aggregate indexer ('all' indexer) ... -2023-03-01 16:00:04.1772 Info Adding filter indexer ('type:public' indexer) ... -2023-03-01 16:00:04.1778 Info Adding filter indexer ('type:private' indexer) ... -2023-03-01 16:00:04.1778 Info Adding filter indexer ('type:semi-public' indexer) ... -2023-03-01 16:00:04.1865 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3411-638132831882369369 -2023-03-01 16:00:04.6829 Info Jackett startup finished in 5.668 s -2023-03-01 16:00:48.7021 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-01 16:00:56.9233 Info Torznab search in 1337x => Found 21 releases -2023-03-01 17:00:04.3526 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-03-01 17:00:05.2990 Info Jackett is already updated. Current version: v0.20.3411 -2023-03-01 17:01:20.4649 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-01 17:01:27.5999 Info Torznab search in 1337x => Found 21 releases -2023-03-01 18:01:52.1289 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-01 18:01:59.8268 Info Torznab search in 1337x => Found 21 releases -2023-03-01 18:46:32.0307 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-01 18:46:39.3831 Info Torznab search in 1337x for Spirited Away 2002 => Found 0 releases -2023-03-01 18:46:39.4026 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-01 18:46:48.1685 Info Torznab search in 1337x for ๅƒใจๅƒๅฐ‹ใฎ็ฅž้š ใ— 2002 => Found 40 releases -2023-03-01 19:02:24.0835 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-01 19:02:31.8009 Info Torznab search in 1337x => Found 20 releases -2023-03-01 20:02:56.5009 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-01 20:03:03.7978 Info Torznab search in 1337x => Found 20 releases -2023-03-01 21:03:28.9201 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-01 21:03:35.6552 Info Torznab search in 1337x => Found 20 releases -2023-03-01 22:04:00.9841 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-01 22:04:08.1414 Info Torznab search in 1337x => Found 20 releases -2023-03-10 16:56:31.0117 Info Starting Jackett v0.20.3411 -2023-03-10 16:56:32.0707 Info Environment version: 6.0.14 (/app/Jackett/) -2023-03-10 16:56:32.0719 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) -2023-03-10 16:56:32.0733 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-10 16:56:32.0733 Info File /etc/issue: Welcome to Alpine Linux 3.17 -2023-03-10 16:56:32.0741 Info Running in Docker: Yes (image build: v0.20.3269-ls95) -2023-03-10 16:56:32.0760 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads -2023-03-10 16:56:32.0760 Info App config/log directory: /config/Jackett -2023-03-10 16:56:32.0774 Info Using proxy: Disabled -2023-03-10 16:56:32.0774 Info Using FlareSolverr: No -2023-03-10 16:56:32.0862 Info Using HTTP Client: HttpWebClient2 -2023-03-10 16:56:32.1088 Info Loading Native indexers ... -2023-03-10 16:56:32.3580 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api -2023-03-10 16:56:32.3665 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions -2023-03-10 16:56:34.6616 Info Loaded 493 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornleech, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker -2023-03-10 16:56:34.6623 Info Loaded 569 indexers in total -2023-03-10 16:56:34.6643 Info Adding aggregate indexer ('all' indexer) ... -2023-03-10 16:56:34.6759 Info Adding filter indexer ('type:public' indexer) ... -2023-03-10 16:56:34.6759 Info Adding filter indexer ('type:private' indexer) ... -2023-03-10 16:56:34.6768 Info Adding filter indexer ('type:semi-public' indexer) ... -2023-03-10 16:56:35.0062 Info Jackett startup finished in 5.421 s -2023-03-10 17:56:34.7210 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-03-10 17:56:35.9489 Info New release found. Current version: v0.20.3411 New version: v0.20.3579 -2023-03-10 17:56:35.9489 Info Downloading release v0.20.3579 It could take a while... -2023-03-10 17:56:40.5135 Info Starting updater: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "133" --NoRestart -2023-03-10 17:56:40.5144 Info Updater started process id: 193 -2023-03-10 17:56:48.5453 Info Starting Jackett v0.20.3579 -2023-03-10 17:56:50.1058 Info Environment version: 6.0.14 (/app/Jackett/) -2023-03-10 17:56:50.1071 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) -2023-03-10 17:56:50.1084 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-10 17:56:50.1087 Info File /etc/issue: Welcome to Alpine Linux 3.17 -2023-03-10 17:56:50.1087 Info Running in Docker: Yes (image build: v0.20.3269-ls95) -2023-03-10 17:56:50.1109 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads -2023-03-10 17:56:50.1109 Info App config/log directory: /config/Jackett -2023-03-10 17:56:50.1121 Info Using proxy: Disabled -2023-03-10 17:56:50.1121 Info Using FlareSolverr: No -2023-03-10 17:56:50.1203 Info Using HTTP Client: HttpWebClient2 -2023-03-10 17:56:50.1412 Info Loading Native indexers ... -2023-03-10 17:56:50.4073 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api -2023-03-10 17:56:50.4138 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions -2023-03-10 17:56:52.8112 Info Loaded 493 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents -2023-03-10 17:56:52.8118 Info Loaded 569 indexers in total -2023-03-10 17:56:52.8137 Info Adding aggregate indexer ('all' indexer) ... -2023-03-10 17:56:52.8251 Info Adding filter indexer ('type:public' indexer) ... -2023-03-10 17:56:52.8251 Info Adding filter indexer ('type:private' indexer) ... -2023-03-10 17:56:52.8259 Info Adding filter indexer ('type:semi-public' indexer) ... -2023-03-10 17:56:52.8341 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3579-638140677981119304 -2023-03-10 17:56:53.6536 Info Jackett startup finished in 7.021 s -2023-03-10 18:56:52.9778 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-03-10 18:56:54.3719 Info Jackett is already updated. Current version: v0.20.3579 -2023-03-13 15:21:07.6757 Info Starting Jackett v0.20.3579 -2023-03-13 15:21:09.9008 Info Environment version: 6.0.14 (/app/Jackett/) -2023-03-13 15:21:09.9021 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) -2023-03-13 15:21:09.9036 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-13 15:21:09.9150 Info File /etc/issue: Welcome to Alpine Linux 3.17 -2023-03-13 15:21:09.9150 Info Running in Docker: Yes (image build: v0.20.3269-ls95) -2023-03-13 15:21:09.9174 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads -2023-03-13 15:21:09.9178 Info App config/log directory: /config/Jackett -2023-03-13 15:21:09.9190 Info Using proxy: Disabled -2023-03-13 15:21:09.9190 Info Using FlareSolverr: No -2023-03-13 15:21:09.9334 Info Using HTTP Client: HttpWebClient2 -2023-03-13 15:21:09.9704 Info Loading Native indexers ... -2023-03-13 15:21:10.2992 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api -2023-03-13 15:21:10.3056 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions -2023-03-13 15:21:14.0060 Info Loaded 493 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents -2023-03-13 15:21:14.0067 Info Loaded 569 indexers in total -2023-03-13 15:21:14.0085 Info Adding aggregate indexer ('all' indexer) ... -2023-03-13 15:21:14.0302 Info Adding filter indexer ('type:public' indexer) ... -2023-03-13 15:21:14.0308 Info Adding filter indexer ('type:private' indexer) ... -2023-03-13 15:21:14.0308 Info Adding filter indexer ('type:semi-public' indexer) ... -2023-03-13 15:21:14.4324 Info Jackett startup finished in 8.915 s -2023-03-13 15:21:45.0292 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-13 15:21:53.0299 Info Torznab search in 1337x => Found 20 releases -2023-03-13 16:21:14.1342 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-03-13 16:21:14.6594 Info New release found. Current version: v0.20.3579 New version: v0.20.3593 -2023-03-13 16:21:14.6598 Info Downloading release v0.20.3593 It could take a while... -2023-03-13 16:21:19.8479 Info Starting updater: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "133" --NoRestart -2023-03-13 16:21:19.8491 Info Updater started process id: 208 -2023-03-13 16:21:28.6261 Info Starting Jackett v0.20.3593 -2023-03-13 16:21:29.6115 Info Environment version: 6.0.14 (/app/Jackett/) -2023-03-13 16:21:29.6125 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) -2023-03-13 16:21:29.6137 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-13 16:21:29.6137 Info File /etc/issue: Welcome to Alpine Linux 3.17 -2023-03-13 16:21:29.6137 Info Running in Docker: Yes (image build: v0.20.3269-ls95) -2023-03-13 16:21:29.6160 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads -2023-03-13 16:21:29.6160 Info App config/log directory: /config/Jackett -2023-03-13 16:21:29.6173 Info Using proxy: Disabled -2023-03-13 16:21:29.6173 Info Using FlareSolverr: No -2023-03-13 16:21:29.6250 Info Using HTTP Client: HttpWebClient2 -2023-03-13 16:21:29.6453 Info Loading Native indexers ... -2023-03-13 16:21:29.7702 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api -2023-03-13 16:21:29.7761 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions -2023-03-13 16:21:31.9285 Info Loaded 492 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents, kamept -2023-03-13 16:21:31.9291 Info Loaded 568 indexers in total -2023-03-13 16:21:31.9312 Info Adding aggregate indexer ('all' indexer) ... -2023-03-13 16:21:31.9425 Info Adding filter indexer ('type:public' indexer) ... -2023-03-13 16:21:31.9430 Info Adding filter indexer ('type:private' indexer) ... -2023-03-13 16:21:31.9430 Info Adding filter indexer ('type:semi-public' indexer) ... -2023-03-13 16:21:31.9506 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3593-638143212772413046 -2023-03-13 16:21:32.5884 Info Jackett startup finished in 6.095 s -2023-03-13 16:22:17.9003 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-13 16:22:26.2068 Info Torznab search in 1337x => Found 20 releases -2023-03-13 17:21:32.0887 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-03-13 17:21:33.0129 Info Jackett is already updated. Current version: v0.20.3593 -2023-03-13 17:22:48.9070 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-13 17:22:55.7082 Info Torznab search in 1337x => Found 20 releases -2023-03-13 18:23:20.4510 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-13 18:23:28.2713 Info Torznab search in 1337x => Found 20 releases -2023-03-13 19:23:51.9013 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-13 19:23:59.4998 Info Torznab search in 1337x => Found 20 releases -2023-03-13 20:24:23.6110 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-13 20:24:30.6690 Info Torznab search in 1337x => Found 20 releases -2023-03-13 21:24:55.6650 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-13 21:25:03.3568 Info Torznab search in 1337x => Found 20 releases -2023-03-13 22:25:28.2690 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-13 22:25:35.8099 Info Torznab search in 1337x => Found 20 releases -2023-03-13 23:26:00.4821 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-13 23:26:07.6751 Info Torznab search in 1337x => Found 20 releases -2023-03-14 00:26:32.1441 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 00:26:39.3276 Info Torznab search in 1337x => Found 20 releases -2023-03-14 01:27:03.8582 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 01:27:11.0068 Info Torznab search in 1337x => Found 20 releases -2023-03-14 02:27:35.1853 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 02:27:42.4377 Info Torznab search in 1337x => Found 20 releases -2023-03-14 03:28:06.8753 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 03:28:14.2882 Info Torznab search in 1337x => Found 20 releases -2023-03-14 04:28:41.5871 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 04:28:48.6478 Info Torznab search in 1337x => Found 20 releases -2023-03-14 05:29:13.6740 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 05:29:21.0419 Info Torznab search in 1337x => Found 20 releases -2023-03-14 06:29:47.1439 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 06:29:55.7451 Info Torznab search in 1337x => Found 20 releases -2023-03-14 07:30:19.4860 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 07:30:27.7927 Info Torznab search in 1337x => Found 20 releases -2023-03-14 08:30:51.6177 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 08:30:58.8615 Info Torznab search in 1337x => Found 20 releases -2023-03-14 09:31:24.0469 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 09:31:31.6161 Info Torznab search in 1337x => Found 20 releases -2023-03-14 10:31:56.1398 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 10:32:03.6980 Info Torznab search in 1337x => Found 20 releases -2023-03-14 11:32:28.5645 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 11:32:36.5719 Info Torznab search in 1337x => Found 20 releases -2023-03-14 12:33:00.7699 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 12:33:08.2354 Info Torznab search in 1337x => Found 20 releases -2023-03-14 13:33:32.8853 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 13:33:40.2419 Info Torznab search in 1337x => Found 20 releases -2023-03-14 14:34:05.1911 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 14:34:12.3362 Info Torznab search in 1337x => Found 20 releases -2023-03-14 15:34:38.2331 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 15:34:45.4477 Info Torznab search in 1337x => Found 20 releases -2023-03-14 16:35:09.8335 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 16:35:17.8281 Info Torznab search in 1337x => Found 20 releases -2023-03-14 17:21:33.0261 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-03-14 17:21:33.9474 Info New release found. Current version: v0.20.3593 New version: v0.20.3599 -2023-03-14 17:21:33.9481 Info Downloading release v0.20.3599 It could take a while... -2023-03-14 17:21:37.9082 Info Starting updater: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "236" --NoRestart -2023-03-14 17:21:37.9090 Info Updater started process id: 554 -2023-03-14 17:21:45.8903 Info Starting Jackett v0.20.3599 -2023-03-14 17:21:46.9202 Info Environment version: 6.0.14 (/app/Jackett/) -2023-03-14 17:21:46.9214 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) -2023-03-14 17:21:46.9228 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-14 17:21:46.9228 Info File /etc/issue: Welcome to Alpine Linux 3.17 -2023-03-14 17:21:46.9228 Info Running in Docker: Yes (image build: v0.20.3269-ls95) -2023-03-14 17:21:46.9254 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads -2023-03-14 17:21:46.9257 Info App config/log directory: /config/Jackett -2023-03-14 17:21:46.9269 Info Using proxy: Disabled -2023-03-14 17:21:46.9269 Info Using FlareSolverr: No -2023-03-14 17:21:46.9353 Info Using HTTP Client: HttpWebClient2 -2023-03-14 17:21:46.9557 Info Loading Native indexers ... -2023-03-14 17:21:47.0959 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api -2023-03-14 17:21:47.1022 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions -2023-03-14 17:21:50.5828 Info Loaded 492 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents, kamept -2023-03-14 17:21:50.5828 Info Loaded 568 indexers in total -2023-03-14 17:21:50.5856 Info Adding aggregate indexer ('all' indexer) ... -2023-03-14 17:21:50.5972 Info Adding filter indexer ('type:public' indexer) ... -2023-03-14 17:21:50.5977 Info Adding filter indexer ('type:private' indexer) ... -2023-03-14 17:21:50.5977 Info Adding filter indexer ('type:semi-public' indexer) ... -2023-03-14 17:21:50.6053 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3599-638144112956644912 -2023-03-14 17:21:51.0051 Info Jackett startup finished in 6.880 s -2023-03-14 17:35:20.1951 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 17:35:28.7649 Info Torznab search in 1337x => Found 20 releases [8583ms] -2023-03-14 18:21:50.8068 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-03-14 18:21:51.7832 Info Jackett is already updated. Current version: v0.20.3599 -2023-03-14 18:35:51.1018 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 18:35:58.4397 Info Torznab search in 1337x => Found 20 releases [7341ms] -2023-03-14 19:36:22.5538 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 19:36:30.2065 Info Torznab search in 1337x => Found 20 releases [7656ms] -2023-03-14 20:36:54.2936 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 20:37:01.8702 Info Torznab search in 1337x => Found 20 releases [7576ms] -2023-03-14 21:37:25.8646 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 21:37:33.0332 Info Torznab search in 1337x => Found 20 releases [7168ms] -2023-03-14 22:37:57.4465 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 22:38:04.5379 Info Torznab search in 1337x => Found 20 releases [7091ms] -2023-03-14 23:38:29.2215 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-14 23:38:37.0853 Info Torznab search in 1337x => Found 20 releases [7865ms] -2023-03-15 00:39:00.9771 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-15 00:39:08.6991 Info Torznab search in 1337x => Found 20 releases [7723ms] -2023-03-15 01:39:32.4835 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-15 01:39:39.3856 Info Torznab search in 1337x => Found 20 releases [6902ms] -2023-03-15 02:40:04.0106 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-15 02:41:11.8853 Info Torznab search in 1337x => Found 20 releases [67874ms] -2023-03-15 03:41:36.1787 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-15 03:41:43.3711 Info Torznab search in 1337x => Found 20 releases [7194ms] -2023-03-15 04:42:08.2163 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-15 04:42:15.3809 Info Torznab search in 1337x => Found 20 releases [7164ms] -2023-03-15 05:42:40.2461 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-15 05:42:47.5609 Info Torznab search in 1337x => Found 20 releases [7315ms] -2023-03-15 06:43:12.1112 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-15 06:43:19.3459 Info Torznab search in 1337x => Found 20 releases [7235ms] -2023-03-15 07:43:43.5138 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-15 07:43:50.7779 Info Torznab search in 1337x => Found 20 releases [7264ms] -2023-03-15 08:44:15.6648 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-15 08:44:23.2704 Info Torznab search in 1337x => Found 20 releases [7605ms] -2023-03-15 09:44:48.1405 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-15 09:44:54.9591 Info Torznab search in 1337x => Found 20 releases [6820ms] -2023-03-15 10:45:20.8130 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-15 10:45:28.5939 Info Torznab search in 1337x => Found 20 releases [7782ms] -2023-03-15 11:45:52.9700 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-15 11:46:00.7619 Info Torznab search in 1337x => Found 20 releases [7792ms] -2023-03-15 12:46:24.8101 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-15 12:46:32.2307 Info Torznab search in 1337x => Found 20 releases [7441ms] -2023-03-15 13:46:56.5873 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-15 13:47:03.6844 Info Torznab search in 1337x => Found 20 releases [7097ms] -2023-03-15 14:47:28.6653 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-15 14:47:36.5227 Info Torznab search in 1337x => Found 20 releases [7859ms] -2023-03-15 15:48:01.5221 Warn Some of the categories provided are unsupported in 1337x: 2020,2050 -2023-03-15 15:48:09.8722 Info Torznab search in 1337x => Found 20 releases [8351ms] -2023-03-15 16:44:40.2684 Info Jackett stopped -2023-03-15 16:53:33.7195 Info Starting Jackett v0.20.3269 -2023-03-15 16:53:34.7305 Info Environment version: 6.0.14 (/app/Jackett/) -2023-03-15 16:53:34.7316 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) -2023-03-15 16:53:34.7328 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-15 16:53:34.7328 Info File /etc/issue: Welcome to Alpine Linux 3.17 -2023-03-15 16:53:34.7337 Info Running in Docker: Yes (image build: v0.20.3269-ls95) -2023-03-15 16:53:34.7354 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads -2023-03-15 16:53:34.7354 Info App config/log directory: /config/Jackett -2023-03-15 16:53:34.7367 Info Using proxy: Disabled -2023-03-15 16:53:34.7367 Info Using FlareSolverr: No -2023-03-15 16:53:34.7446 Info Using HTTP Client: HttpWebClient2 -2023-03-15 16:53:34.7663 Info Loading Native indexers ... -2023-03-15 16:53:35.0138 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api -2023-03-15 16:53:35.0197 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions -2023-03-15 16:53:37.1488 Info Loaded 494 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, cloudtorrents, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornforall, pornleech, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, woot, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker -2023-03-15 16:53:37.1488 Info Loaded 570 indexers in total -2023-03-15 16:53:37.1512 Info Adding aggregate indexer ('all' indexer) ... -2023-03-15 16:53:37.1628 Info Adding filter indexer ('type:public' indexer) ... -2023-03-15 16:53:37.1628 Info Adding filter indexer ('type:private' indexer) ... -2023-03-15 16:53:37.1628 Info Adding filter indexer ('type:semi-public' indexer) ... -2023-03-15 16:53:37.4597 Info Jackett startup finished in 5.435 s -2023-03-15 17:53:37.2037 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-03-15 17:53:38.6245 Info New release found. Current version: v0.20.3269 New version: v0.20.3604 -2023-03-15 17:53:38.6249 Info Downloading release v0.20.3604 It could take a while... -2023-03-15 17:53:43.3123 Info Starting updater: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "135" --NoRestart -2023-03-15 17:53:43.3131 Info Updater started process id: 195 -2023-03-15 17:53:51.2828 Info Starting Jackett v0.20.3604 -2023-03-15 17:53:52.2841 Info Environment version: 6.0.15 (/app/Jackett/) -2023-03-15 17:53:52.2852 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) -2023-03-15 17:53:52.2864 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-15 17:53:52.2867 Info File /etc/issue: Welcome to Alpine Linux 3.17 -2023-03-15 17:53:52.2867 Info Running in Docker: Yes (image build: v0.20.3269-ls95) -2023-03-15 17:53:52.2890 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads -2023-03-15 17:53:52.2890 Info App config/log directory: /config/Jackett -2023-03-15 17:53:52.2903 Info Using proxy: Disabled -2023-03-15 17:53:52.2903 Info Using FlareSolverr: No -2023-03-15 17:53:52.2985 Info Using HTTP Client: HttpWebClient2 -2023-03-15 17:53:52.3197 Info Loading Native indexers ... -2023-03-15 17:53:52.4496 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api -2023-03-15 17:53:52.4558 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions -2023-03-15 17:53:54.6533 Info Loaded 493 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents, elitetorrent-pl, kamept -2023-03-15 17:53:54.6538 Info Loaded 569 indexers in total -2023-03-15 17:53:54.6557 Info Adding aggregate indexer ('all' indexer) ... -2023-03-15 17:53:54.6668 Info Adding filter indexer ('type:public' indexer) ... -2023-03-15 17:53:54.6668 Info Adding filter indexer ('type:private' indexer) ... -2023-03-15 17:53:54.6668 Info Adding filter indexer ('type:semi-public' indexer) ... -2023-03-15 17:53:54.6746 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3604-638144996209291285 -2023-03-15 17:53:55.0559 Info Jackett startup finished in 5.510 s -2023-03-15 18:53:54.8369 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-03-15 18:53:56.0738 Info Jackett is already updated. Current version: v0.20.3604 -2023-03-16 18:53:56.0793 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-03-16 18:53:56.9495 Info New release found. Current version: v0.20.3604 New version: v0.20.3609 -2023-03-16 18:53:56.9495 Info Downloading release v0.20.3609 It could take a while... -2023-03-16 18:54:01.3692 Info Starting updater: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "222" --NoRestart -2023-03-16 18:54:01.3700 Info Updater started process id: 279 -2023-03-16 18:54:09.1185 Info Starting Jackett v0.20.3609 -2023-03-16 18:54:10.1378 Info Environment version: 6.0.15 (/app/Jackett/) -2023-03-16 18:54:10.1394 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) -2023-03-16 18:54:10.1408 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-16 18:54:10.1408 Info File /etc/issue: Welcome to Alpine Linux 3.17 -2023-03-16 18:54:10.1408 Info Running in Docker: Yes (image build: v0.20.3269-ls95) -2023-03-16 18:54:10.1442 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads -2023-03-16 18:54:10.1442 Info App config/log directory: /config/Jackett -2023-03-16 18:54:10.1456 Info Using proxy: Disabled -2023-03-16 18:54:10.1458 Info Using FlareSolverr: No -2023-03-16 18:54:10.1549 Info Using HTTP Client: HttpWebClient2 -2023-03-16 18:54:10.1764 Info Loading Native indexers ... -2023-03-16 18:54:10.3036 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api -2023-03-16 18:54:10.3097 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions -2023-03-16 18:54:13.0606 Info Loaded 493 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents, elitetorrent-pl, kamept -2023-03-16 18:54:13.0612 Info Loaded 569 indexers in total -2023-03-16 18:54:13.0634 Info Adding aggregate indexer ('all' indexer) ... -2023-03-16 18:54:13.0763 Info Adding filter indexer ('type:public' indexer) ... -2023-03-16 18:54:13.0769 Info Adding filter indexer ('type:private' indexer) ... -2023-03-16 18:54:13.0769 Info Adding filter indexer ('type:semi-public' indexer) ... -2023-03-16 18:54:13.0853 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3609-638145896390739097 -2023-03-16 18:54:13.5131 Info Jackett startup finished in 6.317 s -2023-03-16 19:54:13.2263 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-03-16 19:54:14.7060 Info Jackett is already updated. Current version: v0.20.3609 -2023-03-17 19:54:14.7130 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-03-17 19:54:15.5280 Info New release found. Current version: v0.20.3609 New version: v0.20.3617 -2023-03-17 19:54:15.5293 Info Downloading release v0.20.3617 It could take a while... -2023-03-17 19:54:20.2219 Info Starting updater: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "307" --NoRestart -2023-03-17 19:54:20.2234 Info Updater started process id: 356 -2023-03-17 19:54:28.1876 Info Starting Jackett v0.20.3617 -2023-03-17 19:54:29.5292 Info Environment version: 6.0.15 (/app/Jackett/) -2023-03-17 19:54:29.5305 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) -2023-03-17 19:54:29.5319 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-17 19:54:29.5319 Info File /etc/issue: Welcome to Alpine Linux 3.17 -2023-03-17 19:54:29.5329 Info Running in Docker: Yes (image build: v0.20.3269-ls95) -2023-03-17 19:54:29.5349 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads -2023-03-17 19:54:29.5349 Info App config/log directory: /config/Jackett -2023-03-17 19:54:29.5364 Info Using proxy: Disabled -2023-03-17 19:54:29.5364 Info Using FlareSolverr: No -2023-03-17 19:54:29.5449 Info Using HTTP Client: HttpWebClient2 -2023-03-17 19:54:29.5660 Info Loading Native indexers ... -2023-03-17 19:54:29.6985 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api -2023-03-17 19:54:29.7046 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions -2023-03-17 19:54:32.9857 Info Loaded 494 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents, elitetorrent-pl, kamept, lightning-tor -2023-03-17 19:54:32.9871 Info Loaded 570 indexers in total -2023-03-17 19:54:32.9892 Info Adding aggregate indexer ('all' indexer) ... -2023-03-17 19:54:33.0010 Info Adding filter indexer ('type:public' indexer) ... -2023-03-17 19:54:33.0010 Info Adding filter indexer ('type:private' indexer) ... -2023-03-17 19:54:33.0010 Info Adding filter indexer ('type:semi-public' indexer) ... -2023-03-17 19:54:33.0090 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3617-638146796575272988 -2023-03-17 19:54:33.3909 Info Jackett startup finished in 6.896 s -2023-03-17 20:54:33.1863 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-03-17 20:54:34.6512 Info Jackett is already updated. Current version: v0.20.3617 -2023-03-18 20:54:34.6555 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-03-18 20:54:35.5321 Info New release found. Current version: v0.20.3617 New version: v0.20.3627 -2023-03-18 20:54:35.5329 Info Downloading release v0.20.3627 It could take a while... -2023-03-18 20:54:39.3440 Info Starting updater: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/JackettUpdater --Path "/app/Jackett" --Type "Console" --Args " --NoRestart" --KillPids "383" --NoRestart -2023-03-18 20:54:39.3451 Info Updater started process id: 448 -2023-03-18 20:54:47.9199 Info Starting Jackett v0.20.3627 -2023-03-18 20:54:48.9040 Info Environment version: 6.0.15 (/app/Jackett/) -2023-03-18 20:54:48.9051 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) -2023-03-18 20:54:48.9064 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-18 20:54:48.9068 Info File /etc/issue: Welcome to Alpine Linux 3.17 -2023-03-18 20:54:48.9068 Info Running in Docker: Yes (image build: v0.20.3269-ls95) -2023-03-18 20:54:48.9092 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads -2023-03-18 20:54:48.9092 Info App config/log directory: /config/Jackett -2023-03-18 20:54:48.9106 Info Using proxy: Disabled -2023-03-18 20:54:48.9108 Info Using FlareSolverr: No -2023-03-18 20:54:48.9189 Info Using HTTP Client: HttpWebClient2 -2023-03-18 20:54:48.9403 Info Loading Native indexers ... -2023-03-18 20:54:49.0656 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api -2023-03-18 20:54:49.0715 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions -2023-03-18 20:54:51.9013 Info Loaded 494 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents, elitetorrent-pl, kamept, lightning-tor -2023-03-18 20:54:51.9019 Info Loaded 570 indexers in total -2023-03-18 20:54:51.9039 Info Adding aggregate indexer ('all' indexer) ... -2023-03-18 20:54:51.9169 Info Adding filter indexer ('type:public' indexer) ... -2023-03-18 20:54:51.9169 Info Adding filter indexer ('type:private' indexer) ... -2023-03-18 20:54:51.9178 Info Adding filter indexer ('type:semi-public' indexer) ... -2023-03-18 20:54:51.9257 Info Deleting JackettUpdate temp files from /tmp/JackettUpdate-v0.20.3627-638147696771516210 -2023-03-18 20:54:52.3336 Info Jackett startup finished in 6.328 s -2023-03-18 21:54:52.1269 Info Checking for updates... Jackett variant: CoreLinuxMuslAmdx64 -2023-03-18 21:54:53.7304 Info Jackett is already updated. Current version: v0.20.3627 -2023-03-19 19:46:46.4220 Info Starting Jackett v0.20.3627 -2023-03-19 19:46:48.2336 Info Environment version: 6.0.15 (/app/Jackett/) -2023-03-19 19:46:48.2348 Info OS version: Unix 3.10.0.1160 (64bit OS) (64bit process) -2023-03-19 19:46:48.2361 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-19 19:46:48.2361 Info File /etc/issue: Welcome to Alpine Linux 3.17 -2023-03-19 19:46:48.2371 Info Running in Docker: Yes (image build: v0.20.3269-ls95) -2023-03-19 19:46:48.2389 Info ThreadPool MaxThreads: 32767 workerThreads, 1000 completionPortThreads -2023-03-19 19:46:48.2389 Info App config/log directory: /config/Jackett -2023-03-19 19:46:48.2403 Info Using proxy: Disabled -2023-03-19 19:46:48.2403 Info Using FlareSolverr: No -2023-03-19 19:46:48.2492 Info Using HTTP Client: HttpWebClient2 -2023-03-19 19:46:48.2727 Info Loading Native indexers ... -2023-03-19 19:46:48.4192 Info Loaded 76 Native indexers: alpharatio, anidex, anidub, animebytes, animetorrents, aro, audiobookbay, avistaz, bakabt, beyond-hd-api, bithdtv, bjshare, brasiltracker, broadcasthenet, brokenstones, cgpeers, cinecalidad, cinemaz, darmowetorenty, dicmusic, divxtotal, dontorrent, epublibre, erai-raws, exoticaz, filelist, funfile, gazellegames, gazellegamesapi, greatposterwall, hdbitsapi, hdspace, hdtorrents, immortalseed, iptorrents, libble, lostfilm, magnetico, mejortorrent, myanonamouse, ncore, nebulanceapi, norbits, orpheus, passthepopcorn, piratethenet, pixelhd, pornolab, pretome, privatehd, rarbg, redacted, retroflix, revolutiontt, rutracker, scenehd, scenetime, secretcinema, sharewoodapi, shazbat, speedapp, speedcd, subsplease, toloka, torrentbytes, torrentday, torrentheaven, torrentnetwork, torrentscsv, torrentsyndikat, tvstore, uniotaku, xspeeds, zonaq, animetosho, morethantv-api -2023-03-19 19:46:48.4344 Info Loading Cardigann indexers from: /config/cardigann/definitions/, /etc/xdg/cardigan/definitions/, /app/Jackett/Definitions -2023-03-19 19:46:51.3478 Info Loaded 494 Cardigann indexers: 0daykiev, 0magnet, 1337x, 1ptbar, 2fast4you, 2xfree, 3changtrai, 3dtorrents, 4thd, 52pt, Bittorrentfiles, abnormal, abtorrents, acervos, acgrip, acgsou, acidlounge, acrossthetasman, aftershock, aidoruonline, aither-api, amigosshare, anilibria, anime-free, animelayer, animetracker, animeworld-api, aniRena, anisource, anthelion-api, arabafenice, arabp2p, arenabg, asiancinema, asiandvdclub, audiences, audionews, aussierules, backups, badasstorrents, bangumi-moe, beitai, bestcore, beyond-hd, bibliotik, bigfangroup, bitbazis, bitded, bithorlo, bithumen, bitnova, bitofvalor, bitru, bitsearch, bitsexy, bitspyder, bitturk, bluebirdhd, blutopia-api, booktracker, bootytape, borgzelle, boxingtorrents, broadcity, brsociety-api, bt4g, btdigg, btetree, btmet, btnext, btschool, btsow, bulltorrent, bwtorrents, byrbt, byrutor, carpathians, carphunter, carpt, cartoonchaos, cathoderaytube, catorrent, ccfbits, ceskeforum, chdbits, chilebt, cinemageddon, cinemamovies, cinematik, classix, coastalcrew, comicat, concen, concertos, cpasbien, cpasbienclone, cpasbiensi, crackingpatching, crazyhd, crazyspirits, crnaberza, crt2fa, danishbytes-api, dariustracker, dark-shadow, datascene-api, datatalli, deildu, demonoid, desitorrents-api, devil-torrents, diablotorrent, digitalcore, dimeadozen, discfan, divteam, dmhy, docspedia, dodder, dreamtracker, dxp, ebookbay, ebooks-shares, ehentai, electro-torrent, empornium, empornium2fa, eniahd, esharenet, estone, exkinoray, extratorrent-st, extremebits, extremetorrents, extremlymtorrents, exttorrents, eztv, falkonvisionteam, fanoin, fantasticheaven, fantastiko, femdomcult, fenyarnyek-tracker, file-tracker, filelisting, finelite, finvip, firebit, fluxzone, freshmeat, frozenlayer, ftuapps, funkytorrents, fuzer, gainbound, gamestorrents, gay-torrents, gay-torrentsorg, gaytorrentru, generationfree-api, genesismovement, gigatorrents, gimmepeers, girotorrent, gktorrent, glodls, greekdiamond, greekteam, gtorrentpro, haidan, haitang, happyfappy, hawke-uno, hd-unit3d-api, hd4fans, hdarea, hdatmos, hdc, hdchina, hdcztorrent, hddolby, hdfans, hdforever, hdgalaktik, hdhome, hdmayi, hdmonkey, hdolimpo-api, hdonly, hdroute, hdsky, hdtime, hdtorrentsit, hdturk, hdu, hdzone, hebits, hellashut, hhanclub, houseofdevil, hqmusic, huntorrent, icc2022, idope, ihdbits, ilcorsaroblu, ilcorsaronero, immortuos, indietorrents, insanetracker, internetarchive, isohunt2, itorrent, jav-torrent, jme-reunit3d-api, joyhd, jpopsuki, jptv, karagarga, keepfriends, kickasstorrents-to, kickasstorrents-ws, kinorun, kinozal, knaben, korsar, krazyzone, kufirc, lastfiles, lat-team-api, learnbits, learnflakes, leech24, lemonhd, lepornoinfo, les-cinephiles, lesaloon, libranet, limetorrents, limetorrentsclone, linkomanija, linuxtracker, locadora, losslessclub, lst, mactorrentsdownload, madsrevolution, magicheaven, magico, majomparade, marinetracker, mazepa, megamixtracker, megapeer, mesevilag, metaltracker, mikan, milkie, miobt, mircrew, mixtapetorrent, mma-torrents, mnv, mojblink, mousebits, moviesdvdr, moviesite, movietorrent, movietorrentz, mteamtp, mteamtp2fa, muziekfabriek, mvgroupforum, mvgroupmain, mypornclub, myspleen, nethd, newretro, newstudio, newstudiol, nicept, nipponsei, nntt, noname-club, noname-clubl, nyaasi, oldtoonsworld, onejav, opencd, oshenpt, ourbits, p2pbg, parnuxi, partis, pctorrent, peeratiko, peersfm, pier720, pignetwork, piratbit, piratbitl, pixelcove, pixelcove2fa, polishsource, polishtracker-api, pornbay, pornoslab, pornotorrent, portugas-api, potuk, proaudiotorrents, proporno, ptchina, pterclub, ptfiles, pthome, ptmsg, ptsbao, pttime, punkshorror, puntotorrent, pussytorrents, putao, puurhollands, pwtorrents, r3vwtf, racing4everyone-api, racingforme, rainbowtracker, rapidzona, redbits-api, redstartorrent, reelflix-api, resurrectthenet, rgfootball, rintor, rintornet, riperam, RockBox, romanianmetaltorrents, rptorrents, rudub, rus-media, rustorka, rutor, rutracker-ru, satclubbing, scenerush, sdbits, seedfile, seedoff, selezen, sexypics, shanaproject, shareisland-api, sharewood, sharkpt, showrss, siambit, skipthecommercials-api, skipthetrailers, sktorrent-org, sktorrent, slosoul, snowpt, solidtorrents, sosulki, soulvoice, speedmasterhd, speedtorrentreloaded, spidertk, spiritofrevolution, sporthd, sportscult, springsunday, sugoimusic, sukebeinyaasi, superbits, swarmazon-api, tapochek, tasmanit, teamctgame, teamhd, teamos, tekno3d, tellytorrent-api, teracod, the-crazy-ones, thedarkcommunity, theempire, thefallingangels, thegeeks, theleachzone, themixingbowl, thenewfun, theoccult, theoldschool-api, thepiratebay, theplace, thesceneplace, theshinning-api, theshow, thevault, tjupt, tlfbits, tmghub, tokyotosho, torlock, tornado, torrent-explosiv, torrent-pirat, torrent-turk, torrent9, torrent911, torrent9clone, torrentbd, torrentby, torrentccf, torrentv, torrentcore, torrentdownload, torrentdownloads, torrentfunk, torrentgalaxy, torrenthr, torrenting, torrentkitty, torrentland, torrentleech-pl, torrentleech, torrentlt, torrentmasters, torrentoyunindir, torrentproject2, torrentqq, torrentsectorcrew, torrentseeds-api, torrentsir, torrentslocal, torrentview, torrentwhiz, torrentz2eu, torrentz2nz, totallykids, totheglory, totheglorycookie, traht, trancetraffic, trezzor, tribalmixes, trupornolabs, turkseed, turktorrent, tvchaosuk, tvroad, twilight, u2, uhdbits, uniondht, unionfansub, uniongang, unleashthecartoons, unlimitz, vsthouse, vsttorrents, vtorrent, whiteangel, wihd, world-of-tomorrow, xiteme, xbytesv2, xthor-api, xtorrenty, xtremebytes, xwtclassics, xwtorrents, xxxadulttorrent, xxxtor, xxxtorrents, ydypt, yggcookie, yggtorrent, yourbittorrent, yts, zamundanet, zelkaorg, zetorrents, zmpt, zomb, ztracker, arabtorrents, elitetorrent-pl, kamept, lightning-tor -2023-03-19 19:46:51.3491 Info Loaded 570 indexers in total -2023-03-19 19:46:51.3511 Info Adding aggregate indexer ('all' indexer) ... -2023-03-19 19:46:51.3625 Info Adding filter indexer ('type:public' indexer) ... -2023-03-19 19:46:51.3630 Info Adding filter indexer ('type:private' indexer) ... -2023-03-19 19:46:51.3630 Info Adding filter indexer ('type:semi-public' indexer) ... -2023-03-19 19:46:51.6970 Info Jackett startup finished in 6.902 s diff --git a/tests/docker_configs/jackett/config/jackett/Jackett/updater.txt b/tests/docker_configs/jackett/config/jackett/Jackett/updater.txt deleted file mode 100644 index a49df99..0000000 --- a/tests/docker_configs/jackett/config/jackett/Jackett/updater.txt +++ /dev/null @@ -1,1655 +0,0 @@ -2023-03-18 20:54:40.4019 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml -2023-03-18 20:54:40.4271 Info Copied abtorrents.yml -2023-03-18 20:54:40.4271 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml -2023-03-18 20:54:40.4278 Info Copied acervos-api.yml -2023-03-18 20:54:40.4278 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml -2023-03-18 20:54:40.4278 Info Copied acgrip.yml -2023-03-18 20:54:40.4278 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml -2023-03-18 20:54:40.4290 Info Copied acgsou.yml -2023-03-18 20:54:40.4290 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml -2023-03-18 20:54:40.4297 Info Copied acidlounge.yml -2023-03-18 20:54:40.4297 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml -2023-03-18 20:54:40.4297 Info Copied acrossthetasman.yml -2023-03-18 20:54:40.4297 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml -2023-03-18 20:54:40.4310 Info Copied aftershock.yml -2023-03-18 20:54:40.4310 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml -2023-03-18 20:54:40.4310 Info Copied aidoruonline.yml -2023-03-18 20:54:40.4318 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml -2023-03-18 20:54:40.4318 Info Copied aither-api.yml -2023-03-18 20:54:40.4318 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml -2023-03-18 20:54:40.4329 Info Copied amigosshare.yml -2023-03-18 20:54:40.4329 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml -2023-03-18 20:54:40.4329 Info Copied anilibria.yml -2023-03-18 20:54:40.4337 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml -2023-03-18 20:54:40.4337 Info Copied anime-free.yml -2023-03-18 20:54:40.4337 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml -2023-03-18 20:54:40.4347 Info Copied animelayer.yml -2023-03-18 20:54:40.4347 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml -2023-03-18 20:54:40.4347 Info Copied animetracker.yml -2023-03-18 20:54:40.4347 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml -2023-03-18 20:54:40.4360 Info Copied animeworld-api.yml -2023-03-18 20:54:40.4360 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml -2023-03-18 20:54:40.4360 Info Copied anirena.yml -2023-03-18 20:54:40.4368 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml -2023-03-18 20:54:40.4368 Info Copied anisource.yml -2023-03-18 20:54:40.4368 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml -2023-03-18 20:54:40.4378 Info Copied anthelion-api.yml -2023-03-18 20:54:40.4378 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml -2023-03-18 20:54:40.4378 Info Copied arabafenice.yml -2023-03-18 20:54:40.4387 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml -2023-03-18 20:54:40.4387 Info Copied arabp2p.yml -2023-03-18 20:54:40.4387 Info Attempting to copy arabtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/arabtorrents.yml to destination: /app/Jackett/Definitions/arabtorrents.yml -2023-03-18 20:54:40.4397 Info Copied arabtorrents.yml -2023-03-18 20:54:40.4397 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml -2023-03-18 20:54:40.4397 Info Copied arenabg.yml -2023-03-18 20:54:40.4397 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml -2023-03-18 20:54:40.4410 Info Copied asiancinema.yml -2023-03-18 20:54:40.4410 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml -2023-03-18 20:54:40.4410 Info Copied asiandvdclub.yml -2023-03-18 20:54:40.4418 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml -2023-03-18 20:54:40.4418 Info Copied audiences.yml -2023-03-18 20:54:40.4418 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml -2023-03-18 20:54:40.4430 Info Copied audionews.yml -2023-03-18 20:54:40.4430 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml -2023-03-18 20:54:40.4430 Info Copied aussierules.yml -2023-03-18 20:54:40.4437 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml -2023-03-18 20:54:40.4437 Info Copied backups.yml -2023-03-18 20:54:40.4437 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml -2023-03-18 20:54:40.4449 Info Copied badasstorrents.yml -2023-03-18 20:54:40.4449 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml -2023-03-18 20:54:40.4449 Info Copied bangumi-moe.yml -2023-03-18 20:54:40.4457 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml -2023-03-18 20:54:40.4457 Info Copied beitai.yml -2023-03-18 20:54:40.4457 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml -2023-03-18 20:54:40.4468 Info Copied bestcore.yml -2023-03-18 20:54:40.4468 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml -2023-03-18 20:54:40.4468 Info Copied beyond-hd.yml -2023-03-18 20:54:40.4468 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml -2023-03-18 20:54:40.4480 Info Copied bibliotik.yml -2023-03-18 20:54:40.4480 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml -2023-03-18 20:54:40.4487 Info Copied bigfangroup.yml -2023-03-18 20:54:40.4487 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml -2023-03-18 20:54:40.4487 Info Copied bitbazis.yml -2023-03-18 20:54:40.4487 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml -2023-03-18 20:54:40.4499 Info Copied bitded.yml -2023-03-18 20:54:40.4499 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml -2023-03-18 20:54:40.4499 Info Copied bithorlo.yml -2023-03-18 20:54:40.4508 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml -2023-03-18 20:54:40.4508 Info Copied bithumen.yml -2023-03-18 20:54:40.4508 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml -2023-03-18 20:54:40.4519 Info Copied bitnova.yml -2023-03-18 20:54:40.4519 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml -2023-03-18 20:54:40.4519 Info Copied bitofvalor.yml -2023-03-18 20:54:40.4527 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml -2023-03-18 20:54:40.4527 Info Copied bitru.yml -2023-03-18 20:54:40.4527 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml -2023-03-18 20:54:40.4538 Info Copied bitsearch.yml -2023-03-18 20:54:40.4538 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml -2023-03-18 20:54:40.4538 Info Copied bitsexy.yml -2023-03-18 20:54:40.4538 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml -2023-03-18 20:54:40.4550 Info Copied bitspyder.yml -2023-03-18 20:54:40.4550 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml -2023-03-18 20:54:40.4550 Info Copied Bittorrentfiles.yml -2023-03-18 20:54:40.4558 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml -2023-03-18 20:54:40.4558 Info Copied bitturk.yml -2023-03-18 20:54:40.4558 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml -2023-03-18 20:54:40.4569 Info Copied bluebird.yml -2023-03-18 20:54:40.4569 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml -2023-03-18 20:54:40.4569 Info Copied blutopia-api.yml -2023-03-18 20:54:40.4577 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml -2023-03-18 20:54:40.4577 Info Copied booktracker.yml -2023-03-18 20:54:40.4577 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml -2023-03-18 20:54:40.4587 Info Copied bootytape.yml -2023-03-18 20:54:40.4587 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml -2023-03-18 20:54:40.4587 Info Copied borgzelle.yml -2023-03-18 20:54:40.4587 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml -2023-03-18 20:54:40.4600 Info Copied boxingtorrents.yml -2023-03-18 20:54:40.4600 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml -2023-03-18 20:54:40.4600 Info Copied broadcity.yml -2023-03-18 20:54:40.4608 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml -2023-03-18 20:54:40.4608 Info Copied brsociety-api.yml -2023-03-18 20:54:40.4608 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml -2023-03-18 20:54:40.4618 Info Copied bt4g.yml -2023-03-18 20:54:40.4618 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml -2023-03-18 20:54:40.4618 Info Copied btdigg.yml -2023-03-18 20:54:40.4618 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml -2023-03-18 20:54:40.4630 Info Copied btetree.yml -2023-03-18 20:54:40.4630 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml -2023-03-18 20:54:40.4630 Info Copied btmet.yml -2023-03-18 20:54:40.4638 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml -2023-03-18 20:54:40.4638 Info Copied btnext.yml -2023-03-18 20:54:40.4638 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml -2023-03-18 20:54:40.4649 Info Copied btschool.yml -2023-03-18 20:54:40.4649 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml -2023-03-18 20:54:40.4649 Info Copied btsow.yml -2023-03-18 20:54:40.4657 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml -2023-03-18 20:54:40.4657 Info Copied bulltorrent.yml -2023-03-18 20:54:40.4657 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml -2023-03-18 20:54:40.4668 Info Copied bwtorrents.yml -2023-03-18 20:54:40.4668 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml -2023-03-18 20:54:40.4668 Info Copied byrbt.yml -2023-03-18 20:54:40.4668 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml -2023-03-18 20:54:40.4681 Info Copied byrutor.yml -2023-03-18 20:54:40.4681 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml -2023-03-18 20:54:40.4687 Info Copied carpathians.yml -2023-03-18 20:54:40.4687 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml -2023-03-18 20:54:40.4687 Info Copied carphunter.yml -2023-03-18 20:54:40.4687 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml -2023-03-18 20:54:40.4699 Info Copied carpt.yml -2023-03-18 20:54:40.4699 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml -2023-03-18 20:54:40.4699 Info Copied cartoonchaos.yml -2023-03-18 20:54:40.4707 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml -2023-03-18 20:54:40.4707 Info Copied cathoderaytube.yml -2023-03-18 20:54:40.4707 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml -2023-03-18 20:54:40.4718 Info Copied catorrent.yml -2023-03-18 20:54:40.4718 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml -2023-03-18 20:54:40.4718 Info Copied ccfbits.yml -2023-03-18 20:54:40.4718 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml -2023-03-18 20:54:40.4730 Info Copied ceskeforum.yml -2023-03-18 20:54:40.4730 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml -2023-03-18 20:54:40.4730 Info Copied chdbits.yml -2023-03-18 20:54:40.4738 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml -2023-03-18 20:54:40.4738 Info Copied chilebt.yml -2023-03-18 20:54:40.4738 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml -2023-03-18 20:54:40.4748 Info Copied cinemageddon.yml -2023-03-18 20:54:40.4748 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml -2023-03-18 20:54:40.4748 Info Copied cinemamovies.yml -2023-03-18 20:54:40.4757 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml -2023-03-18 20:54:40.4757 Info Copied cinematik.yml -2023-03-18 20:54:40.4757 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml -2023-03-18 20:54:40.4767 Info Copied classix.yml -2023-03-18 20:54:40.4767 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml -2023-03-18 20:54:40.4767 Info Copied coastalcrew.yml -2023-03-18 20:54:40.4767 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml -2023-03-18 20:54:40.4780 Info Copied comicat.yml -2023-03-18 20:54:40.4780 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml -2023-03-18 20:54:40.4787 Info Copied concen.yml -2023-03-18 20:54:40.4787 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml -2023-03-18 20:54:40.4787 Info Copied concertos.yml -2023-03-18 20:54:40.4787 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml -2023-03-18 20:54:40.4798 Info Copied cpabien.yml -2023-03-18 20:54:40.4798 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml -2023-03-18 20:54:40.4798 Info Copied cpasbienclone.yml -2023-03-18 20:54:40.4806 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml -2023-03-18 20:54:40.4806 Info Copied cpasbiensi.yml -2023-03-18 20:54:40.4806 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml -2023-03-18 20:54:40.4817 Info Copied crackingpatching.yml -2023-03-18 20:54:40.4817 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml -2023-03-18 20:54:40.4817 Info Copied crazyhd.yml -2023-03-18 20:54:40.4817 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml -2023-03-18 20:54:40.4830 Info Copied crazyspirits.yml -2023-03-18 20:54:40.4830 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml -2023-03-18 20:54:40.4830 Info Copied crnaberza.yml -2023-03-18 20:54:40.4838 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml -2023-03-18 20:54:40.4838 Info Copied crt2fa.yml -2023-03-18 20:54:40.4838 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml -2023-03-18 20:54:40.4849 Info Copied danishbytes-api.yml -2023-03-18 20:54:40.4849 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml -2023-03-18 20:54:40.4849 Info Copied dariustracker.yml -2023-03-18 20:54:40.4857 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml -2023-03-18 20:54:40.4857 Info Copied dark-shadow.yml -2023-03-18 20:54:40.4857 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml -2023-03-18 20:54:40.4868 Info Copied datascene-api.yml -2023-03-18 20:54:40.4868 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml -2023-03-18 20:54:40.4868 Info Copied datatalli.yml -2023-03-18 20:54:40.4876 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml -2023-03-18 20:54:40.4876 Info Copied deildu.yml -2023-03-18 20:54:40.4876 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml -2023-03-18 20:54:40.4887 Info Copied demonoid.yml -2023-03-18 20:54:40.4887 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml -2023-03-18 20:54:40.4887 Info Copied desitorrents-api.yml -2023-03-18 20:54:40.4887 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml -2023-03-18 20:54:40.4899 Info Copied devil-torrents.yml -2023-03-18 20:54:40.4899 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml -2023-03-18 20:54:40.4899 Info Copied diablotorrent.yml -2023-03-18 20:54:40.4908 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml -2023-03-18 20:54:40.4908 Info Copied digitalcore.yml -2023-03-18 20:54:40.4908 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml -2023-03-18 20:54:40.4918 Info Copied dimeadozen.yml -2023-03-18 20:54:40.4918 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml -2023-03-18 20:54:40.4918 Info Copied discfan.yml -2023-03-18 20:54:40.4918 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml -2023-03-18 20:54:40.4931 Info Copied divteam.yml -2023-03-18 20:54:40.4931 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml -2023-03-18 20:54:40.4937 Info Copied dmhy.yml -2023-03-18 20:54:40.4937 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml -2023-03-18 20:54:40.4937 Info Copied docspedia.yml -2023-03-18 20:54:40.4937 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml -2023-03-18 20:54:40.4949 Info Copied dodder.yml -2023-03-18 20:54:40.4949 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml -2023-03-18 20:54:40.4949 Info Copied dreamtracker.yml -2023-03-18 20:54:40.4958 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml -2023-03-18 20:54:40.4958 Info Copied dxp.yml -2023-03-18 20:54:40.4958 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml -2023-03-18 20:54:40.4968 Info Copied ebookbay.yml -2023-03-18 20:54:40.4968 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml -2023-03-18 20:54:40.4968 Info Copied ebooks-shares.yml -2023-03-18 20:54:40.4968 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml -2023-03-18 20:54:40.4980 Info Copied ehentai.yml -2023-03-18 20:54:40.4980 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml -2023-03-18 20:54:40.4987 Info Copied electro-torrent.yml -2023-03-18 20:54:40.4987 Info Attempting to copy elitetorrent-pl.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/elitetorrent-pl.yml to destination: /app/Jackett/Definitions/elitetorrent-pl.yml -2023-03-18 20:54:40.4987 Info Copied elitetorrent-pl.yml -2023-03-18 20:54:40.4987 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml -2023-03-18 20:54:40.4999 Info Copied empornium.yml -2023-03-18 20:54:40.4999 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml -2023-03-18 20:54:40.4999 Info Copied empornium2fa.yml -2023-03-18 20:54:40.5007 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml -2023-03-18 20:54:40.5007 Info Copied eniahd.yml -2023-03-18 20:54:40.5007 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml -2023-03-18 20:54:40.5017 Info Copied esharenet.yml -2023-03-18 20:54:40.5017 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml -2023-03-18 20:54:40.5017 Info Copied estone.yml -2023-03-18 20:54:40.5017 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml -2023-03-18 20:54:40.5030 Info Copied exkinoray.yml -2023-03-18 20:54:40.5030 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml -2023-03-18 20:54:40.5037 Info Copied extratorrent-st.yml -2023-03-18 20:54:40.5037 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml -2023-03-18 20:54:40.5037 Info Copied extremebits.yml -2023-03-18 20:54:40.5037 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml -2023-03-18 20:54:40.5050 Info Copied extremetorrents.yml -2023-03-18 20:54:40.5050 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml -2023-03-18 20:54:40.5050 Info Copied extremlymtorrents.yml -2023-03-18 20:54:40.5058 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml -2023-03-18 20:54:40.5058 Info Copied exttorrents.yml -2023-03-18 20:54:40.5058 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml -2023-03-18 20:54:40.5069 Info Copied eztv.yml -2023-03-18 20:54:40.5069 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml -2023-03-18 20:54:40.5069 Info Copied falkonvisionteam.yml -2023-03-18 20:54:40.5077 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml -2023-03-18 20:54:40.5077 Info Copied fanoin.yml -2023-03-18 20:54:40.5077 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml -2023-03-18 20:54:40.5088 Info Copied fantasticheaven.yml -2023-03-18 20:54:40.5088 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml -2023-03-18 20:54:40.5088 Info Copied fantastiko.yml -2023-03-18 20:54:40.5088 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml -2023-03-18 20:54:40.5100 Info Copied femdomcult.yml -2023-03-18 20:54:40.5100 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml -2023-03-18 20:54:40.5107 Info Copied fenyarnyek-tracker.yml -2023-03-18 20:54:40.5107 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml -2023-03-18 20:54:40.5107 Info Copied file-tracker.yml -2023-03-18 20:54:40.5107 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml -2023-03-18 20:54:40.5120 Info Copied filelisting.yml -2023-03-18 20:54:40.5120 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml -2023-03-18 20:54:40.5120 Info Copied finelite.yml -2023-03-18 20:54:40.5128 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml -2023-03-18 20:54:40.5128 Info Copied finvip.yml -2023-03-18 20:54:40.5128 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml -2023-03-18 20:54:40.5139 Info Copied firebit.yml -2023-03-18 20:54:40.5139 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml -2023-03-18 20:54:40.5139 Info Copied fluxzone.yml -2023-03-18 20:54:40.5148 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml -2023-03-18 20:54:40.5148 Info Copied freshmeat.yml -2023-03-18 20:54:40.5148 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml -2023-03-18 20:54:40.5159 Info Copied frozenlayer.yml -2023-03-18 20:54:40.5159 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml -2023-03-18 20:54:40.5159 Info Copied ftuapps.yml -2023-03-18 20:54:40.5167 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml -2023-03-18 20:54:40.5167 Info Copied funkytorrents.yml -2023-03-18 20:54:40.5167 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml -2023-03-18 20:54:40.5178 Info Copied fuzer.yml -2023-03-18 20:54:40.5178 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml -2023-03-18 20:54:40.5178 Info Copied gainbound.yml -2023-03-18 20:54:40.5178 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml -2023-03-18 20:54:40.5191 Info Copied gamestorrents.yml -2023-03-18 20:54:40.5191 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml -2023-03-18 20:54:40.5197 Info Copied gay-torrents.yml -2023-03-18 20:54:40.5197 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml -2023-03-18 20:54:40.5197 Info Copied gay-torrentsorg.yml -2023-03-18 20:54:40.5197 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml -2023-03-18 20:54:40.5210 Info Copied gaytorrentru.yml -2023-03-18 20:54:40.5210 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml -2023-03-18 20:54:40.5210 Info Copied generationfree-api.yml -2023-03-18 20:54:40.5218 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml -2023-03-18 20:54:40.5218 Info Copied genesismovement.yml -2023-03-18 20:54:40.5218 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml -2023-03-18 20:54:40.5229 Info Copied gigatorrents.yml -2023-03-18 20:54:40.5229 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml -2023-03-18 20:54:40.5229 Info Copied gimmepeers.yml -2023-03-18 20:54:40.5237 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml -2023-03-18 20:54:40.5237 Info Copied girotorrent.yml -2023-03-18 20:54:40.5237 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml -2023-03-18 20:54:40.5247 Info Copied gktorrent.yml -2023-03-18 20:54:40.5247 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml -2023-03-18 20:54:40.5247 Info Copied glodls.yml -2023-03-18 20:54:40.5247 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml -2023-03-18 20:54:40.5260 Info Copied greekdiamond.yml -2023-03-18 20:54:40.5260 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml -2023-03-18 20:54:40.5260 Info Copied greekteam.yml -2023-03-18 20:54:40.5268 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml -2023-03-18 20:54:40.5268 Info Copied gtorrentpro.yml -2023-03-18 20:54:40.5268 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml -2023-03-18 20:54:40.5278 Info Copied haidan.yml -2023-03-18 20:54:40.5278 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml -2023-03-18 20:54:40.5278 Info Copied haitang.yml -2023-03-18 20:54:40.5278 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml -2023-03-18 20:54:40.5291 Info Copied happyfappy.yml -2023-03-18 20:54:40.5291 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml -2023-03-18 20:54:40.5297 Info Copied hawke-uno.yml -2023-03-18 20:54:40.5297 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml -2023-03-18 20:54:40.5297 Info Copied hd-unit3d-api.yml -2023-03-18 20:54:40.5297 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml -2023-03-18 20:54:40.5309 Info Copied hd4fans.yml -2023-03-18 20:54:40.5309 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml -2023-03-18 20:54:40.5309 Info Copied hdarea.yml -2023-03-18 20:54:40.5317 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml -2023-03-18 20:54:40.5317 Info Copied hdatmos.yml -2023-03-18 20:54:40.5317 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml -2023-03-18 20:54:40.5328 Info Copied hdc.yml -2023-03-18 20:54:40.5408 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml -2023-03-18 20:54:40.5408 Info Copied hdchina.yml -2023-03-18 20:54:40.5418 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml -2023-03-18 20:54:40.5418 Info Copied hdcztorrent.yml -2023-03-18 20:54:40.5418 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml -2023-03-18 20:54:40.5431 Info Copied hddolby.yml -2023-03-18 20:54:40.5437 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml -2023-03-18 20:54:40.5437 Info Copied hdfans.yml -2023-03-18 20:54:40.5437 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml -2023-03-18 20:54:40.5448 Info Copied hdforever.yml -2023-03-18 20:54:40.5448 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml -2023-03-18 20:54:40.5448 Info Copied hdgalaktik.yml -2023-03-18 20:54:40.5458 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml -2023-03-18 20:54:40.5458 Info Copied hdhome.yml -2023-03-18 20:54:40.5458 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml -2023-03-18 20:54:40.5470 Info Copied hdmayi.yml -2023-03-18 20:54:40.5470 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml -2023-03-18 20:54:40.5470 Info Copied hdmonkey.yml -2023-03-18 20:54:40.5481 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml -2023-03-18 20:54:40.5481 Info Copied hdolimpo-api.yml -2023-03-18 20:54:40.5488 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml -2023-03-18 20:54:40.5488 Info Copied hdonly.yml -2023-03-18 20:54:40.5488 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml -2023-03-18 20:54:40.5499 Info Copied hdroute.yml -2023-03-18 20:54:40.5499 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml -2023-03-18 20:54:40.5499 Info Copied hdsky.yml -2023-03-18 20:54:40.5508 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml -2023-03-18 20:54:40.5508 Info Copied hdtime.yml -2023-03-18 20:54:40.5508 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml -2023-03-18 20:54:40.5519 Info Copied hdtorrentsit.yml -2023-03-18 20:54:40.5519 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml -2023-03-18 20:54:40.5527 Info Copied hdturk.yml -2023-03-18 20:54:40.5527 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml -2023-03-18 20:54:40.5527 Info Copied hdu.yml -2023-03-18 20:54:40.5527 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml -2023-03-18 20:54:40.5540 Info Copied hdzone.yml -2023-03-18 20:54:40.5540 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml -2023-03-18 20:54:40.5540 Info Copied hebits.yml -2023-03-18 20:54:40.5548 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml -2023-03-18 20:54:40.5548 Info Copied hellashut.yml -2023-03-18 20:54:40.5548 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml -2023-03-18 20:54:40.5560 Info Copied hhanclub.yml -2023-03-18 20:54:40.5560 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml -2023-03-18 20:54:40.5567 Info Copied houseofdevil.yml -2023-03-18 20:54:40.5567 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml -2023-03-18 20:54:40.5567 Info Copied hqmusic.yml -2023-03-18 20:54:40.5567 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml -2023-03-18 20:54:40.5579 Info Copied huntorrent.yml -2023-03-18 20:54:40.5579 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml -2023-03-18 20:54:40.5579 Info Copied icc2022.yml -2023-03-18 20:54:40.5587 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml -2023-03-18 20:54:40.5587 Info Copied idope.yml -2023-03-18 20:54:40.5587 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml -2023-03-18 20:54:40.5597 Info Copied ihdbits.yml -2023-03-18 20:54:40.5597 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml -2023-03-18 20:54:40.5597 Info Copied ilcorsaroblu.yml -2023-03-18 20:54:40.5597 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml -2023-03-18 20:54:40.5610 Info Copied ilcorsaronero.yml -2023-03-18 20:54:40.5610 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml -2023-03-18 20:54:40.5617 Info Copied immortuos.yml -2023-03-18 20:54:40.5617 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml -2023-03-18 20:54:40.5617 Info Copied indietorrents.yml -2023-03-18 20:54:40.5617 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml -2023-03-18 20:54:40.5629 Info Copied insanetracker.yml -2023-03-18 20:54:40.5629 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml -2023-03-18 20:54:40.5629 Info Copied internetarchive.yml -2023-03-18 20:54:40.5638 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml -2023-03-18 20:54:40.5638 Info Copied isohunt2.yml -2023-03-18 20:54:40.5638 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml -2023-03-18 20:54:40.5648 Info Copied itorrent.yml -2023-03-18 20:54:40.5648 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml -2023-03-18 20:54:40.5648 Info Copied jav-torrent.yml -2023-03-18 20:54:40.5657 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml -2023-03-18 20:54:40.5657 Info Copied jme-reunit3d-api.yml -2023-03-18 20:54:40.5657 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml -2023-03-18 20:54:40.5668 Info Copied joyhd.yml -2023-03-18 20:54:40.5668 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml -2023-03-18 20:54:40.5668 Info Copied jpopsuki.yml -2023-03-18 20:54:40.5668 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml -2023-03-18 20:54:40.5680 Info Copied jptv.yml -2023-03-18 20:54:40.5680 Info Attempting to copy kamept.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/kamept.yml to destination: /app/Jackett/Definitions/kamept.yml -2023-03-18 20:54:40.5690 Info Copied kamept.yml -2023-03-18 20:54:40.5690 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml -2023-03-18 20:54:40.5697 Info Copied karagarga.yml -2023-03-18 20:54:40.5697 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml -2023-03-18 20:54:40.5697 Info Copied keepfriends.yml -2023-03-18 20:54:40.5697 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml -2023-03-18 20:54:40.5710 Info Copied kickasstorrents-to.yml -2023-03-18 20:54:40.5710 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml -2023-03-18 20:54:40.5710 Info Copied kickasstorrents-ws.yml -2023-03-18 20:54:40.5718 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml -2023-03-18 20:54:40.5718 Info Copied kinorun.yml -2023-03-18 20:54:40.5718 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml -2023-03-18 20:54:40.5729 Info Copied kinozal.yml -2023-03-18 20:54:40.5729 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml -2023-03-18 20:54:40.5736 Info Copied knaben.yml -2023-03-18 20:54:40.5736 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml -2023-03-18 20:54:40.5736 Info Copied korsar.yml -2023-03-18 20:54:40.5736 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml -2023-03-18 20:54:40.5750 Info Copied krazyzone.yml -2023-03-18 20:54:40.5750 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml -2023-03-18 20:54:40.5750 Info Copied kufirc.yml -2023-03-18 20:54:40.5758 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml -2023-03-18 20:54:40.5758 Info Copied lastfiles.yml -2023-03-18 20:54:40.5758 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml -2023-03-18 20:54:40.5770 Info Copied lat-team-api.yml -2023-03-18 20:54:40.5770 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml -2023-03-18 20:54:40.5777 Info Copied learnbits.yml -2023-03-18 20:54:40.5777 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml -2023-03-18 20:54:40.5777 Info Copied learnflakes.yml -2023-03-18 20:54:40.5777 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml -2023-03-18 20:54:40.5798 Info Copied leech24.yml -2023-03-18 20:54:40.5798 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml -2023-03-18 20:54:40.5798 Info Copied lemonhd.yml -2023-03-18 20:54:40.5798 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml -2023-03-18 20:54:40.5810 Info Copied lepornoinfo.yml -2023-03-18 20:54:40.5810 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml -2023-03-18 20:54:40.5810 Info Copied les-cinephiles.yml -2023-03-18 20:54:40.5818 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml -2023-03-18 20:54:40.5818 Info Copied lesaloon.yml -2023-03-18 20:54:40.5818 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml -2023-03-18 20:54:40.5828 Info Copied libranet.yml -2023-03-18 20:54:40.5828 Info Attempting to copy lightning-tor.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/lightning-tor.yml to destination: /app/Jackett/Definitions/lightning-tor.yml -2023-03-18 20:54:40.5828 Info Copied lightning-tor.yml -2023-03-18 20:54:40.5839 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml -2023-03-18 20:54:40.5853 Info Copied limetorrents.yml -2023-03-18 20:54:40.5858 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml -2023-03-18 20:54:40.5873 Info Copied limetorrentsclone.yml -2023-03-18 20:54:40.5878 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml -2023-03-18 20:54:40.5890 Info Copied linkomanija.yml -2023-03-18 20:54:40.5890 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml -2023-03-18 20:54:40.5909 Info Copied linuxtracker.yml -2023-03-18 20:54:40.5909 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml -2023-03-18 20:54:40.5928 Info Copied locadora.yml -2023-03-18 20:54:40.5928 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml -2023-03-18 20:54:40.5943 Info Copied losslessclub.yml -2023-03-18 20:54:40.5949 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml -2023-03-18 20:54:40.5961 Info Copied lst.yml -2023-03-18 20:54:40.5967 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml -2023-03-18 20:54:40.5978 Info Copied mactorrentsdownload.yml -2023-03-18 20:54:40.5978 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml -2023-03-18 20:54:40.5995 Info Copied madsrevolution.yml -2023-03-18 20:54:40.6000 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml -2023-03-18 20:54:40.6012 Info Copied magicheaven.yml -2023-03-18 20:54:40.6018 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml -2023-03-18 20:54:40.6029 Info Copied magico.yml -2023-03-18 20:54:40.6029 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml -2023-03-18 20:54:40.6045 Info Copied majomparade.yml -2023-03-18 20:54:40.6051 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml -2023-03-18 20:54:40.6063 Info Copied marinetracker.yml -2023-03-18 20:54:40.6068 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml -2023-03-18 20:54:40.6081 Info Copied mazepa.yml -2023-03-18 20:54:40.6087 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml -2023-03-18 20:54:40.6098 Info Copied megamixtracker.yml -2023-03-18 20:54:40.6098 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml -2023-03-18 20:54:40.6115 Info Copied megapeer.yml -2023-03-18 20:54:40.6120 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml -2023-03-18 20:54:40.6131 Info Copied mesevilag.yml -2023-03-18 20:54:40.6131 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml -2023-03-18 20:54:40.6148 Info Copied metaltracker.yml -2023-03-18 20:54:40.6148 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml -2023-03-18 20:54:40.6164 Info Copied mikan.yml -2023-03-18 20:54:40.6169 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml -2023-03-18 20:54:40.6180 Info Copied milkie.yml -2023-03-18 20:54:40.6180 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml -2023-03-18 20:54:40.6199 Info Copied miobt.yml -2023-03-18 20:54:40.6199 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml -2023-03-18 20:54:40.6214 Info Copied mircrew.yml -2023-03-18 20:54:40.6219 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml -2023-03-18 20:54:40.6229 Info Copied mixtapetorrent.yml -2023-03-18 20:54:40.6229 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml -2023-03-18 20:54:40.6246 Info Copied mma-torrents.yml -2023-03-18 20:54:40.6250 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml -2023-03-18 20:54:40.6261 Info Copied mnv.yml -2023-03-18 20:54:40.6267 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml -2023-03-18 20:54:40.6278 Info Copied mojblink.yml -2023-03-18 20:54:40.6278 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml -2023-03-18 20:54:40.6293 Info Copied mousebits.yml -2023-03-18 20:54:40.6299 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml -2023-03-18 20:54:40.6310 Info Copied moviesdvdr.yml -2023-03-18 20:54:40.6310 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml -2023-03-18 20:54:40.6327 Info Copied moviesite.yml -2023-03-18 20:54:40.6327 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml -2023-03-18 20:54:40.6344 Info Copied movietorrent.yml -2023-03-18 20:54:40.6349 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml -2023-03-18 20:54:40.6360 Info Copied movietorrentz.yml -2023-03-18 20:54:40.6360 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml -2023-03-18 20:54:40.6375 Info Copied mteamtp.yml -2023-03-18 20:54:40.6381 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml -2023-03-18 20:54:40.6392 Info Copied mteamtp2fa.yml -2023-03-18 20:54:40.6397 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml -2023-03-18 20:54:40.6408 Info Copied muziekfabriek.yml -2023-03-18 20:54:40.6408 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml -2023-03-18 20:54:40.6424 Info Copied mvgroupforum.yml -2023-03-18 20:54:40.6430 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml -2023-03-18 20:54:40.6441 Info Copied mvgroupmain.yml -2023-03-18 20:54:40.6441 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml -2023-03-18 20:54:40.6457 Info Copied mypornclub.yml -2023-03-18 20:54:40.6457 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml -2023-03-18 20:54:40.6473 Info Copied myspleen.yml -2023-03-18 20:54:40.6477 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml -2023-03-18 20:54:40.6487 Info Copied nethd.yml -2023-03-18 20:54:40.6487 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml -2023-03-18 20:54:40.6502 Info Copied newretro.yml -2023-03-18 20:54:40.6507 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml -2023-03-18 20:54:40.6507 Info Copied newstudio.yml -2023-03-18 20:54:40.6521 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml -2023-03-18 20:54:40.6531 Info Copied newstudiol.yml -2023-03-18 20:54:40.6531 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml -2023-03-18 20:54:40.6547 Info Copied nicept.yml -2023-03-18 20:54:40.6547 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml -2023-03-18 20:54:40.6561 Info Copied nipponsei.yml -2023-03-18 20:54:40.6561 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml -2023-03-18 20:54:40.6578 Info Copied nntt.yml -2023-03-18 20:54:40.6578 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml -2023-03-18 20:54:40.6597 Info Copied noname-club.yml -2023-03-18 20:54:40.6597 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml -2023-03-18 20:54:40.6614 Info Copied noname-clubl.yml -2023-03-18 20:54:40.6618 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml -2023-03-18 20:54:40.6629 Info Copied nyaasi.yml -2023-03-18 20:54:40.6629 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml -2023-03-18 20:54:40.6645 Info Copied oldtoonsworld.yml -2023-03-18 20:54:40.6649 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml -2023-03-18 20:54:40.6659 Info Copied onejav.yml -2023-03-18 20:54:40.6659 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml -2023-03-18 20:54:40.6675 Info Copied opencd.yml -2023-03-18 20:54:40.6680 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml -2023-03-18 20:54:40.6690 Info Copied oshenpt.yml -2023-03-18 20:54:40.6690 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml -2023-03-18 20:54:40.6704 Info Copied ourbits.yml -2023-03-18 20:54:40.6710 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml -2023-03-18 20:54:40.6721 Info Copied p2pbg.yml -2023-03-18 20:54:40.6721 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml -2023-03-18 20:54:40.6817 Info Copied parnuxi.yml -2023-03-18 20:54:40.6817 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml -2023-03-18 20:54:40.6832 Info Copied partis.yml -2023-03-18 20:54:40.6837 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml -2023-03-18 20:54:40.6848 Info Copied pctorrent.yml -2023-03-18 20:54:40.6848 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml -2023-03-18 20:54:40.6863 Info Copied peeratiko.yml -2023-03-18 20:54:40.6867 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml -2023-03-18 20:54:40.6878 Info Copied peersfm.yml -2023-03-18 20:54:40.6878 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml -2023-03-18 20:54:40.6892 Info Copied pier720.yml -2023-03-18 20:54:40.6892 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml -2023-03-18 20:54:40.6907 Info Copied pignetwork.yml -2023-03-18 20:54:40.6907 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml -2023-03-18 20:54:40.6922 Info Copied piratbit.yml -2023-03-18 20:54:40.6927 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml -2023-03-18 20:54:40.6938 Info Copied piratbitl.yml -2023-03-18 20:54:40.6938 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml -2023-03-18 20:54:40.6953 Info Copied pixelcove.yml -2023-03-18 20:54:40.6958 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml -2023-03-18 20:54:40.6968 Info Copied pixelcove2fa.yml -2023-03-18 20:54:40.6968 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml -2023-03-18 20:54:40.6981 Info Copied polishsource.yml -2023-03-18 20:54:40.6981 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml -2023-03-18 20:54:40.6994 Info Copied polishtracker-api.yml -2023-03-18 20:54:40.6998 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml -2023-03-18 20:54:40.7007 Info Copied pornbay.yml -2023-03-18 20:54:40.7007 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml -2023-03-18 20:54:40.7020 Info Copied pornoslab.yml -2023-03-18 20:54:40.7020 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml -2023-03-18 20:54:40.7034 Info Copied pornotorrent.yml -2023-03-18 20:54:40.7039 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml -2023-03-18 20:54:40.7049 Info Copied portugas-api.yml -2023-03-18 20:54:40.7049 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml -2023-03-18 20:54:40.7061 Info Copied potuk.yml -2023-03-18 20:54:40.7061 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml -2023-03-18 20:54:40.7074 Info Copied proaudiotorrents.yml -2023-03-18 20:54:40.7078 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml -2023-03-18 20:54:40.7088 Info Copied proporno.yml -2023-03-18 20:54:40.7088 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml -2023-03-18 20:54:40.7102 Info Copied ptchina.yml -2023-03-18 20:54:40.7102 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml -2023-03-18 20:54:40.7115 Info Copied pterclub.yml -2023-03-18 20:54:40.7120 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml -2023-03-18 20:54:40.7129 Info Copied ptfiles.yml -2023-03-18 20:54:40.7129 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml -2023-03-18 20:54:40.7141 Info Copied pthome.yml -2023-03-18 20:54:40.7141 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml -2023-03-18 20:54:40.7155 Info Copied ptmsg.yml -2023-03-18 20:54:40.7159 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml -2023-03-18 20:54:40.7168 Info Copied ptsbao.yml -2023-03-18 20:54:40.7168 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml -2023-03-18 20:54:40.7183 Info Copied pttime.yml -2023-03-18 20:54:40.7187 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml -2023-03-18 20:54:40.7198 Info Copied punkshorror.yml -2023-03-18 20:54:40.7198 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml -2023-03-18 20:54:40.7213 Info Copied puntotorrent.yml -2023-03-18 20:54:40.7218 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml -2023-03-18 20:54:40.7228 Info Copied pussytorrents.yml -2023-03-18 20:54:40.7228 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml -2023-03-18 20:54:40.7242 Info Copied putao.yml -2023-03-18 20:54:40.7242 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml -2023-03-18 20:54:40.7256 Info Copied puurhollands.yml -2023-03-18 20:54:40.7260 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml -2023-03-18 20:54:40.7271 Info Copied pwtorrents.yml -2023-03-18 20:54:40.7271 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml -2023-03-18 20:54:40.7284 Info Copied r3vwtf.yml -2023-03-18 20:54:40.7288 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml -2023-03-18 20:54:40.7297 Info Copied racing4everyone-api.yml -2023-03-18 20:54:40.7297 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml -2023-03-18 20:54:40.7311 Info Copied racingforme.yml -2023-03-18 20:54:40.7311 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml -2023-03-18 20:54:40.7324 Info Copied rainbowtracker.yml -2023-03-18 20:54:40.7328 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml -2023-03-18 20:54:40.7338 Info Copied rapidzona.yml -2023-03-18 20:54:40.7338 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml -2023-03-18 20:54:40.7353 Info Copied redbits-api.yml -2023-03-18 20:54:40.7358 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml -2023-03-18 20:54:40.7367 Info Copied redstartorrent.yml -2023-03-18 20:54:40.7367 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml -2023-03-18 20:54:40.7380 Info Copied reelflix-api.yml -2023-03-18 20:54:40.7380 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml -2023-03-18 20:54:40.7395 Info Copied resurrectthenet.yml -2023-03-18 20:54:40.7400 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml -2023-03-18 20:54:40.7410 Info Copied rgfootball.yml -2023-03-18 20:54:40.7410 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml -2023-03-18 20:54:40.7423 Info Copied rintor.yml -2023-03-18 20:54:40.7427 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml -2023-03-18 20:54:40.7427 Info Copied rintornet.yml -2023-03-18 20:54:40.7440 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml -2023-03-18 20:54:40.7450 Info Copied riperam.yml -2023-03-18 20:54:40.7450 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml -2023-03-18 20:54:40.7463 Info Copied rockbox.yml -2023-03-18 20:54:40.7468 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml -2023-03-18 20:54:40.7477 Info Copied romanianmetaltorrents.yml -2023-03-18 20:54:40.7477 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml -2023-03-18 20:54:40.7506 Info Copied rptorrents.yml -2023-03-18 20:54:40.7506 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml -2023-03-18 20:54:40.7522 Info Copied rudub.yml -2023-03-18 20:54:40.7522 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml -2023-03-18 20:54:40.7537 Info Copied rus-media.yml -2023-03-18 20:54:40.7537 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml -2023-03-18 20:54:40.7552 Info Copied rustorka.yml -2023-03-18 20:54:40.7552 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml -2023-03-18 20:54:40.7566 Info Copied rutor.yml -2023-03-18 20:54:40.7570 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml -2023-03-18 20:54:40.7580 Info Copied rutracker-ru.yml -2023-03-18 20:54:40.7580 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml -2023-03-18 20:54:40.7593 Info Copied satclubbing.yml -2023-03-18 20:54:40.7597 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml -2023-03-18 20:54:40.7597 Info Copied scenerush.yml -2023-03-18 20:54:40.7610 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml -2023-03-18 20:54:40.7619 Info Copied sdbits.yml -2023-03-18 20:54:40.7619 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml -2023-03-18 20:54:40.7632 Info Copied seedfile.yml -2023-03-18 20:54:40.7632 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml -2023-03-18 20:54:40.7645 Info Copied seedoff.yml -2023-03-18 20:54:40.7650 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml -2023-03-18 20:54:40.7660 Info Copied selezen.yml -2023-03-18 20:54:40.7660 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml -2023-03-18 20:54:40.7673 Info Copied sexypics.yml -2023-03-18 20:54:40.7677 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml -2023-03-18 20:54:40.7677 Info Copied shanaproject.yml -2023-03-18 20:54:40.7690 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml -2023-03-18 20:54:40.7699 Info Copied shareisland-api.yml -2023-03-18 20:54:40.7699 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml -2023-03-18 20:54:40.7713 Info Copied sharewood.yml -2023-03-18 20:54:40.7713 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml -2023-03-18 20:54:40.7726 Info Copied sharkpt.yml -2023-03-18 20:54:40.7730 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml -2023-03-18 20:54:40.7739 Info Copied showrss.yml -2023-03-18 20:54:40.7739 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml -2023-03-18 20:54:40.7753 Info Copied siambit.yml -2023-03-18 20:54:40.7757 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml -2023-03-18 20:54:40.7757 Info Copied skipthecommercials-api.yml -2023-03-18 20:54:40.7770 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml -2023-03-18 20:54:40.7780 Info Copied skipthetrailers.yml -2023-03-18 20:54:40.7780 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml -2023-03-18 20:54:40.7793 Info Copied sktorrent-org.yml -2023-03-18 20:54:40.7797 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml -2023-03-18 20:54:40.7807 Info Copied sktorrent.yml -2023-03-18 20:54:40.7807 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml -2023-03-18 20:54:40.7822 Info Copied slosoul.yml -2023-03-18 20:54:40.7822 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml -2023-03-18 20:54:40.7835 Info Copied snowpt.yml -2023-03-18 20:54:40.7839 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml -2023-03-18 20:54:40.7848 Info Copied solidtorrents.yml -2023-03-18 20:54:40.7848 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml -2023-03-18 20:54:40.7861 Info Copied sosulki.yml -2023-03-18 20:54:40.7861 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml -2023-03-18 20:54:40.7875 Info Copied soulvoice.yml -2023-03-18 20:54:40.7880 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml -2023-03-18 20:54:40.7889 Info Copied speedmasterhd.yml -2023-03-18 20:54:40.7889 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml -2023-03-18 20:54:40.7902 Info Copied speedtorrentreloaded.yml -2023-03-18 20:54:40.7902 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml -2023-03-18 20:54:40.7915 Info Copied spidertk.yml -2023-03-18 20:54:40.7920 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml -2023-03-18 20:54:40.7929 Info Copied spiritofrevolution.yml -2023-03-18 20:54:40.7929 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml -2023-03-18 20:54:40.7944 Info Copied sporthd.yml -2023-03-18 20:54:40.7948 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml -2023-03-18 20:54:40.7958 Info Copied sportscult.yml -2023-03-18 20:54:40.7958 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml -2023-03-18 20:54:40.7971 Info Copied springsunday.yml -2023-03-18 20:54:40.7971 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml -2023-03-18 20:54:40.7986 Info Copied sugoimusic.yml -2023-03-18 20:54:40.7990 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml -2023-03-18 20:54:40.8000 Info Copied sukebeinyaasi.yml -2023-03-18 20:54:40.8000 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml -2023-03-18 20:54:40.8013 Info Copied superbits.yml -2023-03-18 20:54:40.8017 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml -2023-03-18 20:54:40.8017 Info Copied swarmazon-api.yml -2023-03-18 20:54:40.8030 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml -2023-03-18 20:54:40.8041 Info Copied tapochek.yml -2023-03-18 20:54:40.8041 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml -2023-03-18 20:54:40.8055 Info Copied tasmanit.yml -2023-03-18 20:54:40.8059 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml -2023-03-18 20:54:40.8069 Info Copied teamctgame.yml -2023-03-18 20:54:40.8069 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml -2023-03-18 20:54:40.8082 Info Copied teamhd.yml -2023-03-18 20:54:40.8082 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml -2023-03-18 20:54:40.8096 Info Copied teamos.yml -2023-03-18 20:54:40.8101 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml -2023-03-18 20:54:40.8112 Info Copied tekno3d.yml -2023-03-18 20:54:40.8117 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml -2023-03-18 20:54:40.8127 Info Copied tellytorrent-api.yml -2023-03-18 20:54:40.8127 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml -2023-03-18 20:54:40.8143 Info Copied teracod.yml -2023-03-18 20:54:40.8148 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml -2023-03-18 20:54:40.8158 Info Copied the-crazy-ones.yml -2023-03-18 20:54:40.8158 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml -2023-03-18 20:54:40.8173 Info Copied thedarkcommunity-api.yml -2023-03-18 20:54:40.8177 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml -2023-03-18 20:54:40.8187 Info Copied theempire.yml -2023-03-18 20:54:40.8187 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml -2023-03-18 20:54:40.8201 Info Copied thefallingangels.yml -2023-03-18 20:54:40.8201 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml -2023-03-18 20:54:40.8216 Info Copied thegeeks.yml -2023-03-18 20:54:40.8221 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml -2023-03-18 20:54:40.8231 Info Copied theleachzone.yml -2023-03-18 20:54:40.8231 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml -2023-03-18 20:54:40.8245 Info Copied themixingbowl.yml -2023-03-18 20:54:40.8251 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml -2023-03-18 20:54:40.8260 Info Copied thenewfun.yml -2023-03-18 20:54:40.8260 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml -2023-03-18 20:54:40.8274 Info Copied theoccult.yml -2023-03-18 20:54:40.8278 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml -2023-03-18 20:54:40.8288 Info Copied theoldschool-api.yml -2023-03-18 20:54:40.8288 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml -2023-03-18 20:54:40.8302 Info Copied thepiratebay.yml -2023-03-18 20:54:40.8307 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml -2023-03-18 20:54:40.8307 Info Copied theplace.yml -2023-03-18 20:54:40.8320 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml -2023-03-18 20:54:40.8330 Info Copied thesceneplace.yml -2023-03-18 20:54:40.8330 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml -2023-03-18 20:54:40.8343 Info Copied theshinning-api.yml -2023-03-18 20:54:40.8347 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml -2023-03-18 20:54:40.8347 Info Copied theshow.yml -2023-03-18 20:54:40.8360 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml -2023-03-18 20:54:40.8369 Info Copied thevault.yml -2023-03-18 20:54:40.8369 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml -2023-03-18 20:54:40.8383 Info Copied tjupt.yml -2023-03-18 20:54:40.8387 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml -2023-03-18 20:54:40.8387 Info Copied tlfbits.yml -2023-03-18 20:54:40.8401 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml -2023-03-18 20:54:40.8410 Info Copied tmghub.yml -2023-03-18 20:54:40.8410 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml -2023-03-18 20:54:40.8423 Info Copied tokyotosho.yml -2023-03-18 20:54:40.8427 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml -2023-03-18 20:54:40.8437 Info Copied torlock.yml -2023-03-18 20:54:40.8437 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml -2023-03-18 20:54:40.8450 Info Copied tornado.yml -2023-03-18 20:54:40.8450 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml -2023-03-18 20:54:40.8463 Info Copied torrent-explosiv.yml -2023-03-18 20:54:40.8468 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml -2023-03-18 20:54:40.8478 Info Copied torrent-pirat.yml -2023-03-18 20:54:40.8478 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml -2023-03-18 20:54:40.8490 Info Copied torrent-turk.yml -2023-03-18 20:54:40.8490 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml -2023-03-18 20:54:40.8505 Info Copied torrent9.yml -2023-03-18 20:54:40.8510 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml -2023-03-18 20:54:40.8519 Info Copied torrent911.yml -2023-03-18 20:54:40.8519 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml -2023-03-18 20:54:40.8549 Info Copied torrent9clone.yml -2023-03-18 20:54:40.8549 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml -2023-03-18 20:54:40.8564 Info Copied torrentbd.yml -2023-03-18 20:54:40.8568 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml -2023-03-18 20:54:40.8577 Info Copied torrentby.yml -2023-03-18 20:54:40.8577 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml -2023-03-18 20:54:40.8591 Info Copied torrentccf.yml -2023-03-18 20:54:40.8591 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml -2023-03-18 20:54:40.8604 Info Copied torrentcore.yml -2023-03-18 20:54:40.8608 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml -2023-03-18 20:54:40.8618 Info Copied torrentdownload.yml -2023-03-18 20:54:40.8618 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml -2023-03-18 20:54:40.8630 Info Copied torrentdownloads.yml -2023-03-18 20:54:40.8630 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml -2023-03-18 20:54:40.8644 Info Copied torrentfunk.yml -2023-03-18 20:54:40.8649 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml -2023-03-18 20:54:40.8660 Info Copied torrentgalaxy.yml -2023-03-18 20:54:40.8660 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml -2023-03-18 20:54:40.8672 Info Copied torrenthr.yml -2023-03-18 20:54:40.8672 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml -2023-03-18 20:54:40.8686 Info Copied torrenting.yml -2023-03-18 20:54:40.8691 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml -2023-03-18 20:54:40.8699 Info Copied torrentkitty.yml -2023-03-18 20:54:40.8699 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml -2023-03-18 20:54:40.8714 Info Copied torrentland.yml -2023-03-18 20:54:40.8718 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml -2023-03-18 20:54:40.8727 Info Copied torrentleech-pl.yml -2023-03-18 20:54:40.8727 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml -2023-03-18 20:54:40.8741 Info Copied torrentleech.yml -2023-03-18 20:54:40.8741 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml -2023-03-18 20:54:40.8754 Info Copied torrentlt.yml -2023-03-18 20:54:40.8759 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml -2023-03-18 20:54:40.8769 Info Copied torrentmasters.yml -2023-03-18 20:54:40.8769 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml -2023-03-18 20:54:40.8781 Info Copied torrentoyunindir.yml -2023-03-18 20:54:40.8781 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml -2023-03-18 20:54:40.8795 Info Copied torrentproject2.yml -2023-03-18 20:54:40.8800 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml -2023-03-18 20:54:40.8811 Info Copied torrentqq.yml -2023-03-18 20:54:40.8811 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml -2023-03-18 20:54:40.8826 Info Copied torrentsectorcrew.yml -2023-03-18 20:54:40.8830 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml -2023-03-18 20:54:40.8841 Info Copied torrentseeds-api.yml -2023-03-18 20:54:40.8841 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml -2023-03-18 20:54:40.8855 Info Copied torrentsir.yml -2023-03-18 20:54:40.8859 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml -2023-03-18 20:54:40.8870 Info Copied torrentslocal.yml -2023-03-18 20:54:40.8870 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml -2023-03-18 20:54:40.8882 Info Copied torrentv.yml -2023-03-18 20:54:40.8882 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml -2023-03-18 20:54:40.8895 Info Copied torrentview.yml -2023-03-18 20:54:40.8899 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml -2023-03-18 20:54:40.8908 Info Copied torrentwhiz.yml -2023-03-18 20:54:40.8908 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml -2023-03-18 20:54:40.8921 Info Copied torrentz2eu.yml -2023-03-18 20:54:40.8921 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml -2023-03-18 20:54:40.8935 Info Copied torrentz2nz.yml -2023-03-18 20:54:40.8939 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml -2023-03-18 20:54:40.8948 Info Copied totallykids.yml -2023-03-18 20:54:40.8948 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml -2023-03-18 20:54:40.8995 Info Copied totheglory.yml -2023-03-18 20:54:40.9000 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml -2023-03-18 20:54:40.9012 Info Copied totheglorycookie.yml -2023-03-18 20:54:40.9017 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml -2023-03-18 20:54:40.9027 Info Copied traht.yml -2023-03-18 20:54:40.9027 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml -2023-03-18 20:54:40.9040 Info Copied trancetraffic.yml -2023-03-18 20:54:40.9040 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml -2023-03-18 20:54:40.9056 Info Copied trezzor.yml -2023-03-18 20:54:40.9060 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml -2023-03-18 20:54:40.9071 Info Copied tribalmixes.yml -2023-03-18 20:54:40.9071 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml -2023-03-18 20:54:40.9087 Info Copied trupornolabs.yml -2023-03-18 20:54:40.9087 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml -2023-03-18 20:54:40.9100 Info Copied turkseed.yml -2023-03-18 20:54:40.9100 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml -2023-03-18 20:54:40.9113 Info Copied turktorrent.yml -2023-03-18 20:54:40.9117 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml -2023-03-18 20:54:40.9117 Info Copied tvchaosuk.yml -2023-03-18 20:54:40.9130 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml -2023-03-18 20:54:40.9140 Info Copied tvroad.yml -2023-03-18 20:54:40.9140 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml -2023-03-18 20:54:40.9153 Info Copied twilight.yml -2023-03-18 20:54:40.9158 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml -2023-03-18 20:54:40.9169 Info Copied u2.yml -2023-03-18 20:54:40.9169 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml -2023-03-18 20:54:40.9182 Info Copied uhdbits.yml -2023-03-18 20:54:40.9182 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml -2023-03-18 20:54:40.9349 Info Copied uniondht.yml -2023-03-18 20:54:40.9349 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml -2023-03-18 20:54:40.9364 Info Copied unionfansub.yml -2023-03-18 20:54:40.9368 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml -2023-03-18 20:54:40.9379 Info Copied uniongang.yml -2023-03-18 20:54:40.9379 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml -2023-03-18 20:54:40.9392 Info Copied unleashthecartoons.yml -2023-03-18 20:54:40.9397 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml -2023-03-18 20:54:40.9397 Info Copied unlimitz.yml -2023-03-18 20:54:40.9410 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml -2023-03-18 20:54:40.9419 Info Copied vsthouse.yml -2023-03-18 20:54:40.9419 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml -2023-03-18 20:54:40.9433 Info Copied vsttorrents.yml -2023-03-18 20:54:40.9437 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml -2023-03-18 20:54:40.9437 Info Copied vtorrent.yml -2023-03-18 20:54:40.9450 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml -2023-03-18 20:54:40.9462 Info Copied whiteangel.yml -2023-03-18 20:54:40.9467 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml -2023-03-18 20:54:40.9478 Info Copied wihd.yml -2023-03-18 20:54:40.9478 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml -2023-03-18 20:54:40.9492 Info Copied world-of-tomorrow.yml -2023-03-18 20:54:40.9497 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml -2023-03-18 20:54:40.9507 Info Copied x-ite.me.yml -2023-03-18 20:54:40.9507 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml -2023-03-18 20:54:40.9521 Info Copied xbytes2.yml -2023-03-18 20:54:40.9521 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml -2023-03-18 20:54:40.9535 Info Copied xthor-api.yml -2023-03-18 20:54:40.9540 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml -2023-03-18 20:54:40.9550 Info Copied xtorrenty.yml -2023-03-18 20:54:40.9550 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml -2023-03-18 20:54:40.9563 Info Copied xtremebytes.yml -2023-03-18 20:54:40.9567 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml -2023-03-18 20:54:40.9578 Info Copied xwtclassics.yml -2023-03-18 20:54:40.9578 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml -2023-03-18 20:54:40.9590 Info Copied xwtorrents.yml -2023-03-18 20:54:40.9590 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml -2023-03-18 20:54:40.9603 Info Copied xxxadulttorrent.yml -2023-03-18 20:54:40.9607 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml -2023-03-18 20:54:40.9607 Info Copied xxxtor.yml -2023-03-18 20:54:40.9620 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml -2023-03-18 20:54:40.9629 Info Copied xxxtorrents.yml -2023-03-18 20:54:40.9629 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml -2023-03-18 20:54:40.9644 Info Copied ydypt.yml -2023-03-18 20:54:40.9648 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml -2023-03-18 20:54:40.9660 Info Copied yggcookie.yml -2023-03-18 20:54:40.9660 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml -2023-03-18 20:54:40.9674 Info Copied yggtorrent.yml -2023-03-18 20:54:40.9679 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml -2023-03-18 20:54:40.9688 Info Copied yourbittorrent.yml -2023-03-18 20:54:40.9688 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml -2023-03-18 20:54:40.9702 Info Copied yts.yml -2023-03-18 20:54:40.9702 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml -2023-03-18 20:54:40.9717 Info Copied zamundanet.yml -2023-03-18 20:54:40.9717 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml -2023-03-18 20:54:40.9731 Info Copied zelkaorg.yml -2023-03-18 20:54:40.9731 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml -2023-03-18 20:54:40.9744 Info Copied zetorrents.yml -2023-03-18 20:54:40.9749 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml -2023-03-18 20:54:40.9759 Info Copied zmpt.yml -2023-03-18 20:54:40.9759 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml -2023-03-18 20:54:40.9771 Info Copied zomb.yml -2023-03-18 20:54:40.9771 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml -2023-03-18 20:54:40.9784 Info Copied ztracker.yml -2023-03-18 20:54:40.9788 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll -2023-03-18 20:54:40.9798 Info Copied FlareSolverrSharp.dll -2023-03-18 20:54:40.9798 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll -2023-03-18 20:54:40.9835 Info Copied ICSharpCode.SharpZipLib.dll -2023-03-18 20:54:40.9840 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh -2023-03-18 20:54:40.9863 Info Copied install_service_systemd.sh -2023-03-18 20:54:40.9868 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/jackett to destination: /app/Jackett/jackett -2023-03-18 20:54:40.9883 Info Copied jackett -2023-03-18 20:54:40.9887 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh -2023-03-18 20:54:40.9898 Info Copied jackett_launcher.sh -2023-03-18 20:54:40.9898 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll -2023-03-18 20:54:40.9958 Info Copied Jackett.Common.dll -2023-03-18 20:54:40.9958 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb -2023-03-18 20:54:40.9983 Info Copied Jackett.Common.pdb -2023-03-18 20:54:40.9987 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json -2023-03-18 20:54:41.0003 Info Copied jackett.deps.json -2023-03-18 20:54:41.0007 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll -2023-03-18 20:54:41.0034 Info Copied jackett.dll -2023-03-18 20:54:41.0039 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb -2023-03-18 20:54:41.0053 Info Copied jackett.pdb -2023-03-18 20:54:41.0057 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json -2023-03-18 20:54:41.0067 Info Copied jackett.runtimeconfig.json -2023-03-18 20:54:41.0067 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater -2023-03-18 20:54:41.0084 Info Copied JackettUpdater -2023-03-18 20:54:41.0088 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json -2023-03-18 20:54:41.0100 Info Copied JackettUpdater.deps.json -2023-03-18 20:54:41.0100 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll -2023-03-18 20:54:41.0128 Info Copied JackettUpdater.dll -2023-03-18 20:54:41.0128 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb -2023-03-18 20:54:41.0143 Info Copied JackettUpdater.pdb -2023-03-18 20:54:41.0148 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json -2023-03-18 20:54:41.0157 Info Copied JackettUpdater.runtimeconfig.json -2023-03-18 20:54:41.0157 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so -2023-03-18 20:54:41.0252 Info Copied libclrjit.so -2023-03-18 20:54:41.0257 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so -2023-03-18 20:54:41.0540 Info Copied libcoreclr.so -2023-03-18 20:54:41.0548 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so -2023-03-18 20:54:41.0592 Info Copied libcoreclrtraceptprovider.so -2023-03-18 20:54:41.0592 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so -2023-03-18 20:54:41.0632 Info Copied libdbgshim.so -2023-03-18 20:54:41.0637 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so -2023-03-18 20:54:41.0661 Info Copied libhostfxr.so -2023-03-18 20:54:41.0661 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so -2023-03-18 20:54:41.0688 Info Copied libhostpolicy.so -2023-03-18 20:54:41.0688 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so -2023-03-18 20:54:41.0709 Info Copied libMono.Unix.so -2023-03-18 20:54:41.0709 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so -2023-03-18 20:54:41.0823 Info Copied libmscordaccore.so -2023-03-18 20:54:41.0828 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so -2023-03-18 20:54:41.0909 Info Copied libmscordbi.so -2023-03-18 20:54:41.0909 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so -2023-03-18 20:54:41.0929 Info Copied libSystem.Globalization.Native.so -2023-03-18 20:54:41.0929 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so -2023-03-18 20:54:41.0984 Info Copied libSystem.IO.Compression.Native.so -2023-03-18 20:54:41.0989 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so -2023-03-18 20:54:41.1004 Info Copied libSystem.Native.so -2023-03-18 20:54:41.1009 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so -2023-03-18 20:54:41.1021 Info Copied libSystem.Net.Security.Native.so -2023-03-18 20:54:41.1029 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so -2023-03-18 20:54:41.1046 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so -2023-03-18 20:54:41.1050 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/LICENSE to destination: /app/Jackett/LICENSE -2023-03-18 20:54:41.1063 Info Copied LICENSE -2023-03-18 20:54:41.1068 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll -2023-03-18 20:54:41.1086 Info Copied Microsoft.AspNetCore.Antiforgery.dll -2023-03-18 20:54:41.1090 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-03-18 20:54:41.1104 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-03-18 20:54:41.1108 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll -2023-03-18 20:54:41.1125 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll -2023-03-18 20:54:41.1130 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll -2023-03-18 20:54:41.1146 Info Copied Microsoft.AspNetCore.Authentication.Core.dll -2023-03-18 20:54:41.1150 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll -2023-03-18 20:54:41.1170 Info Copied Microsoft.AspNetCore.Authentication.dll -2023-03-18 20:54:41.1170 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll -2023-03-18 20:54:41.1191 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll -2023-03-18 20:54:41.1191 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll -2023-03-18 20:54:41.1210 Info Copied Microsoft.AspNetCore.Authorization.dll -2023-03-18 20:54:41.1210 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll -2023-03-18 20:54:41.1230 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll -2023-03-18 20:54:41.1230 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll -2023-03-18 20:54:41.1247 Info Copied Microsoft.AspNetCore.Components.Authorization.dll -2023-03-18 20:54:41.1247 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll -2023-03-18 20:54:41.1288 Info Copied Microsoft.AspNetCore.Components.dll -2023-03-18 20:54:41.1288 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll -2023-03-18 20:54:41.1308 Info Copied Microsoft.AspNetCore.Components.Forms.dll -2023-03-18 20:54:41.1308 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll -2023-03-18 20:54:41.1364 Info Copied Microsoft.AspNetCore.Components.Server.dll -2023-03-18 20:54:41.1368 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll -2023-03-18 20:54:41.1392 Info Copied Microsoft.AspNetCore.Components.Web.dll -2023-03-18 20:54:41.1392 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll -2023-03-18 20:54:41.1413 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll -2023-03-18 20:54:41.1418 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll -2023-03-18 20:54:41.1435 Info Copied Microsoft.AspNetCore.CookiePolicy.dll -2023-03-18 20:54:41.1439 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll -2023-03-18 20:54:41.1453 Info Copied Microsoft.AspNetCore.Cors.dll -2023-03-18 20:54:41.1453 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll -2023-03-18 20:54:41.1470 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll -2023-03-18 20:54:41.1470 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-03-18 20:54:41.1487 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-03-18 20:54:41.1487 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-03-18 20:54:41.1502 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-03-18 20:54:41.1502 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll -2023-03-18 20:54:41.1534 Info Copied Microsoft.AspNetCore.DataProtection.dll -2023-03-18 20:54:41.1538 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-03-18 20:54:41.1549 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-03-18 20:54:41.1549 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-03-18 20:54:41.1563 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-03-18 20:54:41.1567 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll -2023-03-18 20:54:41.1595 Info Copied Microsoft.AspNetCore.Diagnostics.dll -2023-03-18 20:54:41.1599 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-03-18 20:54:41.1610 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-03-18 20:54:41.1610 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll -2023-03-18 20:54:41.1628 Info Copied Microsoft.AspNetCore.dll -2023-03-18 20:54:41.1628 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll -2023-03-18 20:54:41.1644 Info Copied Microsoft.AspNetCore.HostFiltering.dll -2023-03-18 20:54:41.1648 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-03-18 20:54:41.1659 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-03-18 20:54:41.1659 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll -2023-03-18 20:54:41.1689 Info Copied Microsoft.AspNetCore.Hosting.dll -2023-03-18 20:54:41.1689 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-03-18 20:54:41.1703 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-03-18 20:54:41.1707 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll -2023-03-18 20:54:41.1718 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll -2023-03-18 20:54:41.1718 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll -2023-03-18 20:54:41.1747 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll -2023-03-18 20:54:41.1747 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll -2023-03-18 20:54:41.1762 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll -2023-03-18 20:54:41.1762 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll -2023-03-18 20:54:41.1789 Info Copied Microsoft.AspNetCore.Http.Connections.dll -2023-03-18 20:54:41.1789 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll -2023-03-18 20:54:41.1815 Info Copied Microsoft.AspNetCore.Http.dll -2023-03-18 20:54:41.1819 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll -2023-03-18 20:54:41.1842 Info Copied Microsoft.AspNetCore.Http.Extensions.dll -2023-03-18 20:54:41.1842 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll -2023-03-18 20:54:41.1858 Info Copied Microsoft.AspNetCore.Http.Features.dll -2023-03-18 20:54:41.1858 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll -2023-03-18 20:54:41.1877 Info Copied Microsoft.AspNetCore.Http.Results.dll -2023-03-18 20:54:41.1877 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll -2023-03-18 20:54:41.1898 Info Copied Microsoft.AspNetCore.HttpLogging.dll -2023-03-18 20:54:41.1898 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll -2023-03-18 20:54:41.1914 Info Copied Microsoft.AspNetCore.HttpOverrides.dll -2023-03-18 20:54:41.1918 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll -2023-03-18 20:54:41.1929 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll -2023-03-18 20:54:41.1929 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll -2023-03-18 20:54:41.1950 Info Copied Microsoft.AspNetCore.Identity.dll -2023-03-18 20:54:41.1950 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll -2023-03-18 20:54:41.1966 Info Copied Microsoft.AspNetCore.JsonPatch.dll -2023-03-18 20:54:41.1970 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll -2023-03-18 20:54:41.1981 Info Copied Microsoft.AspNetCore.Localization.dll -2023-03-18 20:54:41.1981 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll -2023-03-18 20:54:41.1996 Info Copied Microsoft.AspNetCore.Localization.Routing.dll -2023-03-18 20:54:41.2000 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll -2023-03-18 20:54:41.2009 Info Copied Microsoft.AspNetCore.Metadata.dll -2023-03-18 20:54:41.2009 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-03-18 20:54:41.2032 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-03-18 20:54:41.2032 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-03-18 20:54:41.2054 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-03-18 20:54:41.2058 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll -2023-03-18 20:54:41.2144 Info Copied Microsoft.AspNetCore.Mvc.Core.dll -2023-03-18 20:54:41.2149 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll -2023-03-18 20:54:41.2161 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll -2023-03-18 20:54:41.2161 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-03-18 20:54:41.2181 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-03-18 20:54:41.2181 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll -2023-03-18 20:54:41.2196 Info Copied Microsoft.AspNetCore.Mvc.dll -2023-03-18 20:54:41.2200 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-03-18 20:54:41.2210 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-03-18 20:54:41.2210 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-03-18 20:54:41.2232 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-03-18 20:54:41.2238 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll -2023-03-18 20:54:41.2250 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll -2023-03-18 20:54:41.2250 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-03-18 20:54:41.2268 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-03-18 20:54:41.2268 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll -2023-03-18 20:54:41.2290 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll -2023-03-18 20:54:41.2290 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-03-18 20:54:41.2318 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-03-18 20:54:41.2318 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-03-18 20:54:41.2343 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-03-18 20:54:41.2347 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-03-18 20:54:41.2385 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-03-18 20:54:41.2390 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll -2023-03-18 20:54:41.2402 Info Copied Microsoft.AspNetCore.Razor.dll -2023-03-18 20:54:41.2402 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll -2023-03-18 20:54:41.2418 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll -2023-03-18 20:54:41.2418 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-03-18 20:54:41.2433 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-03-18 20:54:41.2437 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll -2023-03-18 20:54:41.2451 Info Copied Microsoft.AspNetCore.ResponseCaching.dll -2023-03-18 20:54:41.2451 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll -2023-03-18 20:54:41.2469 Info Copied Microsoft.AspNetCore.ResponseCompression.dll -2023-03-18 20:54:41.2469 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll -2023-03-18 20:54:41.2491 Info Copied Microsoft.AspNetCore.Rewrite.dll -2023-03-18 20:54:41.2491 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll -2023-03-18 20:54:41.2507 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll -2023-03-18 20:54:41.2507 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll -2023-03-18 20:54:41.2550 Info Copied Microsoft.AspNetCore.Routing.dll -2023-03-18 20:54:41.2550 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll -2023-03-18 20:54:41.2586 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll -2023-03-18 20:54:41.2590 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll -2023-03-18 20:54:41.2625 Info Copied Microsoft.AspNetCore.Server.IIS.dll -2023-03-18 20:54:41.2629 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll -2023-03-18 20:54:41.2641 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll -2023-03-18 20:54:41.2641 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-03-18 20:54:41.2760 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-03-18 20:54:41.2760 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll -2023-03-18 20:54:41.2777 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll -2023-03-18 20:54:41.2777 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-03-18 20:54:41.2801 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-03-18 20:54:41.2801 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-03-18 20:54:41.2821 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-03-18 20:54:41.2821 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll -2023-03-18 20:54:41.2840 Info Copied Microsoft.AspNetCore.Session.dll -2023-03-18 20:54:41.2840 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll -2023-03-18 20:54:41.2859 Info Copied Microsoft.AspNetCore.SignalR.Common.dll -2023-03-18 20:54:41.2859 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll -2023-03-18 20:54:41.2888 Info Copied Microsoft.AspNetCore.SignalR.Core.dll -2023-03-18 20:54:41.2888 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll -2023-03-18 20:54:41.2901 Info Copied Microsoft.AspNetCore.SignalR.dll -2023-03-18 20:54:41.2901 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-03-18 20:54:41.2919 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-03-18 20:54:41.2919 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll -2023-03-18 20:54:41.2940 Info Copied Microsoft.AspNetCore.StaticFiles.dll -2023-03-18 20:54:41.2940 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll -2023-03-18 20:54:41.2992 Info Copied Microsoft.AspNetCore.WebSockets.dll -2023-03-18 20:54:41.2992 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll -2023-03-18 20:54:41.3017 Info Copied Microsoft.AspNetCore.WebUtilities.dll -2023-03-18 20:54:41.3017 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll -2023-03-18 20:54:41.3067 Info Copied Microsoft.CSharp.dll -2023-03-18 20:54:41.3067 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll -2023-03-18 20:54:41.3082 Info Copied Microsoft.Extensions.Caching.Abstractions.dll -2023-03-18 20:54:41.3087 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll -2023-03-18 20:54:41.3100 Info Copied Microsoft.Extensions.Caching.Memory.dll -2023-03-18 20:54:41.3100 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll -2023-03-18 20:54:41.3115 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll -2023-03-18 20:54:41.3119 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll -2023-03-18 20:54:41.3132 Info Copied Microsoft.Extensions.Configuration.Binder.dll -2023-03-18 20:54:41.3132 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll -2023-03-18 20:54:41.3148 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll -2023-03-18 20:54:41.3148 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll -2023-03-18 20:54:41.3165 Info Copied Microsoft.Extensions.Configuration.dll -2023-03-18 20:54:41.3170 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-03-18 20:54:41.3181 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-03-18 20:54:41.3181 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll -2023-03-18 20:54:41.3201 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll -2023-03-18 20:54:41.3201 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll -2023-03-18 20:54:41.3217 Info Copied Microsoft.Extensions.Configuration.Ini.dll -2023-03-18 20:54:41.3217 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll -2023-03-18 20:54:41.3233 Info Copied Microsoft.Extensions.Configuration.Json.dll -2023-03-18 20:54:41.3237 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-03-18 20:54:41.3250 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-03-18 20:54:41.3250 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll -2023-03-18 20:54:41.3266 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll -2023-03-18 20:54:41.3270 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll -2023-03-18 20:54:41.3282 Info Copied Microsoft.Extensions.Configuration.Xml.dll -2023-03-18 20:54:41.3282 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-03-18 20:54:41.3300 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-03-18 20:54:41.3300 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll -2023-03-18 20:54:41.3321 Info Copied Microsoft.Extensions.DependencyInjection.dll -2023-03-18 20:54:41.3321 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-03-18 20:54:41.3338 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-03-18 20:54:41.3338 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-03-18 20:54:41.3355 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-03-18 20:54:41.3359 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll -2023-03-18 20:54:41.3369 Info Copied Microsoft.Extensions.Features.dll -2023-03-18 20:54:41.3369 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll -2023-03-18 20:54:41.3384 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll -2023-03-18 20:54:41.3388 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll -2023-03-18 20:54:41.3398 Info Copied Microsoft.Extensions.FileProviders.Composite.dll -2023-03-18 20:54:41.3398 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll -2023-03-18 20:54:41.3414 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll -2023-03-18 20:54:41.3418 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll -2023-03-18 20:54:41.4332 Info Copied Microsoft.Extensions.FileProviders.Physical.dll -2023-03-18 20:54:41.4339 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll -2023-03-18 20:54:41.4356 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll -2023-03-18 20:54:41.4360 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll -2023-03-18 20:54:41.4372 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll -2023-03-18 20:54:41.4372 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll -2023-03-18 20:54:41.4392 Info Copied Microsoft.Extensions.Hosting.dll -2023-03-18 20:54:41.4392 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll -2023-03-18 20:54:41.4410 Info Copied Microsoft.Extensions.Http.dll -2023-03-18 20:54:41.4410 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll -2023-03-18 20:54:41.4441 Info Copied Microsoft.Extensions.Identity.Core.dll -2023-03-18 20:54:41.4441 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll -2023-03-18 20:54:41.4458 Info Copied Microsoft.Extensions.Identity.Stores.dll -2023-03-18 20:54:41.4458 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll -2023-03-18 20:54:41.4472 Info Copied Microsoft.Extensions.Localization.Abstractions.dll -2023-03-18 20:54:41.4472 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll -2023-03-18 20:54:41.4487 Info Copied Microsoft.Extensions.Localization.dll -2023-03-18 20:54:41.4487 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll -2023-03-18 20:54:41.4508 Info Copied Microsoft.Extensions.Logging.Abstractions.dll -2023-03-18 20:54:41.4508 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll -2023-03-18 20:54:41.4522 Info Copied Microsoft.Extensions.Logging.Configuration.dll -2023-03-18 20:54:41.4522 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll -2023-03-18 20:54:41.5056 Info Copied Microsoft.Extensions.Logging.Console.dll -2023-03-18 20:54:41.5056 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll -2023-03-18 20:54:41.5072 Info Copied Microsoft.Extensions.Logging.Debug.dll -2023-03-18 20:54:41.5072 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll -2023-03-18 20:54:41.5091 Info Copied Microsoft.Extensions.Logging.dll -2023-03-18 20:54:41.5091 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll -2023-03-18 20:54:41.5107 Info Copied Microsoft.Extensions.Logging.EventLog.dll -2023-03-18 20:54:41.5107 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll -2023-03-18 20:54:41.5123 Info Copied Microsoft.Extensions.Logging.EventSource.dll -2023-03-18 20:54:41.5129 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll -2023-03-18 20:54:41.5140 Info Copied Microsoft.Extensions.Logging.TraceSource.dll -2023-03-18 20:54:41.5140 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll -2023-03-18 20:54:41.5155 Info Copied Microsoft.Extensions.ObjectPool.dll -2023-03-18 20:54:41.5159 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-03-18 20:54:41.5171 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-03-18 20:54:41.5171 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll -2023-03-18 20:54:41.5186 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll -2023-03-18 20:54:41.5191 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll -2023-03-18 20:54:41.5207 Info Copied Microsoft.Extensions.Options.dll -2023-03-18 20:54:41.5207 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll -2023-03-18 20:54:41.5226 Info Copied Microsoft.Extensions.Primitives.dll -2023-03-18 20:54:41.5230 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll -2023-03-18 20:54:41.5241 Info Copied Microsoft.Extensions.WebEncoders.dll -2023-03-18 20:54:41.5241 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll -2023-03-18 20:54:41.5425 Info Copied Microsoft.JSInterop.dll -2023-03-18 20:54:41.5433 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll -2023-03-18 20:54:41.5459 Info Copied Microsoft.Net.Http.Headers.dll -2023-03-18 20:54:41.5459 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll -2023-03-18 20:54:41.5539 Info Copied Microsoft.VisualBasic.Core.dll -2023-03-18 20:54:41.5539 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll -2023-03-18 20:54:41.5557 Info Copied Microsoft.VisualBasic.dll -2023-03-18 20:54:41.5557 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll -2023-03-18 20:54:41.5574 Info Copied Microsoft.Win32.Primitives.dll -2023-03-18 20:54:41.5579 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll -2023-03-18 20:54:41.5592 Info Copied Microsoft.Win32.Registry.dll -2023-03-18 20:54:41.5597 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll -2023-03-18 20:54:41.5993 Info Copied MimeMapping.dll -2023-03-18 20:54:41.6000 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll -2023-03-18 20:54:41.6026 Info Copied Mono.Posix.dll -2023-03-18 20:54:41.6031 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll -2023-03-18 20:54:41.6052 Info Copied Mono.Unix.dll -2023-03-18 20:54:41.6052 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll -2023-03-18 20:54:41.6071 Info Copied mscorlib.dll -2023-03-18 20:54:41.6071 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll -2023-03-18 20:54:41.6093 Info Copied netstandard.dll -2023-03-18 20:54:41.6098 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll -2023-03-18 20:54:41.6115 Info Copied Newtonsoft.Json.Bson.dll -2023-03-18 20:54:41.6120 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll -2023-03-18 20:54:41.6158 Info Copied Newtonsoft.Json.dll -2023-03-18 20:54:41.6158 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll -2023-03-18 20:54:41.6271 Info Copied NLog.dll -2023-03-18 20:54:41.6277 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll -2023-03-18 20:54:41.6291 Info Copied NLog.Extensions.Logging.dll -2023-03-18 20:54:41.6297 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll -2023-03-18 20:54:41.6313 Info Copied NLog.Web.AspNetCore.dll -2023-03-18 20:54:41.6318 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll -2023-03-18 20:54:41.6329 Info Copied Org.Mentalis.dll -2023-03-18 20:54:41.6329 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll -2023-03-18 20:54:41.6353 Info Copied Polly.dll -2023-03-18 20:54:41.6358 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/README.md to destination: /app/Jackett/README.md -2023-03-18 20:54:41.6369 Info Copied README.md -2023-03-18 20:54:41.6369 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll -2023-03-18 20:54:41.6383 Info Copied SocksWebProxy.dll -2023-03-18 20:54:41.6388 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll -2023-03-18 20:54:41.6398 Info Copied System.AppContext.dll -2023-03-18 20:54:41.6398 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll -2023-03-18 20:54:41.6413 Info Copied System.Buffers.dll -2023-03-18 20:54:41.6418 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll -2023-03-18 20:54:41.6438 Info Copied System.Collections.Concurrent.dll -2023-03-18 20:54:41.6438 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll -2023-03-18 20:54:41.6934 Info Copied System.Collections.dll -2023-03-18 20:54:41.6943 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll -2023-03-18 20:54:41.6980 Info Copied System.Collections.Immutable.dll -2023-03-18 20:54:41.6980 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll -2023-03-18 20:54:41.7070 Info Copied System.Collections.NonGeneric.dll -2023-03-18 20:54:41.7070 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll -2023-03-18 20:54:41.7094 Info Copied System.Collections.Specialized.dll -2023-03-18 20:54:41.7099 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll -2023-03-18 20:54:41.7120 Info Copied System.ComponentModel.Annotations.dll -2023-03-18 20:54:41.7120 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll -2023-03-18 20:54:41.7514 Info Copied System.ComponentModel.DataAnnotations.dll -2023-03-18 20:54:41.7520 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll -2023-03-18 20:54:41.7535 Info Copied System.ComponentModel.dll -2023-03-18 20:54:41.7541 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll -2023-03-18 20:54:41.7556 Info Copied System.ComponentModel.EventBasedAsync.dll -2023-03-18 20:54:41.7560 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll -2023-03-18 20:54:41.7577 Info Copied System.ComponentModel.Primitives.dll -2023-03-18 20:54:41.7577 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll -2023-03-18 20:54:41.7642 Info Copied System.ComponentModel.TypeConverter.dll -2023-03-18 20:54:41.7647 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll -2023-03-18 20:54:41.7662 Info Copied System.Configuration.dll -2023-03-18 20:54:41.7667 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll -2023-03-18 20:54:41.7693 Info Copied System.Console.dll -2023-03-18 20:54:41.7698 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll -2023-03-18 20:54:41.8346 Info Copied System.Core.dll -2023-03-18 20:54:41.8354 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll -2023-03-18 20:54:41.8566 Info Copied System.Data.Common.dll -2023-03-18 20:54:41.8573 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll -2023-03-18 20:54:41.8587 Info Copied System.Data.DataSetExtensions.dll -2023-03-18 20:54:41.8587 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll -2023-03-18 20:54:41.8604 Info Copied System.Data.dll -2023-03-18 20:54:41.8609 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll -2023-03-18 20:54:41.8620 Info Copied System.Diagnostics.Contracts.dll -2023-03-18 20:54:41.8620 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll -2023-03-18 20:54:41.8638 Info Copied System.Diagnostics.Debug.dll -2023-03-18 20:54:41.8638 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll -2023-03-18 20:54:41.8679 Info Copied System.Diagnostics.DiagnosticSource.dll -2023-03-18 20:54:41.8679 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll -2023-03-18 20:54:41.8698 Info Copied System.Diagnostics.EventLog.dll -2023-03-18 20:54:41.8698 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll -2023-03-18 20:54:41.8717 Info Copied System.Diagnostics.FileVersionInfo.dll -2023-03-18 20:54:41.8717 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll -2023-03-18 20:54:41.8747 Info Copied System.Diagnostics.Process.dll -2023-03-18 20:54:41.8747 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll -2023-03-18 20:54:41.9414 Info Copied System.Diagnostics.StackTrace.dll -2023-03-18 20:54:41.9421 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll -2023-03-18 20:54:41.9440 Info Copied System.Diagnostics.TextWriterTraceListener.dll -2023-03-18 20:54:41.9440 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll -2023-03-18 20:54:41.9458 Info Copied System.Diagnostics.Tools.dll -2023-03-18 20:54:41.9458 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll -2023-03-18 20:54:41.9484 Info Copied System.Diagnostics.TraceSource.dll -2023-03-18 20:54:41.9488 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll -2023-03-18 20:54:41.9502 Info Copied System.Diagnostics.Tracing.dll -2023-03-18 20:54:41.9502 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.dll to destination: /app/Jackett/System.dll -2023-03-18 20:54:41.9531 Info Copied System.dll -2023-03-18 20:54:41.9531 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll -2023-03-18 20:54:41.9550 Info Copied System.Drawing.dll -2023-03-18 20:54:41.9550 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll -2023-03-18 20:54:41.9579 Info Copied System.Drawing.Primitives.dll -2023-03-18 20:54:41.9579 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll -2023-03-18 20:54:41.9600 Info Copied System.Dynamic.Runtime.dll -2023-03-18 20:54:41.9600 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll -2023-03-18 20:54:42.0416 Info Copied System.Formats.Asn1.dll -2023-03-18 20:54:42.0423 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll -2023-03-18 20:54:42.0434 Info Copied System.Globalization.Calendars.dll -2023-03-18 20:54:42.0438 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll -2023-03-18 20:54:42.0447 Info Copied System.Globalization.dll -2023-03-18 20:54:42.0447 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll -2023-03-18 20:54:42.0459 Info Copied System.Globalization.Extensions.dll -2023-03-18 20:54:42.0459 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll -2023-03-18 20:54:42.0475 Info Copied System.IO.Compression.Brotli.dll -2023-03-18 20:54:42.0486 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll -2023-03-18 20:54:42.0510 Info Copied System.IO.Compression.dll -2023-03-18 20:54:42.0510 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll -2023-03-18 20:54:42.0522 Info Copied System.IO.Compression.FileSystem.dll -2023-03-18 20:54:42.0522 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll -2023-03-18 20:54:42.0542 Info Copied System.IO.Compression.ZipFile.dll -2023-03-18 20:54:42.0542 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll -2023-03-18 20:54:42.0554 Info Copied System.IO.dll -2023-03-18 20:54:42.0558 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll -2023-03-18 20:54:42.0567 Info Copied System.IO.FileSystem.AccessControl.dll -2023-03-18 20:54:42.0567 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll -2023-03-18 20:54:42.0579 Info Copied System.IO.FileSystem.dll -2023-03-18 20:54:42.0579 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll -2023-03-18 20:54:42.0602 Info Copied System.IO.FileSystem.DriveInfo.dll -2023-03-18 20:54:42.0602 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll -2023-03-18 20:54:42.0881 Info Copied System.IO.FileSystem.Primitives.dll -2023-03-18 20:54:42.0887 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll -2023-03-18 20:54:42.0903 Info Copied System.IO.FileSystem.Watcher.dll -2023-03-18 20:54:42.0907 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll -2023-03-18 20:54:42.0920 Info Copied System.IO.IsolatedStorage.dll -2023-03-18 20:54:42.0920 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll -2023-03-18 20:54:42.0938 Info Copied System.IO.MemoryMappedFiles.dll -2023-03-18 20:54:42.0938 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll -2023-03-18 20:54:42.0961 Info Copied System.IO.Pipelines.dll -2023-03-18 20:54:42.0961 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll -2023-03-18 20:54:42.0974 Info Copied System.IO.Pipes.AccessControl.dll -2023-03-18 20:54:42.0978 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll -2023-03-18 20:54:42.0993 Info Copied System.IO.Pipes.dll -2023-03-18 20:54:42.0993 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll -2023-03-18 20:54:42.1010 Info Copied System.IO.UnmanagedMemoryStream.dll -2023-03-18 20:54:42.1010 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll -2023-03-18 20:54:42.1045 Info Copied System.Linq.dll -2023-03-18 20:54:42.1051 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll -2023-03-18 20:54:42.1216 Info Copied System.Linq.Expressions.dll -2023-03-18 20:54:42.1221 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll -2023-03-18 20:54:42.1266 Info Copied System.Linq.Parallel.dll -2023-03-18 20:54:42.1269 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll -2023-03-18 20:54:42.1287 Info Copied System.Linq.Queryable.dll -2023-03-18 20:54:42.1287 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll -2023-03-18 20:54:42.1312 Info Copied System.Memory.dll -2023-03-18 20:54:42.1312 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll -2023-03-18 20:54:42.1325 Info Copied System.Net.dll -2023-03-18 20:54:42.1329 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll -2023-03-18 20:54:42.1410 Info Copied System.Net.Http.dll -2023-03-18 20:54:42.1410 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll -2023-03-18 20:54:42.1428 Info Copied System.Net.Http.Json.dll -2023-03-18 20:54:42.1428 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll -2023-03-18 20:54:42.1453 Info Copied System.Net.HttpListener.dll -2023-03-18 20:54:42.1457 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll -2023-03-18 20:54:42.1489 Info Copied System.Net.Mail.dll -2023-03-18 20:54:42.1489 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll -2023-03-18 20:54:42.1507 Info Copied System.Net.NameResolution.dll -2023-03-18 20:54:42.1507 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll -2023-03-18 20:54:42.1525 Info Copied System.Net.NetworkInformation.dll -2023-03-18 20:54:42.1529 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll -2023-03-18 20:54:42.1542 Info Copied System.Net.Ping.dll -2023-03-18 20:54:42.1542 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll -2023-03-18 20:54:42.1565 Info Copied System.Net.Primitives.dll -2023-03-18 20:54:42.1569 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll -2023-03-18 20:54:42.1592 Info Copied System.Net.Quic.dll -2023-03-18 20:54:42.1592 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll -2023-03-18 20:54:42.1617 Info Copied System.Net.Requests.dll -2023-03-18 20:54:42.1617 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll -2023-03-18 20:54:42.1654 Info Copied System.Net.Security.dll -2023-03-18 20:54:42.1658 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll -2023-03-18 20:54:42.1670 Info Copied System.Net.ServicePoint.dll -2023-03-18 20:54:42.1670 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll -2023-03-18 20:54:42.1701 Info Copied System.Net.Sockets.dll -2023-03-18 20:54:42.1701 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll -2023-03-18 20:54:42.1721 Info Copied System.Net.WebClient.dll -2023-03-18 20:54:42.1721 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll -2023-03-18 20:54:42.1736 Info Copied System.Net.WebHeaderCollection.dll -2023-03-18 20:54:42.1740 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll -2023-03-18 20:54:42.1750 Info Copied System.Net.WebProxy.dll -2023-03-18 20:54:42.1750 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll -2023-03-18 20:54:42.1769 Info Copied System.Net.WebSockets.Client.dll -2023-03-18 20:54:42.1769 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll -2023-03-18 20:54:42.1788 Info Copied System.Net.WebSockets.dll -2023-03-18 20:54:42.1788 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll -2023-03-18 20:54:42.1801 Info Copied System.Numerics.dll -2023-03-18 20:54:42.1801 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll -2023-03-18 20:54:42.1814 Info Copied System.Numerics.Vectors.dll -2023-03-18 20:54:42.1818 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll -2023-03-18 20:54:42.1832 Info Copied System.ObjectModel.dll -2023-03-18 20:54:42.1832 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll -2023-03-18 20:54:42.2208 Info Copied System.Private.CoreLib.dll -2023-03-18 20:54:42.2208 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll -2023-03-18 20:54:42.2298 Info Copied System.Private.DataContractSerialization.dll -2023-03-18 20:54:42.2298 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll -2023-03-18 20:54:42.2321 Info Copied System.Private.Uri.dll -2023-03-18 20:54:42.2321 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll -2023-03-18 20:54:42.2655 Info Copied System.Private.Xml.dll -2023-03-18 20:54:42.2660 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll -2023-03-18 20:54:42.2686 Info Copied System.Private.Xml.Linq.dll -2023-03-18 20:54:42.2690 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll -2023-03-18 20:54:42.2702 Info Copied System.Reflection.DispatchProxy.dll -2023-03-18 20:54:42.2702 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll -2023-03-18 20:54:42.2715 Info Copied System.Reflection.dll -2023-03-18 20:54:42.2719 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll -2023-03-18 20:54:42.2728 Info Copied System.Reflection.Emit.dll -2023-03-18 20:54:42.2728 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll -2023-03-18 20:54:42.2741 Info Copied System.Reflection.Emit.ILGeneration.dll -2023-03-18 20:54:42.2741 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll -2023-03-18 20:54:42.2754 Info Copied System.Reflection.Emit.Lightweight.dll -2023-03-18 20:54:42.2758 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll -2023-03-18 20:54:42.2767 Info Copied System.Reflection.Extensions.dll -2023-03-18 20:54:42.2767 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll -2023-03-18 20:54:42.2820 Info Copied System.Reflection.Metadata.dll -2023-03-18 20:54:42.2820 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll -2023-03-18 20:54:42.2832 Info Copied System.Reflection.Primitives.dll -2023-03-18 20:54:42.2832 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll -2023-03-18 20:54:42.2846 Info Copied System.Reflection.TypeExtensions.dll -2023-03-18 20:54:42.2849 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll -2023-03-18 20:54:42.3444 Info Copied System.Resources.Reader.dll -2023-03-18 20:54:42.3451 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll -2023-03-18 20:54:42.3463 Info Copied System.Resources.ResourceManager.dll -2023-03-18 20:54:42.3467 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll -2023-03-18 20:54:42.3478 Info Copied System.Resources.Writer.dll -2023-03-18 20:54:42.3478 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll -2023-03-18 20:54:42.3492 Info Copied System.Runtime.CompilerServices.Unsafe.dll -2023-03-18 20:54:42.3492 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll -2023-03-18 20:54:42.3505 Info Copied System.Runtime.CompilerServices.VisualC.dll -2023-03-18 20:54:42.3509 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll -2023-03-18 20:54:42.3519 Info Copied System.Runtime.dll -2023-03-18 20:54:42.3519 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll -2023-03-18 20:54:42.3533 Info Copied System.Runtime.Extensions.dll -2023-03-18 20:54:42.3533 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll -2023-03-18 20:54:42.3545 Info Copied System.Runtime.Handles.dll -2023-03-18 20:54:42.3549 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll -2023-03-18 20:54:42.3560 Info Copied System.Runtime.InteropServices.dll -2023-03-18 20:54:42.3560 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll -2023-03-18 20:54:42.3574 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll -2023-03-18 20:54:42.3578 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll -2023-03-18 20:54:42.3587 Info Copied System.Runtime.Intrinsics.dll -2023-03-18 20:54:42.3587 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll -2023-03-18 20:54:42.3600 Info Copied System.Runtime.Loader.dll -2023-03-18 20:54:42.3600 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll -2023-03-18 20:54:42.3623 Info Copied System.Runtime.Numerics.dll -2023-03-18 20:54:42.3627 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll -2023-03-18 20:54:42.3637 Info Copied System.Runtime.Serialization.dll -2023-03-18 20:54:42.3637 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll -2023-03-18 20:54:42.3799 Info Copied System.Runtime.Serialization.Formatters.dll -2023-03-18 20:54:42.3799 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll -2023-03-18 20:54:42.3815 Info Copied System.Runtime.Serialization.Json.dll -2023-03-18 20:54:42.3819 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll -2023-03-18 20:54:42.3830 Info Copied System.Runtime.Serialization.Primitives.dll -2023-03-18 20:54:42.3830 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll -2023-03-18 20:54:42.3843 Info Copied System.Runtime.Serialization.Xml.dll -2023-03-18 20:54:42.3847 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll -2023-03-18 20:54:42.3860 Info Copied System.Security.AccessControl.dll -2023-03-18 20:54:42.3860 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll -2023-03-18 20:54:42.3879 Info Copied System.Security.Claims.dll -2023-03-18 20:54:42.3879 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll -2023-03-18 20:54:42.3948 Info Copied System.Security.Cryptography.Algorithms.dll -2023-03-18 20:54:42.3948 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll -2023-03-18 20:54:42.3966 Info Copied System.Security.Cryptography.Cng.dll -2023-03-18 20:54:42.3970 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll -2023-03-18 20:54:42.3985 Info Copied System.Security.Cryptography.Csp.dll -2023-03-18 20:54:42.3989 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll -2023-03-18 20:54:42.4131 Info Copied System.Security.Cryptography.Encoding.dll -2023-03-18 20:54:42.4131 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll -2023-03-18 20:54:42.4157 Info Copied System.Security.Cryptography.OpenSsl.dll -2023-03-18 20:54:42.4157 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll -2023-03-18 20:54:42.4223 Info Copied System.Security.Cryptography.Pkcs.dll -2023-03-18 20:54:42.4229 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll -2023-03-18 20:54:42.4245 Info Copied System.Security.Cryptography.Primitives.dll -2023-03-18 20:54:42.4249 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll -2023-03-18 20:54:42.4259 Info Copied System.Security.Cryptography.ProtectedData.dll -2023-03-18 20:54:42.4259 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll -2023-03-18 20:54:42.4301 Info Copied System.Security.Cryptography.X509Certificates.dll -2023-03-18 20:54:42.4301 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll -2023-03-18 20:54:42.4678 Info Copied System.Security.Cryptography.Xml.dll -2023-03-18 20:54:42.4678 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll -2023-03-18 20:54:42.4696 Info Copied System.Security.dll -2023-03-18 20:54:42.4700 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll -2023-03-18 20:54:42.4710 Info Copied System.Security.Principal.dll -2023-03-18 20:54:42.4710 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll -2023-03-18 20:54:42.4724 Info Copied System.Security.Principal.Windows.dll -2023-03-18 20:54:42.4728 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll -2023-03-18 20:54:42.4740 Info Copied System.Security.SecureString.dll -2023-03-18 20:54:42.4740 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll -2023-03-18 20:54:42.4753 Info Copied System.ServiceModel.Web.dll -2023-03-18 20:54:42.4753 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll -2023-03-18 20:54:42.4765 Info Copied System.ServiceProcess.dll -2023-03-18 20:54:42.4769 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll -2023-03-18 20:54:42.4779 Info Copied System.ServiceProcess.ServiceController.dll -2023-03-18 20:54:42.4779 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll -2023-03-18 20:54:42.4832 Info Copied System.Text.Encoding.CodePages.dll -2023-03-18 20:54:42.4832 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll -2023-03-18 20:54:42.4846 Info Copied System.Text.Encoding.dll -2023-03-18 20:54:42.4849 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll -2023-03-18 20:54:42.4859 Info Copied System.Text.Encoding.Extensions.dll -2023-03-18 20:54:42.4859 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll -2023-03-18 20:54:42.5627 Info Copied System.Text.Encodings.Web.dll -2023-03-18 20:54:42.5627 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll -2023-03-18 20:54:42.5725 Info Copied System.Text.Json.dll -2023-03-18 20:54:42.5731 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll -2023-03-18 20:54:42.5768 Info Copied System.Text.RegularExpressions.dll -2023-03-18 20:54:42.5768 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll -2023-03-18 20:54:42.5793 Info Copied System.Threading.Channels.dll -2023-03-18 20:54:42.5797 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll -2023-03-18 20:54:42.5812 Info Copied System.Threading.dll -2023-03-18 20:54:42.5812 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll -2023-03-18 20:54:42.6138 Info Copied System.Threading.Overlapped.dll -2023-03-18 20:54:42.6138 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll -2023-03-18 20:54:42.6175 Info Copied System.Threading.Tasks.Dataflow.dll -2023-03-18 20:54:42.6179 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll -2023-03-18 20:54:42.6189 Info Copied System.Threading.Tasks.dll -2023-03-18 20:54:42.6189 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll -2023-03-18 20:54:42.6202 Info Copied System.Threading.Tasks.Extensions.dll -2023-03-18 20:54:42.6202 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll -2023-03-18 20:54:42.6221 Info Copied System.Threading.Tasks.Parallel.dll -2023-03-18 20:54:42.6221 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll -2023-03-18 20:54:42.6235 Info Copied System.Threading.Thread.dll -2023-03-18 20:54:42.6239 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll -2023-03-18 20:54:42.6248 Info Copied System.Threading.ThreadPool.dll -2023-03-18 20:54:42.6248 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll -2023-03-18 20:54:42.6261 Info Copied System.Threading.Timer.dll -2023-03-18 20:54:42.6261 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll -2023-03-18 20:54:42.6273 Info Copied System.Transactions.dll -2023-03-18 20:54:42.6273 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll -2023-03-18 20:54:42.6298 Info Copied System.Transactions.Local.dll -2023-03-18 20:54:42.6298 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll -2023-03-18 20:54:42.6322 Info Copied System.ValueTuple.dll -2023-03-18 20:54:42.6322 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll -2023-03-18 20:54:42.6334 Info Copied System.Web.dll -2023-03-18 20:54:42.6338 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll -2023-03-18 20:54:42.6797 Info Copied System.Web.HttpUtility.dll -2023-03-18 20:54:42.6797 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll -2023-03-18 20:54:42.6814 Info Copied System.Windows.dll -2023-03-18 20:54:42.6818 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll -2023-03-18 20:54:42.6828 Info Copied System.Xml.dll -2023-03-18 20:54:42.6828 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll -2023-03-18 20:54:42.6842 Info Copied System.Xml.Linq.dll -2023-03-18 20:54:42.6842 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll -2023-03-18 20:54:42.6856 Info Copied System.Xml.ReaderWriter.dll -2023-03-18 20:54:42.6860 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll -2023-03-18 20:54:42.6860 Info Copied System.Xml.Serialization.dll -2023-03-18 20:54:42.6873 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll -2023-03-18 20:54:42.6873 Info Copied System.Xml.XDocument.dll -2023-03-18 20:54:42.6873 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll -2023-03-18 20:54:42.6894 Info Copied System.Xml.XmlDocument.dll -2023-03-18 20:54:42.6898 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll -2023-03-18 20:54:42.6907 Info Copied System.Xml.XmlSerializer.dll -2023-03-18 20:54:42.6907 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll -2023-03-18 20:54:42.6919 Info Copied System.Xml.XPath.dll -2023-03-18 20:54:42.6919 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll -2023-03-18 20:54:42.6932 Info Copied System.Xml.XPath.XDocument.dll -2023-03-18 20:54:42.6932 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll -2023-03-18 20:54:42.6945 Info Copied WindowsBase.dll -2023-03-18 20:54:42.6949 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll -2023-03-18 20:54:42.6970 Info Copied YamlDotNet.dll -2023-03-18 20:54:42.6970 Info File copying complete -2023-03-18 20:54:42.7287 Info Killing process 383 -2023-03-18 20:54:45.8100 Info Process 383 didn't exit within 2 seconds after a SIGTERM diff --git a/tests/docker_configs/jackett/config/jackett/Jackett/updater.txt.20230318.00000.txt b/tests/docker_configs/jackett/config/jackett/Jackett/updater.txt.20230318.00000.txt deleted file mode 100644 index 79745d0..0000000 --- a/tests/docker_configs/jackett/config/jackett/Jackett/updater.txt.20230318.00000.txt +++ /dev/null @@ -1,14553 +0,0 @@ -2023-02-28 10:28:32.4208 Info Jackett Updater v0.20.3403 -2023-02-28 10:28:32.5167 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "135" "--NoRestart" -2023-02-28 10:28:32.5220 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-02-28 10:28:32.7150 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb -2023-02-28 10:28:32.7150 Info Deleted /app/Jackett/DateTimeRoutines.pdb -2023-02-28 10:28:32.7157 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb -2023-02-28 10:28:32.7157 Info Deleted /app/Jackett/Jackett.Common.pdb -2023-02-28 10:28:32.7157 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb -2023-02-28 10:28:32.7172 Info Deleted /app/Jackett/JackettUpdater.pdb -2023-02-28 10:28:32.7172 Info Attempting to remove: /app/Jackett/jackett.pdb -2023-02-28 10:28:32.7177 Info Deleted /app/Jackett/jackett.pdb -2023-02-28 10:28:32.7177 Info Attempting to remove: /app/Jackett/jackett -2023-02-28 10:28:32.7177 Info Deleted /app/Jackett/jackett -2023-02-28 10:28:32.7177 Info Finding files in: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/ -2023-02-28 10:28:32.7241 Info 891 update files found -2023-02-28 10:28:32.7253 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll -2023-02-28 10:28:32.7293 Info Copied AngleSharp.dll -2023-02-28 10:28:32.7293 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll -2023-02-28 10:28:32.7302 Info Copied AngleSharp.Xml.dll -2023-02-28 10:28:32.7302 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll -2023-02-28 10:28:32.7324 Info Copied Autofac.dll -2023-02-28 10:28:32.7327 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll -2023-02-28 10:28:32.7327 Info Copied Autofac.Extensions.DependencyInjection.dll -2023-02-28 10:28:32.7327 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll -2023-02-28 10:28:32.7346 Info Copied AutoMapper.dll -2023-02-28 10:28:32.7348 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll -2023-02-28 10:28:32.7348 Info Copied BencodeNET.dll -2023-02-28 10:28:32.7348 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll -2023-02-28 10:28:32.7365 Info Copied CommandLine.dll -2023-02-28 10:28:32.7367 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css -2023-02-28 10:28:32.7367 Info Copied animate.css -2023-02-28 10:28:32.7367 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png -2023-02-28 10:28:32.7379 Info Copied apple-touch-icon.png -2023-02-28 10:28:32.7379 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png -2023-02-28 10:28:32.7379 Info Copied binding_dark.png -2023-02-28 10:28:32.7388 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css -2023-02-28 10:28:32.7388 Info Copied bootstrap.min.css -2023-02-28 10:28:32.7397 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js -2023-02-28 10:28:32.7397 Info Copied bootstrap.min.js -2023-02-28 10:28:32.7397 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js -2023-02-28 10:28:32.7408 Info Copied common.js -2023-02-28 10:28:32.7408 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css -2023-02-28 10:28:32.7408 Info Copied bootstrap-multiselect.css -2023-02-28 10:28:32.7408 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css -2023-02-28 10:28:32.7420 Info Copied font-awesome.min.css -2023-02-28 10:28:32.7420 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css -2023-02-28 10:28:32.7427 Info Copied jquery.dataTables.min.css -2023-02-28 10:28:32.7427 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css -2023-02-28 10:28:32.7427 Info Copied tagify.css -2023-02-28 10:28:32.7427 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css -2023-02-28 10:28:32.7439 Info Copied custom_mobile.css -2023-02-28 10:28:32.7439 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css -2023-02-28 10:28:32.7439 Info Copied custom.css -2023-02-28 10:28:32.7447 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js -2023-02-28 10:28:32.7460 Info Copied custom.js -2023-02-28 10:28:32.7460 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico -2023-02-28 10:28:32.7469 Info Copied favicon.ico -2023-02-28 10:28:32.7469 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot -2023-02-28 10:28:32.7476 Info Copied fontawesome-webfont.eot -2023-02-28 10:28:32.7476 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg -2023-02-28 10:28:32.7487 Info Copied fontawesome-webfont.svg -2023-02-28 10:28:32.7487 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf -2023-02-28 10:28:32.7487 Info Copied fontawesome-webfont.ttf -2023-02-28 10:28:32.7497 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff -2023-02-28 10:28:32.7497 Info Copied fontawesome-webfont.woff -2023-02-28 10:28:32.7497 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 -2023-02-28 10:28:32.7510 Info Copied fontawesome-webfont.woff2 -2023-02-28 10:28:32.7510 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf -2023-02-28 10:28:32.7519 Info Copied FontAwesome.otf -2023-02-28 10:28:32.7519 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot -2023-02-28 10:28:32.7519 Info Copied glyphicons-halflings-regular.eot -2023-02-28 10:28:32.7527 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg -2023-02-28 10:28:32.7527 Info Copied glyphicons-halflings-regular.svg -2023-02-28 10:28:32.7536 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf -2023-02-28 10:28:32.7536 Info Copied glyphicons-halflings-regular.ttf -2023-02-28 10:28:32.7536 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff -2023-02-28 10:28:32.7549 Info Copied glyphicons-halflings-regular.woff -2023-02-28 10:28:32.7549 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 -2023-02-28 10:28:32.7549 Info Copied glyphicons-halflings-regular.woff2 -2023-02-28 10:28:32.7557 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png -2023-02-28 10:28:32.7557 Info Copied sort_asc_disabled.png -2023-02-28 10:28:32.7557 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png -2023-02-28 10:28:32.7568 Info Copied sort_asc.png -2023-02-28 10:28:32.7568 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png -2023-02-28 10:28:32.7568 Info Copied sort_both.png -2023-02-28 10:28:32.7568 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png -2023-02-28 10:28:32.7580 Info Copied sort_desc_disabled.png -2023-02-28 10:28:32.7580 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png -2023-02-28 10:28:32.7580 Info Copied sort_desc.png -2023-02-28 10:28:32.7588 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html -2023-02-28 10:28:32.7588 Info Copied index.html -2023-02-28 10:28:32.7588 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png -2023-02-28 10:28:32.7599 Info Copied jacket_medium.png -2023-02-28 10:28:32.7599 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js -2023-02-28 10:28:32.7599 Info Copied api.js -2023-02-28 10:28:32.7607 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js -2023-02-28 10:28:32.7607 Info Copied bootstrap-multiselect.js -2023-02-28 10:28:32.7607 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js -2023-02-28 10:28:32.7619 Info Copied bootstrap-notify.js -2023-02-28 10:28:32.7619 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js -2023-02-28 10:28:32.7619 Info Copied filesize.min.js -2023-02-28 10:28:32.7637 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js -2023-02-28 10:28:32.7637 Info Copied handlebars.min.js -2023-02-28 10:28:32.7637 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js -2023-02-28 10:28:32.7648 Info Copied handlebarsextend.js -2023-02-28 10:28:32.7648 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js -2023-02-28 10:28:32.7648 Info Copied handlebarsmoment.js -2023-02-28 10:28:32.7648 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js -2023-02-28 10:28:32.7662 Info Copied jquery.dataTables.min.js -2023-02-28 10:28:32.7662 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js -2023-02-28 10:28:32.7671 Info Copied jquery.min.js -2023-02-28 10:28:32.7671 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js -2023-02-28 10:28:32.7678 Info Copied jQuery.tagify.min.js -2023-02-28 10:28:32.7678 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js -2023-02-28 10:28:32.7678 Info Copied moment.min.js -2023-02-28 10:28:32.7687 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js -2023-02-28 10:28:32.7687 Info Copied tagify.min.js -2023-02-28 10:28:32.7687 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html -2023-02-28 10:28:32.7699 Info Copied login.html -2023-02-28 10:28:32.7699 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/createdump to destination: /app/Jackett/createdump -2023-02-28 10:28:32.7715 Info Copied createdump -2023-02-28 10:28:32.7718 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll -2023-02-28 10:28:32.7718 Info Copied DateTimeRoutines.dll -2023-02-28 10:28:32.7718 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb -2023-02-28 10:28:32.7729 Info Copied DateTimeRoutines.pdb -2023-02-28 10:28:32.7729 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml -2023-02-28 10:28:32.7729 Info Copied 0daykiev.yml -2023-02-28 10:28:32.7738 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml -2023-02-28 10:28:32.7738 Info Copied 0magnet.yml -2023-02-28 10:28:32.7738 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml -2023-02-28 10:28:32.7749 Info Copied 1337x.yml -2023-02-28 10:28:32.7749 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml -2023-02-28 10:28:32.7749 Info Copied 1ptbar.yml -2023-02-28 10:28:32.7757 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml -2023-02-28 10:28:32.7757 Info Copied 2fast4you.yml -2023-02-28 10:28:32.7757 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml -2023-02-28 10:28:32.7767 Info Copied 2xfree.yml -2023-02-28 10:28:32.7767 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml -2023-02-28 10:28:32.7767 Info Copied 3changtrai.yml -2023-02-28 10:28:32.7767 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml -2023-02-28 10:28:32.7780 Info Copied 3dtorrents.yml -2023-02-28 10:28:32.7780 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml -2023-02-28 10:28:32.7787 Info Copied 4thd.yml -2023-02-28 10:28:32.7787 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml -2023-02-28 10:28:32.7787 Info Copied 52pt.yml -2023-02-28 10:28:32.7787 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml -2023-02-28 10:28:32.7798 Info Copied abnormal.yml -2023-02-28 10:28:32.7798 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml -2023-02-28 10:28:32.7798 Info Copied abtorrents.yml -2023-02-28 10:28:32.7807 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml -2023-02-28 10:28:32.7807 Info Copied acervos-api.yml -2023-02-28 10:28:32.7807 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml -2023-02-28 10:28:32.7817 Info Copied acgrip.yml -2023-02-28 10:28:32.7817 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml -2023-02-28 10:28:32.7817 Info Copied acgsou.yml -2023-02-28 10:28:32.7817 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml -2023-02-28 10:28:32.7829 Info Copied acidlounge.yml -2023-02-28 10:28:32.7829 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml -2023-02-28 10:28:32.7829 Info Copied acrossthetasman.yml -2023-02-28 10:28:32.7837 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml -2023-02-28 10:28:32.7837 Info Copied aftershock.yml -2023-02-28 10:28:32.7837 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml -2023-02-28 10:28:32.7847 Info Copied aidoruonline.yml -2023-02-28 10:28:32.7847 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml -2023-02-28 10:28:32.7847 Info Copied aither-api.yml -2023-02-28 10:28:32.7847 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml -2023-02-28 10:28:32.7859 Info Copied amigosshare.yml -2023-02-28 10:28:32.7859 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml -2023-02-28 10:28:32.7859 Info Copied anilibria.yml -2023-02-28 10:28:32.7868 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml -2023-02-28 10:28:32.7868 Info Copied anime-free.yml -2023-02-28 10:28:32.7868 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml -2023-02-28 10:28:32.7878 Info Copied animelayer.yml -2023-02-28 10:28:32.7878 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml -2023-02-28 10:28:32.7878 Info Copied animetracker.yml -2023-02-28 10:28:32.7878 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml -2023-02-28 10:28:32.7890 Info Copied animeworld-api.yml -2023-02-28 10:28:32.7890 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml -2023-02-28 10:28:32.7896 Info Copied anirena.yml -2023-02-28 10:28:32.7896 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml -2023-02-28 10:28:32.7896 Info Copied anisource.yml -2023-02-28 10:28:32.7896 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml -2023-02-28 10:28:32.7909 Info Copied anthelion-api.yml -2023-02-28 10:28:32.7909 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml -2023-02-28 10:28:32.7909 Info Copied arabafenice.yml -2023-02-28 10:28:32.7917 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml -2023-02-28 10:28:32.7917 Info Copied arabp2p.yml -2023-02-28 10:28:32.7917 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml -2023-02-28 10:28:32.7928 Info Copied arenabg.yml -2023-02-28 10:28:32.7928 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml -2023-02-28 10:28:32.7928 Info Copied asiancinema.yml -2023-02-28 10:28:32.7928 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml -2023-02-28 10:28:32.7940 Info Copied asiandvdclub.yml -2023-02-28 10:28:32.7940 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml -2023-02-28 10:28:32.7946 Info Copied audiences.yml -2023-02-28 10:28:32.7946 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml -2023-02-28 10:28:32.7946 Info Copied audionews.yml -2023-02-28 10:28:32.7946 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml -2023-02-28 10:28:32.7959 Info Copied aussierules.yml -2023-02-28 10:28:32.7959 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml -2023-02-28 10:28:32.7959 Info Copied backups.yml -2023-02-28 10:28:32.7968 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml -2023-02-28 10:28:32.7968 Info Copied badasstorrents.yml -2023-02-28 10:28:32.7968 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml -2023-02-28 10:28:32.7978 Info Copied bangumi-moe.yml -2023-02-28 10:28:32.7978 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml -2023-02-28 10:28:32.7978 Info Copied beitai.yml -2023-02-28 10:28:32.7987 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml -2023-02-28 10:28:32.7987 Info Copied bestcore.yml -2023-02-28 10:28:32.7987 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml -2023-02-28 10:28:32.7997 Info Copied beyond-hd.yml -2023-02-28 10:28:32.7997 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml -2023-02-28 10:28:32.7997 Info Copied bibliotik.yml -2023-02-28 10:28:32.7997 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml -2023-02-28 10:28:32.8010 Info Copied bigfangroup.yml -2023-02-28 10:28:32.8010 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml -2023-02-28 10:28:32.8017 Info Copied bitbazis.yml -2023-02-28 10:28:32.8017 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml -2023-02-28 10:28:32.8031 Info Copied bitded.yml -2023-02-28 10:28:32.8031 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml -2023-02-28 10:28:32.8038 Info Copied bithorlo.yml -2023-02-28 10:28:32.8038 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml -2023-02-28 10:28:32.8038 Info Copied bithumen.yml -2023-02-28 10:28:32.8038 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml -2023-02-28 10:28:32.8051 Info Copied bitnova.yml -2023-02-28 10:28:32.8051 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml -2023-02-28 10:28:32.8057 Info Copied bitofvalor.yml -2023-02-28 10:28:32.8057 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml -2023-02-28 10:28:32.8057 Info Copied bitru.yml -2023-02-28 10:28:32.8057 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml -2023-02-28 10:28:32.8070 Info Copied bitsearch.yml -2023-02-28 10:28:32.8070 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml -2023-02-28 10:28:32.8070 Info Copied bitsexy.yml -2023-02-28 10:28:32.8078 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml -2023-02-28 10:28:32.8078 Info Copied bitspyder.yml -2023-02-28 10:28:32.8078 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml -2023-02-28 10:28:32.8089 Info Copied Bittorrentfiles.yml -2023-02-28 10:28:32.8089 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml -2023-02-28 10:28:32.8089 Info Copied bitturk.yml -2023-02-28 10:28:32.8099 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml -2023-02-28 10:28:32.8099 Info Copied bluebird.yml -2023-02-28 10:28:32.8099 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml -2023-02-28 10:28:32.8110 Info Copied blutopia-api.yml -2023-02-28 10:28:32.8110 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml -2023-02-28 10:28:32.8116 Info Copied booktracker.yml -2023-02-28 10:28:32.8116 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml -2023-02-28 10:28:32.8116 Info Copied bootytape.yml -2023-02-28 10:28:32.8116 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml -2023-02-28 10:28:32.8129 Info Copied borgzelle.yml -2023-02-28 10:28:32.8129 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml -2023-02-28 10:28:32.8129 Info Copied boxingtorrents.yml -2023-02-28 10:28:32.8137 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml -2023-02-28 10:28:32.8137 Info Copied broadcity.yml -2023-02-28 10:28:32.8137 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml -2023-02-28 10:28:32.8148 Info Copied brsociety-api.yml -2023-02-28 10:28:32.8148 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml -2023-02-28 10:28:32.8148 Info Copied bt4g.yml -2023-02-28 10:28:32.8157 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml -2023-02-28 10:28:32.8157 Info Copied btdigg.yml -2023-02-28 10:28:32.8157 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml -2023-02-28 10:28:32.8167 Info Copied btetree.yml -2023-02-28 10:28:32.8167 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml -2023-02-28 10:28:32.8167 Info Copied btmet.yml -2023-02-28 10:28:32.8167 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml -2023-02-28 10:28:32.8179 Info Copied btnext.yml -2023-02-28 10:28:32.8179 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml -2023-02-28 10:28:32.8179 Info Copied btschool.yml -2023-02-28 10:28:32.8188 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml -2023-02-28 10:28:32.8188 Info Copied btsow.yml -2023-02-28 10:28:32.8188 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml -2023-02-28 10:28:32.8199 Info Copied bulltorrent.yml -2023-02-28 10:28:32.8199 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml -2023-02-28 10:28:32.8199 Info Copied bwtorrents.yml -2023-02-28 10:28:32.8208 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml -2023-02-28 10:28:32.8208 Info Copied byrbt.yml -2023-02-28 10:28:32.8208 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml -2023-02-28 10:28:32.8219 Info Copied byrutor.yml -2023-02-28 10:28:32.8219 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml -2023-02-28 10:28:32.8219 Info Copied carpathians.yml -2023-02-28 10:28:32.8228 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml -2023-02-28 10:28:32.8228 Info Copied carphunter.yml -2023-02-28 10:28:32.8228 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml -2023-02-28 10:28:32.8239 Info Copied carpt.yml -2023-02-28 10:28:32.8239 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml -2023-02-28 10:28:32.8239 Info Copied cartoonchaos.yml -2023-02-28 10:28:32.8247 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml -2023-02-28 10:28:32.8247 Info Copied cathoderaytube.yml -2023-02-28 10:28:32.8247 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml -2023-02-28 10:28:32.8258 Info Copied catorrent.yml -2023-02-28 10:28:32.8258 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml -2023-02-28 10:28:32.8258 Info Copied ccfbits.yml -2023-02-28 10:28:32.8300 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml -2023-02-28 10:28:32.8307 Info Copied ceskeforum.yml -2023-02-28 10:28:32.8307 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml -2023-02-28 10:28:32.8307 Info Copied chdbits.yml -2023-02-28 10:28:32.8307 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml -2023-02-28 10:28:32.8321 Info Copied chilebt.yml -2023-02-28 10:28:32.8321 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml -2023-02-28 10:28:32.8328 Info Copied cinemageddon.yml -2023-02-28 10:28:32.8328 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml -2023-02-28 10:28:32.8328 Info Copied cinemamovies.yml -2023-02-28 10:28:32.8328 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml -2023-02-28 10:28:32.8340 Info Copied cinematik.yml -2023-02-28 10:28:32.8340 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml -2023-02-28 10:28:32.8340 Info Copied classix.yml -2023-02-28 10:28:32.8348 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml -2023-02-28 10:28:32.8348 Info Copied coastalcrew.yml -2023-02-28 10:28:32.8348 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml -2023-02-28 10:28:32.8365 Info Copied comicat.yml -2023-02-28 10:28:32.8367 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml -2023-02-28 10:28:32.8367 Info Copied concen.yml -2023-02-28 10:28:32.8367 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml -2023-02-28 10:28:32.8377 Info Copied concertos.yml -2023-02-28 10:28:32.8377 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml -2023-02-28 10:28:32.8377 Info Copied cpabien.yml -2023-02-28 10:28:32.8377 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml -2023-02-28 10:28:32.8390 Info Copied cpasbienclone.yml -2023-02-28 10:28:32.8390 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml -2023-02-28 10:28:32.8390 Info Copied cpasbiensi.yml -2023-02-28 10:28:32.8398 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml -2023-02-28 10:28:32.8398 Info Copied crackingpatching.yml -2023-02-28 10:28:32.8398 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml -2023-02-28 10:28:32.8409 Info Copied crazyhd.yml -2023-02-28 10:28:32.8409 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml -2023-02-28 10:28:32.8409 Info Copied crazyspirits.yml -2023-02-28 10:28:32.8417 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml -2023-02-28 10:28:32.8417 Info Copied crnaberza.yml -2023-02-28 10:28:32.8417 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml -2023-02-28 10:28:32.8427 Info Copied crt2fa.yml -2023-02-28 10:28:32.8427 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml -2023-02-28 10:28:32.8427 Info Copied danishbytes-api.yml -2023-02-28 10:28:32.8427 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml -2023-02-28 10:28:32.8439 Info Copied dariustracker.yml -2023-02-28 10:28:32.8439 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml -2023-02-28 10:28:32.8439 Info Copied dark-shadow.yml -2023-02-28 10:28:32.8447 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml -2023-02-28 10:28:32.8447 Info Copied datascene-api.yml -2023-02-28 10:28:32.8447 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml -2023-02-28 10:28:32.8458 Info Copied datatalli.yml -2023-02-28 10:28:32.8458 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml -2023-02-28 10:28:32.8458 Info Copied deildu.yml -2023-02-28 10:28:32.8458 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml -2023-02-28 10:28:32.8470 Info Copied demonoid.yml -2023-02-28 10:28:32.8470 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml -2023-02-28 10:28:32.8470 Info Copied desitorrents-api.yml -2023-02-28 10:28:32.8478 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml -2023-02-28 10:28:32.8478 Info Copied devil-torrents.yml -2023-02-28 10:28:32.8478 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml -2023-02-28 10:28:32.8488 Info Copied diablotorrent.yml -2023-02-28 10:28:32.8488 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml -2023-02-28 10:28:32.8488 Info Copied digitalcore.yml -2023-02-28 10:28:32.8488 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml -2023-02-28 10:28:32.8499 Info Copied dimeadozen.yml -2023-02-28 10:28:32.8499 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml -2023-02-28 10:28:32.8499 Info Copied discfan.yml -2023-02-28 10:28:32.8509 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml -2023-02-28 10:28:32.8509 Info Copied divteam.yml -2023-02-28 10:28:32.8509 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml -2023-02-28 10:28:32.8519 Info Copied dmhy.yml -2023-02-28 10:28:32.8519 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml -2023-02-28 10:28:32.8519 Info Copied docspedia.yml -2023-02-28 10:28:32.8527 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml -2023-02-28 10:28:32.8527 Info Copied dodder.yml -2023-02-28 10:28:32.8527 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml -2023-02-28 10:28:32.8537 Info Copied dreamtracker.yml -2023-02-28 10:28:32.8537 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml -2023-02-28 10:28:32.8537 Info Copied dxp.yml -2023-02-28 10:28:32.8537 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml -2023-02-28 10:28:32.8549 Info Copied ebookbay.yml -2023-02-28 10:28:32.8549 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml -2023-02-28 10:28:32.8549 Info Copied ebooks-shares.yml -2023-02-28 10:28:32.8557 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml -2023-02-28 10:28:32.8557 Info Copied ehentai.yml -2023-02-28 10:28:32.8557 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml -2023-02-28 10:28:32.8568 Info Copied electro-torrent.yml -2023-02-28 10:28:32.8568 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml -2023-02-28 10:28:32.8568 Info Copied empornium.yml -2023-02-28 10:28:32.8568 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml -2023-02-28 10:28:32.8579 Info Copied empornium2fa.yml -2023-02-28 10:28:32.8579 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml -2023-02-28 10:28:32.8579 Info Copied eniahd.yml -2023-02-28 10:28:32.8587 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml -2023-02-28 10:28:32.8587 Info Copied esharenet.yml -2023-02-28 10:28:32.8587 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml -2023-02-28 10:28:32.8597 Info Copied estone.yml -2023-02-28 10:28:32.8597 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml -2023-02-28 10:28:32.8597 Info Copied exkinoray.yml -2023-02-28 10:28:32.8597 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml -2023-02-28 10:28:32.8608 Info Copied extratorrent-st.yml -2023-02-28 10:28:32.8608 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml -2023-02-28 10:28:32.8608 Info Copied extremebits.yml -2023-02-28 10:28:32.8608 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml -2023-02-28 10:28:32.8620 Info Copied extremetorrents.yml -2023-02-28 10:28:32.8620 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml -2023-02-28 10:28:32.8620 Info Copied extremlymtorrents.yml -2023-02-28 10:28:32.8628 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml -2023-02-28 10:28:32.8628 Info Copied exttorrents.yml -2023-02-28 10:28:32.8628 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml -2023-02-28 10:28:32.8637 Info Copied eztv.yml -2023-02-28 10:28:32.8637 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml -2023-02-28 10:28:32.8814 Info Copied falkonvisionteam.yml -2023-02-28 10:28:32.8817 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml -2023-02-28 10:28:32.8817 Info Copied fanoin.yml -2023-02-28 10:28:32.8817 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml -2023-02-28 10:28:32.8829 Info Copied fantasticheaven.yml -2023-02-28 10:28:32.8829 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml -2023-02-28 10:28:32.8829 Info Copied fantastiko.yml -2023-02-28 10:28:32.8837 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml -2023-02-28 10:28:32.8837 Info Copied femdomcult.yml -2023-02-28 10:28:32.8837 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml -2023-02-28 10:28:32.8846 Info Copied fenyarnyek-tracker.yml -2023-02-28 10:28:32.8846 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml -2023-02-28 10:28:32.8846 Info Copied file-tracker.yml -2023-02-28 10:28:32.8846 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml -2023-02-28 10:28:32.8859 Info Copied filelisting.yml -2023-02-28 10:28:32.8859 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml -2023-02-28 10:28:32.8873 Info Copied finelite.yml -2023-02-28 10:28:32.8873 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml -2023-02-28 10:28:32.8879 Info Copied finvip.yml -2023-02-28 10:28:32.8989 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml -2023-02-28 10:28:32.8989 Info Copied firebit.yml -2023-02-28 10:28:32.8998 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml -2023-02-28 10:28:32.8998 Info Copied fluxzone.yml -2023-02-28 10:28:32.8998 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml -2023-02-28 10:28:32.9009 Info Copied freshmeat.yml -2023-02-28 10:28:32.9009 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml -2023-02-28 10:28:32.9009 Info Copied frozenlayer.yml -2023-02-28 10:28:32.9018 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml -2023-02-28 10:28:32.9018 Info Copied ftuapps.yml -2023-02-28 10:28:32.9018 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml -2023-02-28 10:28:32.9030 Info Copied funkytorrents.yml -2023-02-28 10:28:32.9030 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml -2023-02-28 10:28:32.9037 Info Copied fuzer.yml -2023-02-28 10:28:32.9037 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml -2023-02-28 10:28:32.9037 Info Copied gainbound.yml -2023-02-28 10:28:32.9037 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml -2023-02-28 10:28:32.9050 Info Copied gamestorrents.yml -2023-02-28 10:28:32.9050 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml -2023-02-28 10:28:32.9057 Info Copied gay-torrents.yml -2023-02-28 10:28:32.9057 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml -2023-02-28 10:28:32.9057 Info Copied gay-torrentsorg.yml -2023-02-28 10:28:32.9070 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml -2023-02-28 10:28:32.9070 Info Copied gaytorrentru.yml -2023-02-28 10:28:32.9077 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml -2023-02-28 10:28:32.9077 Info Copied generationfree-api.yml -2023-02-28 10:28:32.9077 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml -2023-02-28 10:28:32.9088 Info Copied genesismovement.yml -2023-02-28 10:28:32.9088 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml -2023-02-28 10:28:32.9088 Info Copied gigatorrents.yml -2023-02-28 10:28:32.9097 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml -2023-02-28 10:28:32.9097 Info Copied gimmepeers.yml -2023-02-28 10:28:32.9097 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml -2023-02-28 10:28:32.9109 Info Copied girotorrent.yml -2023-02-28 10:28:32.9109 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml -2023-02-28 10:28:32.9109 Info Copied gktorrent.yml -2023-02-28 10:28:32.9117 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml -2023-02-28 10:28:32.9117 Info Copied glodls.yml -2023-02-28 10:28:32.9117 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml -2023-02-28 10:28:32.9127 Info Copied greekdiamond.yml -2023-02-28 10:28:32.9127 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml -2023-02-28 10:28:32.9127 Info Copied greekteam.yml -2023-02-28 10:28:32.9127 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml -2023-02-28 10:28:32.9138 Info Copied gtorrentpro.yml -2023-02-28 10:28:32.9138 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml -2023-02-28 10:28:32.9138 Info Copied haidan.yml -2023-02-28 10:28:32.9138 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml -2023-02-28 10:28:32.9150 Info Copied haitang.yml -2023-02-28 10:28:32.9150 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml -2023-02-28 10:28:32.9157 Info Copied happyfappy.yml -2023-02-28 10:28:32.9157 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml -2023-02-28 10:28:32.9157 Info Copied hawke-uno.yml -2023-02-28 10:28:32.9157 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml -2023-02-28 10:28:32.9184 Info Copied hd-unit3d-api.yml -2023-02-28 10:28:32.9192 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml -2023-02-28 10:28:32.9222 Info Copied hd4fans.yml -2023-02-28 10:28:32.9230 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml -2023-02-28 10:28:32.9243 Info Copied hdarea.yml -2023-02-28 10:28:32.9248 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml -2023-02-28 10:28:32.9261 Info Copied hdatmos.yml -2023-02-28 10:28:32.9267 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml -2023-02-28 10:28:32.9280 Info Copied hdc.yml -2023-02-28 10:28:32.9280 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml -2023-02-28 10:28:32.9298 Info Copied hdchina.yml -2023-02-28 10:28:32.9298 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml -2023-02-28 10:28:32.9315 Info Copied hdcztorrent.yml -2023-02-28 10:28:32.9320 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml -2023-02-28 10:28:32.9332 Info Copied hddolby.yml -2023-02-28 10:28:32.9340 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml -2023-02-28 10:28:32.9353 Info Copied hdfans.yml -2023-02-28 10:28:32.9357 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml -2023-02-28 10:28:32.9372 Info Copied hdforever.yml -2023-02-28 10:28:32.9372 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml -2023-02-28 10:28:32.9389 Info Copied hdgalaktik.yml -2023-02-28 10:28:32.9389 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml -2023-02-28 10:28:32.9407 Info Copied hdhome.yml -2023-02-28 10:28:32.9407 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml -2023-02-28 10:28:32.9423 Info Copied hdmayi.yml -2023-02-28 10:28:32.9430 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml -2023-02-28 10:28:32.9441 Info Copied hdmonkey.yml -2023-02-28 10:28:32.9441 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml -2023-02-28 10:28:32.9458 Info Copied hdolimpo-api.yml -2023-02-28 10:28:32.9458 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml -2023-02-28 10:28:32.9475 Info Copied hdonly.yml -2023-02-28 10:28:32.9481 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml -2023-02-28 10:28:32.9493 Info Copied hdroute.yml -2023-02-28 10:28:32.9498 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml -2023-02-28 10:28:32.9511 Info Copied hdsky.yml -2023-02-28 10:28:32.9511 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml -2023-02-28 10:28:32.9527 Info Copied hdtime.yml -2023-02-28 10:28:32.9527 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml -2023-02-28 10:28:32.9547 Info Copied hdtorrentsit.yml -2023-02-28 10:28:32.9547 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml -2023-02-28 10:28:32.9563 Info Copied hdturk.yml -2023-02-28 10:28:32.9569 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml -2023-02-28 10:28:32.9580 Info Copied hdu.yml -2023-02-28 10:28:32.9580 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml -2023-02-28 10:28:32.9597 Info Copied hdzone.yml -2023-02-28 10:28:32.9597 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml -2023-02-28 10:28:32.9613 Info Copied hebits.yml -2023-02-28 10:28:32.9620 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml -2023-02-28 10:28:32.9631 Info Copied hellashut.yml -2023-02-28 10:28:32.9631 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml -2023-02-28 10:28:32.9648 Info Copied hhanclub.yml -2023-02-28 10:28:32.9648 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml -2023-02-28 10:28:32.9665 Info Copied houseofdevil.yml -2023-02-28 10:28:32.9670 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml -2023-02-28 10:28:32.9682 Info Copied hqmusic.yml -2023-02-28 10:28:32.9687 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml -2023-02-28 10:28:32.9698 Info Copied huntorrent.yml -2023-02-28 10:28:32.9698 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml -2023-02-28 10:28:32.9715 Info Copied icc2022.yml -2023-02-28 10:28:32.9720 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml -2023-02-28 10:28:32.9732 Info Copied idope.yml -2023-02-28 10:28:32.9737 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml -2023-02-28 10:28:32.9749 Info Copied ihdbits.yml -2023-02-28 10:28:32.9749 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml -2023-02-28 10:28:32.9765 Info Copied ilcorsaroblu.yml -2023-02-28 10:28:32.9771 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml -2023-02-28 10:28:32.9783 Info Copied ilcorsaronero.yml -2023-02-28 10:28:32.9788 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml -2023-02-28 10:28:32.9799 Info Copied immortuos.yml -2023-02-28 10:28:32.9799 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml -2023-02-28 10:28:32.9815 Info Copied indietorrents.yml -2023-02-28 10:28:32.9820 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml -2023-02-28 10:28:32.9832 Info Copied insanetracker.yml -2023-02-28 10:28:32.9838 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml -2023-02-28 10:28:32.9849 Info Copied internetarchive.yml -2023-02-28 10:28:32.9849 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml -2023-02-28 10:28:32.9863 Info Copied isohunt2.yml -2023-02-28 10:28:32.9869 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml -2023-02-28 10:28:32.9881 Info Copied itorrent.yml -2023-02-28 10:28:32.9881 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml -2023-02-28 10:28:32.9896 Info Copied jav-torrent.yml -2023-02-28 10:28:32.9902 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml -2023-02-28 10:28:32.9914 Info Copied jme-reunit3d-api.yml -2023-02-28 10:28:32.9919 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml -2023-02-28 10:28:32.9932 Info Copied joyhd.yml -2023-02-28 10:28:32.9932 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml -2023-02-28 10:28:32.9948 Info Copied jpopsuki.yml -2023-02-28 10:28:32.9948 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml -2023-02-28 10:28:32.9965 Info Copied jptv.yml -2023-02-28 10:28:32.9969 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml -2023-02-28 10:28:32.9981 Info Copied karagarga.yml -2023-02-28 10:28:32.9981 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml -2023-02-28 10:28:32.9998 Info Copied keepfriends.yml -2023-02-28 10:28:32.9998 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml -2023-02-28 10:28:33.0016 Info Copied kickasstorrents-to.yml -2023-02-28 10:28:33.0021 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml -2023-02-28 10:28:33.0032 Info Copied kickasstorrents-ws.yml -2023-02-28 10:28:33.0037 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml -2023-02-28 10:28:33.0048 Info Copied kinorun.yml -2023-02-28 10:28:33.0048 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml -2023-02-28 10:28:33.0064 Info Copied kinozal.yml -2023-02-28 10:28:33.0069 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml -2023-02-28 10:28:33.0080 Info Copied knaben.yml -2023-02-28 10:28:33.0080 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml -2023-02-28 10:28:33.0100 Info Copied korsar.yml -2023-02-28 10:28:33.0100 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml -2023-02-28 10:28:33.0118 Info Copied krazyzone.yml -2023-02-28 10:28:33.0118 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml -2023-02-28 10:28:33.0134 Info Copied kufirc.yml -2023-02-28 10:28:33.0140 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml -2023-02-28 10:28:33.0151 Info Copied lastfiles.yml -2023-02-28 10:28:33.0151 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml -2023-02-28 10:28:33.0167 Info Copied lat-team-api.yml -2023-02-28 10:28:33.0167 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml -2023-02-28 10:28:33.0197 Info Copied learnbits.yml -2023-02-28 10:28:33.0197 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml -2023-02-28 10:28:33.0217 Info Copied learnflakes.yml -2023-02-28 10:28:33.0217 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml -2023-02-28 10:28:33.0231 Info Copied leech24.yml -2023-02-28 10:28:33.0231 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml -2023-02-28 10:28:33.0248 Info Copied lemonhd.yml -2023-02-28 10:28:33.0248 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml -2023-02-28 10:28:33.0264 Info Copied lepornoinfo.yml -2023-02-28 10:28:33.0270 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml -2023-02-28 10:28:33.0282 Info Copied les-cinephiles.yml -2023-02-28 10:28:33.0287 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml -2023-02-28 10:28:33.0300 Info Copied lesaloon.yml -2023-02-28 10:28:33.0300 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml -2023-02-28 10:28:33.0317 Info Copied libranet.yml -2023-02-28 10:28:33.0317 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml -2023-02-28 10:28:33.0333 Info Copied limetorrents.yml -2023-02-28 10:28:33.0338 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml -2023-02-28 10:28:33.0350 Info Copied limetorrentsclone.yml -2023-02-28 10:28:33.0350 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml -2023-02-28 10:28:33.0366 Info Copied linkomanija.yml -2023-02-28 10:28:33.0371 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml -2023-02-28 10:28:33.0383 Info Copied linuxtracker.yml -2023-02-28 10:28:33.0388 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml -2023-02-28 10:28:33.0401 Info Copied locadora.yml -2023-02-28 10:28:33.0401 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml -2023-02-28 10:28:33.0417 Info Copied losslessclub.yml -2023-02-28 10:28:33.0417 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml -2023-02-28 10:28:33.0432 Info Copied lst.yml -2023-02-28 10:28:33.0437 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml -2023-02-28 10:28:33.0448 Info Copied mactorrentsdownload.yml -2023-02-28 10:28:33.0448 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml -2023-02-28 10:28:33.0463 Info Copied madsrevolution.yml -2023-02-28 10:28:33.0469 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml -2023-02-28 10:28:33.0481 Info Copied magicheaven.yml -2023-02-28 10:28:33.0481 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml -2023-02-28 10:28:33.0498 Info Copied magico.yml -2023-02-28 10:28:33.0498 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml -2023-02-28 10:28:33.0514 Info Copied majomparade.yml -2023-02-28 10:28:33.0519 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml -2023-02-28 10:28:33.0531 Info Copied marinetracker.yml -2023-02-28 10:28:33.0531 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml -2023-02-28 10:28:33.0548 Info Copied mazepa.yml -2023-02-28 10:28:33.0548 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml -2023-02-28 10:28:33.0564 Info Copied megamixtracker.yml -2023-02-28 10:28:33.0570 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml -2023-02-28 10:28:33.0581 Info Copied megapeer.yml -2023-02-28 10:28:33.0581 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml -2023-02-28 10:28:33.0598 Info Copied mesevilag.yml -2023-02-28 10:28:33.0598 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml -2023-02-28 10:28:33.0613 Info Copied metaltracker.yml -2023-02-28 10:28:33.0618 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml -2023-02-28 10:28:33.0629 Info Copied mikan.yml -2023-02-28 10:28:33.0629 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml -2023-02-28 10:28:33.0645 Info Copied milkie.yml -2023-02-28 10:28:33.0650 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml -2023-02-28 10:28:33.0663 Info Copied miobt.yml -2023-02-28 10:28:33.0668 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml -2023-02-28 10:28:33.0678 Info Copied mircrew.yml -2023-02-28 10:28:33.0678 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml -2023-02-28 10:28:33.0694 Info Copied mixtapetorrent.yml -2023-02-28 10:28:33.0698 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml -2023-02-28 10:28:33.0709 Info Copied mma-torrents.yml -2023-02-28 10:28:33.0709 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml -2023-02-28 10:28:33.0723 Info Copied mnv.yml -2023-02-28 10:28:33.0728 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml -2023-02-28 10:28:33.0738 Info Copied mojblink.yml -2023-02-28 10:28:33.0738 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml -2023-02-28 10:28:33.0753 Info Copied mousebits.yml -2023-02-28 10:28:33.0758 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml -2023-02-28 10:28:33.0769 Info Copied moviesdvdr.yml -2023-02-28 10:28:33.0769 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml -2023-02-28 10:28:33.0784 Info Copied moviesite.yml -2023-02-28 10:28:33.0789 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml -2023-02-28 10:28:33.0799 Info Copied movietorrent.yml -2023-02-28 10:28:33.0799 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml -2023-02-28 10:28:33.0814 Info Copied movietorrentz.yml -2023-02-28 10:28:33.0820 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml -2023-02-28 10:28:33.0832 Info Copied mteamtp.yml -2023-02-28 10:28:33.0837 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml -2023-02-28 10:28:33.0849 Info Copied mteamtp2fa.yml -2023-02-28 10:28:33.0849 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml -2023-02-28 10:28:33.0865 Info Copied muziekfabriek.yml -2023-02-28 10:28:33.0870 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml -2023-02-28 10:28:33.0882 Info Copied mvgroupforum.yml -2023-02-28 10:28:33.0887 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml -2023-02-28 10:28:33.0899 Info Copied mvgroupmain.yml -2023-02-28 10:28:33.0899 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml -2023-02-28 10:28:33.0917 Info Copied mypornclub.yml -2023-02-28 10:28:33.0917 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml -2023-02-28 10:28:33.0933 Info Copied myspleen.yml -2023-02-28 10:28:33.0939 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml -2023-02-28 10:28:33.0951 Info Copied nethd.yml -2023-02-28 10:28:33.0951 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml -2023-02-28 10:28:33.0968 Info Copied newretro.yml -2023-02-28 10:28:33.0968 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml -2023-02-28 10:28:33.0983 Info Copied newstudio.yml -2023-02-28 10:28:33.0988 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml -2023-02-28 10:28:33.0999 Info Copied newstudiol.yml -2023-02-28 10:28:33.0999 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml -2023-02-28 10:28:33.1013 Info Copied nicept.yml -2023-02-28 10:28:33.1019 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml -2023-02-28 10:28:33.1029 Info Copied nipponsei.yml -2023-02-28 10:28:33.1029 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml -2023-02-28 10:28:33.1047 Info Copied nntt.yml -2023-02-28 10:28:33.1047 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml -2023-02-28 10:28:33.1063 Info Copied noname-club.yml -2023-02-28 10:28:33.1068 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml -2023-02-28 10:28:33.1082 Info Copied noname-clubl.yml -2023-02-28 10:28:33.1087 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml -2023-02-28 10:28:33.1097 Info Copied nyaasi.yml -2023-02-28 10:28:33.1097 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml -2023-02-28 10:28:33.1112 Info Copied oldtoonsworld.yml -2023-02-28 10:28:33.1117 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml -2023-02-28 10:28:33.1127 Info Copied onejav.yml -2023-02-28 10:28:33.1127 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml -2023-02-28 10:28:33.1142 Info Copied opencd.yml -2023-02-28 10:28:33.1142 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml -2023-02-28 10:28:33.1157 Info Copied oshenpt.yml -2023-02-28 10:28:33.1157 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml -2023-02-28 10:28:33.1172 Info Copied ourbits.yml -2023-02-28 10:28:33.1172 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml -2023-02-28 10:28:33.1188 Info Copied p2pbg.yml -2023-02-28 10:28:33.1188 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml -2023-02-28 10:28:33.1204 Info Copied parnuxi.yml -2023-02-28 10:28:33.1208 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml -2023-02-28 10:28:33.1220 Info Copied partis.yml -2023-02-28 10:28:33.1220 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml -2023-02-28 10:28:33.1235 Info Copied pctorrent.yml -2023-02-28 10:28:33.1240 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml -2023-02-28 10:28:33.1251 Info Copied peeratiko.yml -2023-02-28 10:28:33.1251 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml -2023-02-28 10:28:33.1268 Info Copied peersfm.yml -2023-02-28 10:28:33.1343 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml -2023-02-28 10:28:33.1355 Info Copied pier720.yml -2023-02-28 10:28:33.1359 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml -2023-02-28 10:28:33.1369 Info Copied pignetwork.yml -2023-02-28 10:28:33.1369 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml -2023-02-28 10:28:33.1384 Info Copied piratbit.yml -2023-02-28 10:28:33.1388 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml -2023-02-28 10:28:33.1400 Info Copied piratbitl.yml -2023-02-28 10:28:33.1400 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml -2023-02-28 10:28:33.1413 Info Copied pixelcove.yml -2023-02-28 10:28:33.1417 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml -2023-02-28 10:28:33.1427 Info Copied pixelcove2fa.yml -2023-02-28 10:28:33.1427 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml -2023-02-28 10:28:33.1441 Info Copied polishsource.yml -2023-02-28 10:28:33.1441 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml -2023-02-28 10:28:33.1454 Info Copied polishtracker-api.yml -2023-02-28 10:28:33.1459 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml -2023-02-28 10:28:33.1470 Info Copied pornbay.yml -2023-02-28 10:28:33.1470 Info Attempting to copy pornforall.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pornforall.yml to destination: /app/Jackett/Definitions/pornforall.yml -2023-02-28 10:28:33.1483 Info Copied pornforall.yml -2023-02-28 10:28:33.1483 Info Attempting to copy pornleech.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pornleech.yml to destination: /app/Jackett/Definitions/pornleech.yml -2023-02-28 10:28:33.1496 Info Copied pornleech.yml -2023-02-28 10:28:33.1500 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml -2023-02-28 10:28:33.1509 Info Copied pornoslab.yml -2023-02-28 10:28:33.1509 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml -2023-02-28 10:28:33.1522 Info Copied pornotorrent.yml -2023-02-28 10:28:33.1522 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml -2023-02-28 10:28:33.1536 Info Copied portugas-api.yml -2023-02-28 10:28:33.1540 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml -2023-02-28 10:28:33.1550 Info Copied potuk.yml -2023-02-28 10:28:33.1550 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml -2023-02-28 10:28:33.1563 Info Copied proaudiotorrents.yml -2023-02-28 10:28:33.1568 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml -2023-02-28 10:28:33.1578 Info Copied proporno.yml -2023-02-28 10:28:33.1578 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml -2023-02-28 10:28:33.1592 Info Copied ptchina.yml -2023-02-28 10:28:33.1592 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml -2023-02-28 10:28:33.1605 Info Copied pterclub.yml -2023-02-28 10:28:33.1609 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml -2023-02-28 10:28:33.1619 Info Copied ptfiles.yml -2023-02-28 10:28:33.1619 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml -2023-02-28 10:28:33.1632 Info Copied pthome.yml -2023-02-28 10:28:33.1632 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml -2023-02-28 10:28:33.1645 Info Copied ptmsg.yml -2023-02-28 10:28:33.1649 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml -2023-02-28 10:28:33.1660 Info Copied ptsbao.yml -2023-02-28 10:28:33.1660 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml -2023-02-28 10:28:33.1675 Info Copied pttime.yml -2023-02-28 10:28:33.1679 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml -2023-02-28 10:28:33.1689 Info Copied punkshorror.yml -2023-02-28 10:28:33.1689 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml -2023-02-28 10:28:33.1703 Info Copied puntotorrent.yml -2023-02-28 10:28:33.1707 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml -2023-02-28 10:28:33.1717 Info Copied pussytorrents.yml -2023-02-28 10:28:33.1717 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml -2023-02-28 10:28:33.1730 Info Copied putao.yml -2023-02-28 10:28:33.1730 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml -2023-02-28 10:28:33.1744 Info Copied puurhollands.yml -2023-02-28 10:28:33.1748 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml -2023-02-28 10:28:33.1758 Info Copied pwtorrents.yml -2023-02-28 10:28:33.1758 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml -2023-02-28 10:28:33.1771 Info Copied r3vwtf.yml -2023-02-28 10:28:33.1771 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml -2023-02-28 10:28:33.1786 Info Copied racing4everyone-api.yml -2023-02-28 10:28:33.1790 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml -2023-02-28 10:28:33.1801 Info Copied racingforme.yml -2023-02-28 10:28:33.1801 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml -2023-02-28 10:28:33.1816 Info Copied rainbowtracker.yml -2023-02-28 10:28:33.1820 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml -2023-02-28 10:28:33.1831 Info Copied rapidzona.yml -2023-02-28 10:28:33.1831 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml -2023-02-28 10:28:33.1845 Info Copied redbits-api.yml -2023-02-28 10:28:33.1849 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml -2023-02-28 10:28:33.1860 Info Copied redstartorrent.yml -2023-02-28 10:28:33.1860 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml -2023-02-28 10:28:33.1874 Info Copied reelflix-api.yml -2023-02-28 10:28:33.1879 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml -2023-02-28 10:28:33.1889 Info Copied resurrectthenet.yml -2023-02-28 10:28:33.1889 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml -2023-02-28 10:28:33.1905 Info Copied rgfootball.yml -2023-02-28 10:28:33.1910 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml -2023-02-28 10:28:33.1920 Info Copied rintor.yml -2023-02-28 10:28:33.1920 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml -2023-02-28 10:28:33.1935 Info Copied rintornet.yml -2023-02-28 10:28:33.1940 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml -2023-02-28 10:28:33.1954 Info Copied riperam.yml -2023-02-28 10:28:33.1958 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml -2023-02-28 10:28:33.1969 Info Copied rockbox.yml -2023-02-28 10:28:33.1969 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml -2023-02-28 10:28:33.1984 Info Copied romanianmetaltorrents.yml -2023-02-28 10:28:33.1989 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml -2023-02-28 10:28:33.2000 Info Copied rptorrents.yml -2023-02-28 10:28:33.2000 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml -2023-02-28 10:28:33.2016 Info Copied rudub.yml -2023-02-28 10:28:33.2021 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml -2023-02-28 10:28:33.2033 Info Copied rus-media.yml -2023-02-28 10:28:33.2037 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml -2023-02-28 10:28:33.2051 Info Copied rustorka.yml -2023-02-28 10:28:33.2051 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml -2023-02-28 10:28:33.2066 Info Copied rutor.yml -2023-02-28 10:28:33.2071 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml -2023-02-28 10:28:33.2084 Info Copied rutracker-ru.yml -2023-02-28 10:28:33.2088 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml -2023-02-28 10:28:33.2099 Info Copied satclubbing.yml -2023-02-28 10:28:33.2099 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml -2023-02-28 10:28:33.2115 Info Copied scenerush.yml -2023-02-28 10:28:33.2119 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml -2023-02-28 10:28:33.2130 Info Copied sdbits.yml -2023-02-28 10:28:33.2130 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml -2023-02-28 10:28:33.2145 Info Copied seedfile.yml -2023-02-28 10:28:33.2150 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml -2023-02-28 10:28:33.2162 Info Copied seedoff.yml -2023-02-28 10:28:33.2162 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml -2023-02-28 10:28:33.2177 Info Copied selezen.yml -2023-02-28 10:28:33.2177 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml -2023-02-28 10:28:33.2193 Info Copied sexypics.yml -2023-02-28 10:28:33.2197 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml -2023-02-28 10:28:33.2208 Info Copied shanaproject.yml -2023-02-28 10:28:33.2208 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml -2023-02-28 10:28:33.2223 Info Copied shareisland-api.yml -2023-02-28 10:28:33.2228 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml -2023-02-28 10:28:33.2239 Info Copied sharewood.yml -2023-02-28 10:28:33.2239 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml -2023-02-28 10:28:33.2255 Info Copied sharkpt.yml -2023-02-28 10:28:33.2259 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml -2023-02-28 10:28:33.2270 Info Copied showrss.yml -2023-02-28 10:28:33.2270 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml -2023-02-28 10:28:33.2286 Info Copied siambit.yml -2023-02-28 10:28:33.2291 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml -2023-02-28 10:28:33.2301 Info Copied skipthecommercials-api.yml -2023-02-28 10:28:33.2301 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml -2023-02-28 10:28:33.2317 Info Copied skipthetrailers.yml -2023-02-28 10:28:33.2317 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml -2023-02-28 10:28:33.2333 Info Copied sktorrent-org.yml -2023-02-28 10:28:33.2338 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml -2023-02-28 10:28:33.2350 Info Copied sktorrent.yml -2023-02-28 10:28:33.2350 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml -2023-02-28 10:28:33.2365 Info Copied slosoul.yml -2023-02-28 10:28:33.2370 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml -2023-02-28 10:28:33.2381 Info Copied snowpt.yml -2023-02-28 10:28:33.2381 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml -2023-02-28 10:28:33.2397 Info Copied solidtorrents.yml -2023-02-28 10:28:33.2397 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml -2023-02-28 10:28:33.2412 Info Copied sosulki.yml -2023-02-28 10:28:33.2412 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml -2023-02-28 10:28:33.2428 Info Copied soulvoice.yml -2023-02-28 10:28:33.2428 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml -2023-02-28 10:28:33.2444 Info Copied speedmasterhd.yml -2023-02-28 10:28:33.2448 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml -2023-02-28 10:28:33.2459 Info Copied speedtorrentreloaded.yml -2023-02-28 10:28:33.2459 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml -2023-02-28 10:28:33.2475 Info Copied spidertk.yml -2023-02-28 10:28:33.2480 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml -2023-02-28 10:28:33.2491 Info Copied spiritofrevolution.yml -2023-02-28 10:28:33.2491 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml -2023-02-28 10:28:33.2506 Info Copied sporthd.yml -2023-02-28 10:28:33.2511 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml -2023-02-28 10:28:33.2522 Info Copied sportscult.yml -2023-02-28 10:28:33.2522 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml -2023-02-28 10:28:33.2537 Info Copied springsunday.yml -2023-02-28 10:28:33.2537 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml -2023-02-28 10:28:33.2553 Info Copied sugoimusic.yml -2023-02-28 10:28:33.2557 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml -2023-02-28 10:28:33.2568 Info Copied sukebeinyaasi.yml -2023-02-28 10:28:33.2568 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml -2023-02-28 10:28:33.2584 Info Copied superbits.yml -2023-02-28 10:28:33.2589 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml -2023-02-28 10:28:33.2600 Info Copied swarmazon-api.yml -2023-02-28 10:28:33.2600 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml -2023-02-28 10:28:33.2617 Info Copied tapochek.yml -2023-02-28 10:28:33.2617 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml -2023-02-28 10:28:33.2633 Info Copied tasmanit.yml -2023-02-28 10:28:33.2637 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml -2023-02-28 10:28:33.2648 Info Copied teamctgame.yml -2023-02-28 10:28:33.2648 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml -2023-02-28 10:28:33.2664 Info Copied teamhd.yml -2023-02-28 10:28:33.2668 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml -2023-02-28 10:28:33.2680 Info Copied teamos.yml -2023-02-28 10:28:33.2680 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml -2023-02-28 10:28:33.2695 Info Copied tekno3d.yml -2023-02-28 10:28:33.2699 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml -2023-02-28 10:28:33.2710 Info Copied tellytorrent-api.yml -2023-02-28 10:28:33.2710 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml -2023-02-28 10:28:33.2726 Info Copied teracod.yml -2023-02-28 10:28:33.2731 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml -2023-02-28 10:28:33.2742 Info Copied the-crazy-ones.yml -2023-02-28 10:28:33.2747 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml -2023-02-28 10:28:33.2759 Info Copied thedarkcommunity-api.yml -2023-02-28 10:28:33.2759 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml -2023-02-28 10:28:33.2774 Info Copied theempire.yml -2023-02-28 10:28:33.2779 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml -2023-02-28 10:28:33.2790 Info Copied thefallingangels.yml -2023-02-28 10:28:33.2790 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml -2023-02-28 10:28:33.2805 Info Copied thegeeks.yml -2023-02-28 10:28:33.2810 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml -2023-02-28 10:28:33.2822 Info Copied theleachzone.yml -2023-02-28 10:28:33.2822 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml -2023-02-28 10:28:33.2838 Info Copied themixingbowl.yml -2023-02-28 10:28:33.2838 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml -2023-02-28 10:28:33.2853 Info Copied thenewfun.yml -2023-02-28 10:28:33.2857 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml -2023-02-28 10:28:33.2869 Info Copied theoccult.yml -2023-02-28 10:28:33.2869 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml -2023-02-28 10:28:33.2884 Info Copied theoldschool-api.yml -2023-02-28 10:28:33.2889 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml -2023-02-28 10:28:33.2900 Info Copied thepiratebay.yml -2023-02-28 10:28:33.2900 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml -2023-02-28 10:28:33.2915 Info Copied theplace.yml -2023-02-28 10:28:33.2920 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml -2023-02-28 10:28:33.2931 Info Copied thesceneplace.yml -2023-02-28 10:28:33.2931 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml -2023-02-28 10:28:33.2947 Info Copied theshinning-api.yml -2023-02-28 10:28:33.2947 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml -2023-02-28 10:28:33.2963 Info Copied theshow.yml -2023-02-28 10:28:33.2967 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml -2023-02-28 10:28:33.2978 Info Copied thevault.yml -2023-02-28 10:28:33.2978 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml -2023-02-28 10:28:33.2994 Info Copied tjupt.yml -2023-02-28 10:28:33.2999 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml -2023-02-28 10:28:33.3010 Info Copied tlfbits.yml -2023-02-28 10:28:33.3010 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml -2023-02-28 10:28:33.3025 Info Copied tmghub.yml -2023-02-28 10:28:33.3030 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml -2023-02-28 10:28:33.3041 Info Copied tokyotosho.yml -2023-02-28 10:28:33.3041 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml -2023-02-28 10:28:33.3058 Info Copied torlock.yml -2023-02-28 10:28:33.3058 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml -2023-02-28 10:28:33.3119 Info Copied tornado.yml -2023-02-28 10:28:33.3139 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml -2023-02-28 10:28:33.3150 Info Copied torrent-explosiv.yml -2023-02-28 10:28:33.3150 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml -2023-02-28 10:28:33.3163 Info Copied torrent-pirat.yml -2023-02-28 10:28:33.3167 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml -2023-02-28 10:28:33.3177 Info Copied torrent-turk.yml -2023-02-28 10:28:33.3177 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml -2023-02-28 10:28:33.3191 Info Copied torrent9.yml -2023-02-28 10:28:33.3191 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml -2023-02-28 10:28:33.3204 Info Copied torrent911.yml -2023-02-28 10:28:33.3208 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml -2023-02-28 10:28:33.3218 Info Copied torrent9clone.yml -2023-02-28 10:28:33.3218 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml -2023-02-28 10:28:33.3232 Info Copied torrentbd.yml -2023-02-28 10:28:33.3232 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml -2023-02-28 10:28:33.3245 Info Copied torrentby.yml -2023-02-28 10:28:33.3250 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml -2023-02-28 10:28:33.3260 Info Copied torrentccf.yml -2023-02-28 10:28:33.3260 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml -2023-02-28 10:28:33.3274 Info Copied torrentcore.yml -2023-02-28 10:28:33.3278 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml -2023-02-28 10:28:33.3288 Info Copied torrentdownload.yml -2023-02-28 10:28:33.3288 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml -2023-02-28 10:28:33.3301 Info Copied torrentdownloads.yml -2023-02-28 10:28:33.3301 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml -2023-02-28 10:28:33.3315 Info Copied torrentfunk.yml -2023-02-28 10:28:33.3319 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml -2023-02-28 10:28:33.3329 Info Copied torrentgalaxy.yml -2023-02-28 10:28:33.3329 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml -2023-02-28 10:28:33.3343 Info Copied torrenthr.yml -2023-02-28 10:28:33.3347 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml -2023-02-28 10:28:33.3357 Info Copied torrenting.yml -2023-02-28 10:28:33.3357 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml -2023-02-28 10:28:33.3370 Info Copied torrentkitty.yml -2023-02-28 10:28:33.3370 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml -2023-02-28 10:28:33.3384 Info Copied torrentland.yml -2023-02-28 10:28:33.3388 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml -2023-02-28 10:28:33.3398 Info Copied torrentleech-pl.yml -2023-02-28 10:28:33.3398 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml -2023-02-28 10:28:33.3411 Info Copied torrentleech.yml -2023-02-28 10:28:33.3411 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml -2023-02-28 10:28:33.3425 Info Copied torrentlt.yml -2023-02-28 10:28:33.3429 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml -2023-02-28 10:28:33.3439 Info Copied torrentmasters.yml -2023-02-28 10:28:33.3439 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml -2023-02-28 10:28:33.3464 Info Copied torrentoyunindir.yml -2023-02-28 10:28:33.3468 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml -2023-02-28 10:28:33.3478 Info Copied torrentproject2.yml -2023-02-28 10:28:33.3478 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml -2023-02-28 10:28:33.3491 Info Copied torrentqq.yml -2023-02-28 10:28:33.3491 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml -2023-02-28 10:28:33.3504 Info Copied torrentsectorcrew.yml -2023-02-28 10:28:33.3508 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml -2023-02-28 10:28:33.3518 Info Copied torrentseeds-api.yml -2023-02-28 10:28:33.3518 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml -2023-02-28 10:28:33.3531 Info Copied torrentsir.yml -2023-02-28 10:28:33.3531 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml -2023-02-28 10:28:33.3547 Info Copied torrentslocal.yml -2023-02-28 10:28:33.3547 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml -2023-02-28 10:28:33.3560 Info Copied torrentv.yml -2023-02-28 10:28:33.3560 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml -2023-02-28 10:28:33.3573 Info Copied torrentview.yml -2023-02-28 10:28:33.3578 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml -2023-02-28 10:28:33.3587 Info Copied torrentwhiz.yml -2023-02-28 10:28:33.3587 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml -2023-02-28 10:28:33.3599 Info Copied torrentz2eu.yml -2023-02-28 10:28:33.3599 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml -2023-02-28 10:28:33.3612 Info Copied torrentz2nz.yml -2023-02-28 10:28:33.3612 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml -2023-02-28 10:28:33.3625 Info Copied totallykids.yml -2023-02-28 10:28:33.3630 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml -2023-02-28 10:28:33.3639 Info Copied totheglory.yml -2023-02-28 10:28:33.3639 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml -2023-02-28 10:28:33.3652 Info Copied totheglorycookie.yml -2023-02-28 10:28:33.3652 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml -2023-02-28 10:28:33.3665 Info Copied traht.yml -2023-02-28 10:28:33.3669 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml -2023-02-28 10:28:33.3679 Info Copied trancetraffic.yml -2023-02-28 10:28:33.3679 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml -2023-02-28 10:28:33.3692 Info Copied trezzor.yml -2023-02-28 10:28:33.3692 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml -2023-02-28 10:28:33.3705 Info Copied tribalmixes.yml -2023-02-28 10:28:33.3709 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml -2023-02-28 10:28:33.3718 Info Copied trupornolabs.yml -2023-02-28 10:28:33.3718 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml -2023-02-28 10:28:33.3732 Info Copied turkseed.yml -2023-02-28 10:28:33.3732 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml -2023-02-28 10:28:33.3745 Info Copied turktorrent.yml -2023-02-28 10:28:33.3749 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml -2023-02-28 10:28:33.3759 Info Copied tvchaosuk.yml -2023-02-28 10:28:33.3759 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml -2023-02-28 10:28:33.3772 Info Copied tvroad.yml -2023-02-28 10:28:33.3772 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml -2023-02-28 10:28:33.3785 Info Copied twilight.yml -2023-02-28 10:28:33.3790 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml -2023-02-28 10:28:33.3799 Info Copied u2.yml -2023-02-28 10:28:33.3799 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml -2023-02-28 10:28:33.3813 Info Copied uhdbits.yml -2023-02-28 10:28:33.3813 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml -2023-02-28 10:28:33.3828 Info Copied uniondht.yml -2023-02-28 10:28:33.3828 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml -2023-02-28 10:28:33.3842 Info Copied unionfansub.yml -2023-02-28 10:28:33.3842 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml -2023-02-28 10:28:33.3855 Info Copied uniongang.yml -2023-02-28 10:28:33.3859 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml -2023-02-28 10:28:33.3869 Info Copied unleashthecartoons.yml -2023-02-28 10:28:33.3884 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml -2023-02-28 10:28:33.3894 Info Copied unlimitz.yml -2023-02-28 10:28:33.3899 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml -2023-02-28 10:28:33.3909 Info Copied vsthouse.yml -2023-02-28 10:28:33.3909 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml -2023-02-28 10:28:33.3922 Info Copied vsttorrents.yml -2023-02-28 10:28:33.3922 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml -2023-02-28 10:28:33.3935 Info Copied vtorrent.yml -2023-02-28 10:28:33.3940 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml -2023-02-28 10:28:33.3949 Info Copied whiteangel.yml -2023-02-28 10:28:33.3949 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml -2023-02-28 10:28:33.3963 Info Copied wihd.yml -2023-02-28 10:28:33.3967 Info Attempting to copy woot.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/woot.yml to destination: /app/Jackett/Definitions/woot.yml -2023-02-28 10:28:33.3977 Info Copied woot.yml -2023-02-28 10:28:33.3977 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml -2023-02-28 10:28:33.3990 Info Copied world-of-tomorrow.yml -2023-02-28 10:28:33.3990 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml -2023-02-28 10:28:33.4004 Info Copied x-ite.me.yml -2023-02-28 10:28:33.4008 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml -2023-02-28 10:28:33.4018 Info Copied xbytes2.yml -2023-02-28 10:28:33.4018 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml -2023-02-28 10:28:33.4031 Info Copied xthor-api.yml -2023-02-28 10:28:33.4031 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml -2023-02-28 10:28:33.4044 Info Copied xtorrenty.yml -2023-02-28 10:28:33.4048 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml -2023-02-28 10:28:33.4057 Info Copied xtremebytes.yml -2023-02-28 10:28:33.4057 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml -2023-02-28 10:28:33.4070 Info Copied xwtclassics.yml -2023-02-28 10:28:33.4070 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml -2023-02-28 10:28:33.4083 Info Copied xwtorrents.yml -2023-02-28 10:28:33.4087 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml -2023-02-28 10:28:33.4097 Info Copied xxxadulttorrent.yml -2023-02-28 10:28:33.4097 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml -2023-02-28 10:28:33.4111 Info Copied xxxtor.yml -2023-02-28 10:28:33.4111 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml -2023-02-28 10:28:33.4125 Info Copied xxxtorrents.yml -2023-02-28 10:28:33.4129 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml -2023-02-28 10:28:33.4138 Info Copied ydypt.yml -2023-02-28 10:28:33.4138 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml -2023-02-28 10:28:33.4151 Info Copied yggcookie.yml -2023-02-28 10:28:33.4151 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml -2023-02-28 10:28:33.4166 Info Copied yggtorrent.yml -2023-02-28 10:28:33.4170 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml -2023-02-28 10:28:33.4179 Info Copied yourbittorrent.yml -2023-02-28 10:28:33.4179 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml -2023-02-28 10:28:33.4192 Info Copied yts.yml -2023-02-28 10:28:33.4192 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml -2023-02-28 10:28:33.4205 Info Copied zamundanet.yml -2023-02-28 10:28:33.4209 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml -2023-02-28 10:28:33.4218 Info Copied zelkaorg.yml -2023-02-28 10:28:33.4218 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml -2023-02-28 10:28:33.4232 Info Copied zetorrents.yml -2023-02-28 10:28:33.4232 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml -2023-02-28 10:28:33.4245 Info Copied zmpt.yml -2023-02-28 10:28:33.4249 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml -2023-02-28 10:28:33.4258 Info Copied zomb.yml -2023-02-28 10:28:33.4258 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml -2023-02-28 10:28:33.4272 Info Copied ztracker.yml -2023-02-28 10:28:33.4272 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll -2023-02-28 10:28:33.4285 Info Copied FlareSolverrSharp.dll -2023-02-28 10:28:33.4289 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll -2023-02-28 10:28:33.4308 Info Copied ICSharpCode.SharpZipLib.dll -2023-02-28 10:28:33.4308 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh -2023-02-28 10:28:33.4320 Info Copied install_service_systemd.sh -2023-02-28 10:28:33.4320 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/jackett to destination: /app/Jackett/jackett -2023-02-28 10:28:33.4336 Info Copied jackett -2023-02-28 10:28:33.4340 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh -2023-02-28 10:28:33.4349 Info Copied jackett_launcher.sh -2023-02-28 10:28:33.4349 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll -2023-02-28 10:28:33.4402 Info Copied Jackett.Common.dll -2023-02-28 10:28:33.4402 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb -2023-02-28 10:28:33.4420 Info Copied Jackett.Common.pdb -2023-02-28 10:28:33.4420 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json -2023-02-28 10:28:33.4437 Info Copied jackett.deps.json -2023-02-28 10:28:33.4437 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll -2023-02-28 10:28:33.4476 Info Copied jackett.dll -2023-02-28 10:28:33.4480 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb -2023-02-28 10:28:33.4490 Info Copied jackett.pdb -2023-02-28 10:28:33.4490 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json -2023-02-28 10:28:33.4503 Info Copied jackett.runtimeconfig.json -2023-02-28 10:28:33.4507 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater -2023-02-28 10:28:33.4520 Info Copied JackettUpdater -2023-02-28 10:28:33.4520 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json -2023-02-28 10:28:33.4534 Info Copied JackettUpdater.deps.json -2023-02-28 10:28:33.4538 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll -2023-02-28 10:28:33.4560 Info Copied JackettUpdater.dll -2023-02-28 10:28:33.4560 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb -2023-02-28 10:28:33.4573 Info Copied JackettUpdater.pdb -2023-02-28 10:28:33.4577 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json -2023-02-28 10:28:33.4587 Info Copied JackettUpdater.runtimeconfig.json -2023-02-28 10:28:33.4587 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so -2023-02-28 10:28:33.4718 Info Copied libclrjit.so -2023-02-28 10:28:33.4718 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so -2023-02-28 10:28:33.5029 Info Copied libcoreclr.so -2023-02-28 10:28:33.5029 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so -2023-02-28 10:28:33.5097 Info Copied libcoreclrtraceptprovider.so -2023-02-28 10:28:33.5097 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so -2023-02-28 10:28:33.5170 Info Copied libdbgshim.so -2023-02-28 10:28:33.5170 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so -2023-02-28 10:28:33.5201 Info Copied libhostfxr.so -2023-02-28 10:28:33.5201 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so -2023-02-28 10:28:33.5228 Info Copied libhostpolicy.so -2023-02-28 10:28:33.5228 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so -2023-02-28 10:28:33.5248 Info Copied libMono.Unix.so -2023-02-28 10:28:33.5248 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so -2023-02-28 10:28:33.5420 Info Copied libmscordaccore.so -2023-02-28 10:28:33.5420 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so -2023-02-28 10:28:33.5502 Info Copied libmscordbi.so -2023-02-28 10:28:33.5507 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so -2023-02-28 10:28:33.5521 Info Copied libSystem.Globalization.Native.so -2023-02-28 10:28:33.5521 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so -2023-02-28 10:28:33.5573 Info Copied libSystem.IO.Compression.Native.so -2023-02-28 10:28:33.5577 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so -2023-02-28 10:28:33.5591 Info Copied libSystem.Native.so -2023-02-28 10:28:33.5591 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so -2023-02-28 10:28:33.5605 Info Copied libSystem.Net.Security.Native.so -2023-02-28 10:28:33.5611 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so -2023-02-28 10:28:33.5628 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so -2023-02-28 10:28:33.5628 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/LICENSE to destination: /app/Jackett/LICENSE -2023-02-28 10:28:33.5642 Info Copied LICENSE -2023-02-28 10:28:33.5642 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll -2023-02-28 10:28:33.5660 Info Copied Microsoft.AspNetCore.Antiforgery.dll -2023-02-28 10:28:33.5660 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-02-28 10:28:33.5690 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-02-28 10:28:33.5690 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll -2023-02-28 10:28:33.5711 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll -2023-02-28 10:28:33.5711 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll -2023-02-28 10:28:33.5729 Info Copied Microsoft.AspNetCore.Authentication.Core.dll -2023-02-28 10:28:33.5729 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll -2023-02-28 10:28:33.5751 Info Copied Microsoft.AspNetCore.Authentication.dll -2023-02-28 10:28:33.5751 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll -2023-02-28 10:28:33.5770 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll -2023-02-28 10:28:33.5770 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll -2023-02-28 10:28:33.5788 Info Copied Microsoft.AspNetCore.Authorization.dll -2023-02-28 10:28:33.5788 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll -2023-02-28 10:28:33.5803 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll -2023-02-28 10:28:33.5807 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll -2023-02-28 10:28:33.5819 Info Copied Microsoft.AspNetCore.Components.Authorization.dll -2023-02-28 10:28:33.5819 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll -2023-02-28 10:28:33.5868 Info Copied Microsoft.AspNetCore.Components.dll -2023-02-28 10:28:33.5868 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll -2023-02-28 10:28:33.5885 Info Copied Microsoft.AspNetCore.Components.Forms.dll -2023-02-28 10:28:33.5889 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll -2023-02-28 10:28:33.5929 Info Copied Microsoft.AspNetCore.Components.Server.dll -2023-02-28 10:28:33.5929 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll -2023-02-28 10:28:33.5954 Info Copied Microsoft.AspNetCore.Components.Web.dll -2023-02-28 10:28:33.5959 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll -2023-02-28 10:28:33.5972 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll -2023-02-28 10:28:33.5972 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll -2023-02-28 10:28:33.5987 Info Copied Microsoft.AspNetCore.CookiePolicy.dll -2023-02-28 10:28:33.5987 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll -2023-02-28 10:28:33.6004 Info Copied Microsoft.AspNetCore.Cors.dll -2023-02-28 10:28:33.6008 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll -2023-02-28 10:28:33.6022 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll -2023-02-28 10:28:33.6022 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-02-28 10:28:33.6036 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-02-28 10:28:33.6040 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-02-28 10:28:33.6051 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-02-28 10:28:33.6051 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll -2023-02-28 10:28:33.6081 Info Copied Microsoft.AspNetCore.DataProtection.dll -2023-02-28 10:28:33.6081 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-02-28 10:28:33.6096 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-02-28 10:28:33.6100 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-02-28 10:28:33.6111 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-02-28 10:28:33.6111 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll -2023-02-28 10:28:33.6140 Info Copied Microsoft.AspNetCore.Diagnostics.dll -2023-02-28 10:28:33.6140 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-02-28 10:28:33.6155 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-02-28 10:28:33.6159 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll -2023-02-28 10:28:33.6172 Info Copied Microsoft.AspNetCore.dll -2023-02-28 10:28:33.6172 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll -2023-02-28 10:28:33.6187 Info Copied Microsoft.AspNetCore.HostFiltering.dll -2023-02-28 10:28:33.6187 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-02-28 10:28:33.6201 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-02-28 10:28:33.6201 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll -2023-02-28 10:28:33.6244 Info Copied Microsoft.AspNetCore.Hosting.dll -2023-02-28 10:28:33.6249 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-02-28 10:28:33.6259 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-02-28 10:28:33.6259 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll -2023-02-28 10:28:33.6274 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll -2023-02-28 10:28:33.6278 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll -2023-02-28 10:28:33.6296 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll -2023-02-28 10:28:33.6300 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll -2023-02-28 10:28:33.6312 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll -2023-02-28 10:28:33.6312 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll -2023-02-28 10:28:33.6350 Info Copied Microsoft.AspNetCore.Http.Connections.dll -2023-02-28 10:28:33.6350 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll -2023-02-28 10:28:33.6375 Info Copied Microsoft.AspNetCore.Http.dll -2023-02-28 10:28:33.6379 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll -2023-02-28 10:28:33.6402 Info Copied Microsoft.AspNetCore.Http.Extensions.dll -2023-02-28 10:28:33.6402 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll -2023-02-28 10:28:33.6419 Info Copied Microsoft.AspNetCore.Http.Features.dll -2023-02-28 10:28:33.6419 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll -2023-02-28 10:28:33.6439 Info Copied Microsoft.AspNetCore.Http.Results.dll -2023-02-28 10:28:33.6439 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll -2023-02-28 10:28:33.6459 Info Copied Microsoft.AspNetCore.HttpLogging.dll -2023-02-28 10:28:33.6459 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll -2023-02-28 10:28:33.6476 Info Copied Microsoft.AspNetCore.HttpOverrides.dll -2023-02-28 10:28:33.6480 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll -2023-02-28 10:28:33.6491 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll -2023-02-28 10:28:33.6491 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll -2023-02-28 10:28:33.6513 Info Copied Microsoft.AspNetCore.Identity.dll -2023-02-28 10:28:33.6517 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll -2023-02-28 10:28:33.6528 Info Copied Microsoft.AspNetCore.JsonPatch.dll -2023-02-28 10:28:33.6528 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll -2023-02-28 10:28:33.6543 Info Copied Microsoft.AspNetCore.Localization.dll -2023-02-28 10:28:33.6547 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll -2023-02-28 10:28:33.6558 Info Copied Microsoft.AspNetCore.Localization.Routing.dll -2023-02-28 10:28:33.6558 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll -2023-02-28 10:28:33.6571 Info Copied Microsoft.AspNetCore.Metadata.dll -2023-02-28 10:28:33.6571 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-02-28 10:28:33.6594 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-02-28 10:28:33.6599 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-02-28 10:28:33.6615 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-02-28 10:28:33.6619 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll -2023-02-28 10:28:33.6701 Info Copied Microsoft.AspNetCore.Mvc.Core.dll -2023-02-28 10:28:33.6701 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll -2023-02-28 10:28:33.6717 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll -2023-02-28 10:28:33.6717 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-02-28 10:28:33.6736 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-02-28 10:28:33.6740 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll -2023-02-28 10:28:33.6751 Info Copied Microsoft.AspNetCore.Mvc.dll -2023-02-28 10:28:33.6751 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-02-28 10:28:33.6766 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-02-28 10:28:33.6769 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-02-28 10:28:33.6784 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-02-28 10:28:33.6788 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll -2023-02-28 10:28:33.6800 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll -2023-02-28 10:28:33.6800 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-02-28 10:28:33.6831 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-02-28 10:28:33.6831 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll -2023-02-28 10:28:33.6853 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll -2023-02-28 10:28:33.6853 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-02-28 10:28:33.6883 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-02-28 10:28:33.6883 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-02-28 10:28:33.6907 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-02-28 10:28:33.6907 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-02-28 10:28:33.6963 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-02-28 10:28:33.6968 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll -2023-02-28 10:28:33.6981 Info Copied Microsoft.AspNetCore.Razor.dll -2023-02-28 10:28:33.6981 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll -2023-02-28 10:28:33.6997 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll -2023-02-28 10:28:33.6997 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-02-28 10:28:33.7011 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-02-28 10:28:33.7011 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll -2023-02-28 10:28:33.7033 Info Copied Microsoft.AspNetCore.ResponseCaching.dll -2023-02-28 10:28:33.7033 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll -2023-02-28 10:28:33.7063 Info Copied Microsoft.AspNetCore.ResponseCompression.dll -2023-02-28 10:28:33.7067 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll -2023-02-28 10:28:33.7086 Info Copied Microsoft.AspNetCore.Rewrite.dll -2023-02-28 10:28:33.7090 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll -2023-02-28 10:28:33.7101 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll -2023-02-28 10:28:33.7101 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll -2023-02-28 10:28:33.7142 Info Copied Microsoft.AspNetCore.Routing.dll -2023-02-28 10:28:33.7142 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll -2023-02-28 10:28:33.7175 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll -2023-02-28 10:28:33.7179 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll -2023-02-28 10:28:33.7214 Info Copied Microsoft.AspNetCore.Server.IIS.dll -2023-02-28 10:28:33.7217 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll -2023-02-28 10:28:33.7229 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll -2023-02-28 10:28:33.7229 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-02-28 10:28:33.7329 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-02-28 10:28:33.7329 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll -2023-02-28 10:28:33.7344 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll -2023-02-28 10:28:33.7348 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-02-28 10:28:33.7368 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-02-28 10:28:33.7368 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-02-28 10:28:33.7389 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-02-28 10:28:33.7389 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll -2023-02-28 10:28:33.7407 Info Copied Microsoft.AspNetCore.Session.dll -2023-02-28 10:28:33.7407 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll -2023-02-28 10:28:33.7424 Info Copied Microsoft.AspNetCore.SignalR.Common.dll -2023-02-28 10:28:33.7428 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll -2023-02-28 10:28:33.7453 Info Copied Microsoft.AspNetCore.SignalR.Core.dll -2023-02-28 10:28:33.7457 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll -2023-02-28 10:28:33.7469 Info Copied Microsoft.AspNetCore.SignalR.dll -2023-02-28 10:28:33.7469 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-02-28 10:28:33.7485 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-02-28 10:28:33.7489 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll -2023-02-28 10:28:33.7505 Info Copied Microsoft.AspNetCore.StaticFiles.dll -2023-02-28 10:28:33.7509 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll -2023-02-28 10:28:33.7521 Info Copied Microsoft.AspNetCore.WebSockets.dll -2023-02-28 10:28:33.7521 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll -2023-02-28 10:28:33.7545 Info Copied Microsoft.AspNetCore.WebUtilities.dll -2023-02-28 10:28:33.7549 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll -2023-02-28 10:28:33.7591 Info Copied Microsoft.CSharp.dll -2023-02-28 10:28:33.7591 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll -2023-02-28 10:28:33.7606 Info Copied Microsoft.Extensions.Caching.Abstractions.dll -2023-02-28 10:28:33.7610 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll -2023-02-28 10:28:33.7623 Info Copied Microsoft.Extensions.Caching.Memory.dll -2023-02-28 10:28:33.7627 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll -2023-02-28 10:28:33.7638 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll -2023-02-28 10:28:33.7638 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll -2023-02-28 10:28:33.7654 Info Copied Microsoft.Extensions.Configuration.Binder.dll -2023-02-28 10:28:33.7657 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll -2023-02-28 10:28:33.7669 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll -2023-02-28 10:28:33.7669 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll -2023-02-28 10:28:33.7685 Info Copied Microsoft.Extensions.Configuration.dll -2023-02-28 10:28:33.7689 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-02-28 10:28:33.7700 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-02-28 10:28:33.7700 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll -2023-02-28 10:28:33.7715 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll -2023-02-28 10:28:33.7719 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll -2023-02-28 10:28:33.7730 Info Copied Microsoft.Extensions.Configuration.Ini.dll -2023-02-28 10:28:33.7730 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll -2023-02-28 10:28:33.7743 Info Copied Microsoft.Extensions.Configuration.Json.dll -2023-02-28 10:28:33.7748 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-02-28 10:28:33.7759 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-02-28 10:28:33.7759 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll -2023-02-28 10:28:33.7772 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll -2023-02-28 10:28:33.7772 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll -2023-02-28 10:28:33.7787 Info Copied Microsoft.Extensions.Configuration.Xml.dll -2023-02-28 10:28:33.7787 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-02-28 10:28:33.7804 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-02-28 10:28:33.7808 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll -2023-02-28 10:28:33.7825 Info Copied Microsoft.Extensions.DependencyInjection.dll -2023-02-28 10:28:33.7829 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-02-28 10:28:33.7840 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-02-28 10:28:33.7840 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-02-28 10:28:33.7859 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-02-28 10:28:33.7859 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll -2023-02-28 10:28:33.7873 Info Copied Microsoft.Extensions.Features.dll -2023-02-28 10:28:33.7877 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll -2023-02-28 10:28:33.7888 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll -2023-02-28 10:28:33.7888 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll -2023-02-28 10:28:33.7902 Info Copied Microsoft.Extensions.FileProviders.Composite.dll -2023-02-28 10:28:33.7902 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll -2023-02-28 10:28:33.7918 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll -2023-02-28 10:28:33.7918 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll -2023-02-28 10:28:33.7934 Info Copied Microsoft.Extensions.FileProviders.Physical.dll -2023-02-28 10:28:33.7938 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll -2023-02-28 10:28:33.7953 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll -2023-02-28 10:28:33.7953 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll -2023-02-28 10:28:33.7968 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll -2023-02-28 10:28:33.7968 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll -2023-02-28 10:28:33.7986 Info Copied Microsoft.Extensions.Hosting.dll -2023-02-28 10:28:33.7990 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll -2023-02-28 10:28:33.8005 Info Copied Microsoft.Extensions.Http.dll -2023-02-28 10:28:33.8009 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll -2023-02-28 10:28:33.8037 Info Copied Microsoft.Extensions.Identity.Core.dll -2023-02-28 10:28:33.8037 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll -2023-02-28 10:28:33.8053 Info Copied Microsoft.Extensions.Identity.Stores.dll -2023-02-28 10:28:33.8057 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll -2023-02-28 10:28:33.8069 Info Copied Microsoft.Extensions.Localization.Abstractions.dll -2023-02-28 10:28:33.8069 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll -2023-02-28 10:28:33.8084 Info Copied Microsoft.Extensions.Localization.dll -2023-02-28 10:28:33.8087 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll -2023-02-28 10:28:33.8101 Info Copied Microsoft.Extensions.Logging.Abstractions.dll -2023-02-28 10:28:33.8101 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll -2023-02-28 10:28:33.8108 Info Copied Microsoft.Extensions.Logging.Configuration.dll -2023-02-28 10:28:33.8108 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll -2023-02-28 10:28:33.8108 Info Copied Microsoft.Extensions.Logging.Console.dll -2023-02-28 10:28:33.8117 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll -2023-02-28 10:28:33.8117 Info Copied Microsoft.Extensions.Logging.Debug.dll -2023-02-28 10:28:33.8117 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll -2023-02-28 10:28:33.8129 Info Copied Microsoft.Extensions.Logging.dll -2023-02-28 10:28:33.8129 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll -2023-02-28 10:28:33.8129 Info Copied Microsoft.Extensions.Logging.EventLog.dll -2023-02-28 10:28:33.8138 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll -2023-02-28 10:28:33.8138 Info Copied Microsoft.Extensions.Logging.EventSource.dll -2023-02-28 10:28:33.8138 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll -2023-02-28 10:28:33.8150 Info Copied Microsoft.Extensions.Logging.TraceSource.dll -2023-02-28 10:28:33.8150 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll -2023-02-28 10:28:33.8157 Info Copied Microsoft.Extensions.ObjectPool.dll -2023-02-28 10:28:33.8157 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-02-28 10:28:33.8157 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-02-28 10:28:33.8157 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll -2023-02-28 10:28:33.8170 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll -2023-02-28 10:28:33.8170 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll -2023-02-28 10:28:33.8179 Info Copied Microsoft.Extensions.Options.dll -2023-02-28 10:28:33.8179 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll -2023-02-28 10:28:33.8187 Info Copied Microsoft.Extensions.Primitives.dll -2023-02-28 10:28:33.8187 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll -2023-02-28 10:28:33.8187 Info Copied Microsoft.Extensions.WebEncoders.dll -2023-02-28 10:28:33.8187 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll -2023-02-28 10:28:33.8203 Info Copied Microsoft.JSInterop.dll -2023-02-28 10:28:33.8203 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll -2023-02-28 10:28:33.8214 Info Copied Microsoft.Net.Http.Headers.dll -2023-02-28 10:28:33.8214 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll -2023-02-28 10:28:33.8242 Info Copied Microsoft.VisualBasic.Core.dll -2023-02-28 10:28:33.8242 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll -2023-02-28 10:28:33.8248 Info Copied Microsoft.VisualBasic.dll -2023-02-28 10:28:33.8248 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll -2023-02-28 10:28:33.8248 Info Copied Microsoft.Win32.Primitives.dll -2023-02-28 10:28:33.8257 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll -2023-02-28 10:28:33.8257 Info Copied Microsoft.Win32.Registry.dll -2023-02-28 10:28:33.8257 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll -2023-02-28 10:28:33.8273 Info Copied MimeMapping.dll -2023-02-28 10:28:33.8273 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll -2023-02-28 10:28:33.8280 Info Copied Mono.Posix.dll -2023-02-28 10:28:33.8280 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll -2023-02-28 10:28:33.8290 Info Copied Mono.Unix.dll -2023-02-28 10:28:33.8290 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll -2023-02-28 10:28:33.8297 Info Copied mscorlib.dll -2023-02-28 10:28:33.8297 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll -2023-02-28 10:28:33.8297 Info Copied netstandard.dll -2023-02-28 10:28:33.8307 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll -2023-02-28 10:28:33.8307 Info Copied Newtonsoft.Json.Bson.dll -2023-02-28 10:28:33.8307 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll -2023-02-28 10:28:33.8331 Info Copied Newtonsoft.Json.dll -2023-02-28 10:28:33.8331 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll -2023-02-28 10:28:33.8351 Info Copied NLog.dll -2023-02-28 10:28:33.8351 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll -2023-02-28 10:28:33.8359 Info Copied NLog.Extensions.Logging.dll -2023-02-28 10:28:33.8359 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll -2023-02-28 10:28:33.8367 Info Copied NLog.Web.AspNetCore.dll -2023-02-28 10:28:33.8367 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll -2023-02-28 10:28:33.8367 Info Copied Org.Mentalis.dll -2023-02-28 10:28:33.8367 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll -2023-02-28 10:28:33.8384 Info Copied Polly.dll -2023-02-28 10:28:33.8384 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/README.md to destination: /app/Jackett/README.md -2023-02-28 10:28:33.8391 Info Copied README.md -2023-02-28 10:28:33.8391 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll -2023-02-28 10:28:33.8397 Info Copied SocksWebProxy.dll -2023-02-28 10:28:33.8397 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll -2023-02-28 10:28:33.8397 Info Copied System.AppContext.dll -2023-02-28 10:28:33.8397 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll -2023-02-28 10:28:33.8410 Info Copied System.Buffers.dll -2023-02-28 10:28:33.8410 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll -2023-02-28 10:28:33.8421 Info Copied System.Collections.Concurrent.dll -2023-02-28 10:28:33.8421 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll -2023-02-28 10:28:33.8431 Info Copied System.Collections.dll -2023-02-28 10:28:33.8431 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll -2023-02-28 10:28:33.8448 Info Copied System.Collections.Immutable.dll -2023-02-28 10:28:33.8448 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll -2023-02-28 10:28:33.8448 Info Copied System.Collections.NonGeneric.dll -2023-02-28 10:28:33.8457 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll -2023-02-28 10:28:33.8472 Info Copied System.Collections.Specialized.dll -2023-02-28 10:28:33.8501 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll -2023-02-28 10:28:33.9302 Info Copied System.ComponentModel.Annotations.dll -2023-02-28 10:28:33.9302 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll -2023-02-28 10:28:33.9309 Info Copied System.ComponentModel.DataAnnotations.dll -2023-02-28 10:28:33.9309 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll -2023-02-28 10:28:33.9309 Info Copied System.ComponentModel.dll -2023-02-28 10:28:33.9317 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll -2023-02-28 10:28:33.9317 Info Copied System.ComponentModel.EventBasedAsync.dll -2023-02-28 10:28:33.9317 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll -2023-02-28 10:28:33.9329 Info Copied System.ComponentModel.Primitives.dll -2023-02-28 10:28:33.9329 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll -2023-02-28 10:28:33.9348 Info Copied System.ComponentModel.TypeConverter.dll -2023-02-28 10:28:33.9348 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll -2023-02-28 10:28:33.9348 Info Copied System.Configuration.dll -2023-02-28 10:28:33.9348 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll -2023-02-28 10:28:33.9362 Info Copied System.Console.dll -2023-02-28 10:28:33.9362 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll -2023-02-28 10:28:33.9369 Info Copied System.Core.dll -2023-02-28 10:28:33.9369 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll -2023-02-28 10:28:33.9428 Info Copied System.Data.Common.dll -2023-02-28 10:28:33.9428 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll -2023-02-28 10:28:33.9428 Info Copied System.Data.DataSetExtensions.dll -2023-02-28 10:28:33.9428 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll -2023-02-28 10:28:33.9441 Info Copied System.Data.dll -2023-02-28 10:28:33.9441 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll -2023-02-28 10:28:33.9441 Info Copied System.Diagnostics.Contracts.dll -2023-02-28 10:28:33.9447 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll -2023-02-28 10:28:33.9447 Info Copied System.Diagnostics.Debug.dll -2023-02-28 10:28:33.9447 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll -2023-02-28 10:28:33.9464 Info Copied System.Diagnostics.DiagnosticSource.dll -2023-02-28 10:28:33.9464 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll -2023-02-28 10:28:33.9471 Info Copied System.Diagnostics.EventLog.dll -2023-02-28 10:28:33.9471 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll -2023-02-28 10:28:33.9478 Info Copied System.Diagnostics.FileVersionInfo.dll -2023-02-28 10:28:33.9478 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll -2023-02-28 10:28:33.9488 Info Copied System.Diagnostics.Process.dll -2023-02-28 10:28:33.9488 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll -2023-02-28 10:28:33.9488 Info Copied System.Diagnostics.StackTrace.dll -2023-02-28 10:28:33.9488 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll -2023-02-28 10:28:34.0108 Info Copied System.Diagnostics.TextWriterTraceListener.dll -2023-02-28 10:28:34.0108 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll -2023-02-28 10:28:34.0117 Info Copied System.Diagnostics.Tools.dll -2023-02-28 10:28:34.0117 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll -2023-02-28 10:28:34.0117 Info Copied System.Diagnostics.TraceSource.dll -2023-02-28 10:28:34.0127 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll -2023-02-28 10:28:34.0127 Info Copied System.Diagnostics.Tracing.dll -2023-02-28 10:28:34.0127 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.dll to destination: /app/Jackett/System.dll -2023-02-28 10:28:34.0138 Info Copied System.dll -2023-02-28 10:28:34.0138 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll -2023-02-28 10:28:34.0138 Info Copied System.Drawing.dll -2023-02-28 10:28:34.0138 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll -2023-02-28 10:28:34.0152 Info Copied System.Drawing.Primitives.dll -2023-02-28 10:28:34.0152 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll -2023-02-28 10:28:34.0158 Info Copied System.Dynamic.Runtime.dll -2023-02-28 10:28:34.0158 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll -2023-02-28 10:28:34.0168 Info Copied System.Formats.Asn1.dll -2023-02-28 10:28:34.0168 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll -2023-02-28 10:28:34.0168 Info Copied System.Globalization.Calendars.dll -2023-02-28 10:28:34.0168 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll -2023-02-28 10:28:34.0180 Info Copied System.Globalization.dll -2023-02-28 10:28:34.0180 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll -2023-02-28 10:28:34.0180 Info Copied System.Globalization.Extensions.dll -2023-02-28 10:28:34.0188 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll -2023-02-28 10:28:34.0188 Info Copied System.IO.Compression.Brotli.dll -2023-02-28 10:28:34.0188 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll -2023-02-28 10:28:34.0204 Info Copied System.IO.Compression.dll -2023-02-28 10:28:34.0204 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll -2023-02-28 10:28:34.0210 Info Copied System.IO.Compression.FileSystem.dll -2023-02-28 10:28:34.0210 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll -2023-02-28 10:28:34.0217 Info Copied System.IO.Compression.ZipFile.dll -2023-02-28 10:28:34.0217 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll -2023-02-28 10:28:34.0217 Info Copied System.IO.dll -2023-02-28 10:28:34.0217 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll -2023-02-28 10:28:34.0229 Info Copied System.IO.FileSystem.AccessControl.dll -2023-02-28 10:28:34.0229 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll -2023-02-28 10:28:34.0229 Info Copied System.IO.FileSystem.dll -2023-02-28 10:28:34.0237 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll -2023-02-28 10:28:34.0237 Info Copied System.IO.FileSystem.DriveInfo.dll -2023-02-28 10:28:34.0237 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll -2023-02-28 10:28:34.0249 Info Copied System.IO.FileSystem.Primitives.dll -2023-02-28 10:28:34.0249 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll -2023-02-28 10:28:34.0249 Info Copied System.IO.FileSystem.Watcher.dll -2023-02-28 10:28:34.0258 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll -2023-02-28 10:28:34.0258 Info Copied System.IO.IsolatedStorage.dll -2023-02-28 10:28:34.0258 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll -2023-02-28 10:28:34.0271 Info Copied System.IO.MemoryMappedFiles.dll -2023-02-28 10:28:34.0271 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll -2023-02-28 10:28:34.0280 Info Copied System.IO.Pipelines.dll -2023-02-28 10:28:34.0280 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll -2023-02-28 10:28:34.0280 Info Copied System.IO.Pipes.AccessControl.dll -2023-02-28 10:28:34.0287 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll -2023-02-28 10:28:34.0287 Info Copied System.IO.Pipes.dll -2023-02-28 10:28:34.0287 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll -2023-02-28 10:28:34.0300 Info Copied System.IO.UnmanagedMemoryStream.dll -2023-02-28 10:28:34.0300 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll -2023-02-28 10:28:34.1113 Info Copied System.Linq.dll -2023-02-28 10:28:34.1117 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll -2023-02-28 10:28:34.1202 Info Copied System.Linq.Expressions.dll -2023-02-28 10:28:34.1202 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll -2023-02-28 10:28:34.1225 Info Copied System.Linq.Parallel.dll -2023-02-28 10:28:34.1227 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll -2023-02-28 10:28:34.1227 Info Copied System.Linq.Queryable.dll -2023-02-28 10:28:34.1237 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll -2023-02-28 10:28:34.1237 Info Copied System.Memory.dll -2023-02-28 10:28:34.1237 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll -2023-02-28 10:28:34.1250 Info Copied System.Net.dll -2023-02-28 10:28:34.1250 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll -2023-02-28 10:28:34.1283 Info Copied System.Net.Http.dll -2023-02-28 10:28:34.1283 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll -2023-02-28 10:28:34.1290 Info Copied System.Net.Http.Json.dll -2023-02-28 10:28:34.1290 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll -2023-02-28 10:28:34.1302 Info Copied System.Net.HttpListener.dll -2023-02-28 10:28:34.1302 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll -2023-02-28 10:28:34.2187 Info Copied System.Net.Mail.dll -2023-02-28 10:28:34.2187 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll -2023-02-28 10:28:34.2198 Info Copied System.Net.NameResolution.dll -2023-02-28 10:28:34.2198 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll -2023-02-28 10:28:34.2207 Info Copied System.Net.NetworkInformation.dll -2023-02-28 10:28:34.2207 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll -2023-02-28 10:28:34.2207 Info Copied System.Net.Ping.dll -2023-02-28 10:28:34.2207 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll -2023-02-28 10:28:34.2223 Info Copied System.Net.Primitives.dll -2023-02-28 10:28:34.2223 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll -2023-02-28 10:28:34.2234 Info Copied System.Net.Quic.dll -2023-02-28 10:28:34.2234 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll -2023-02-28 10:28:34.2247 Info Copied System.Net.Requests.dll -2023-02-28 10:28:34.2247 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll -2023-02-28 10:28:34.2268 Info Copied System.Net.Security.dll -2023-02-28 10:28:34.2268 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll -2023-02-28 10:28:34.2268 Info Copied System.Net.ServicePoint.dll -2023-02-28 10:28:34.2268 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll -2023-02-28 10:28:34.2289 Info Copied System.Net.Sockets.dll -2023-02-28 10:28:34.2289 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll -2023-02-28 10:28:34.2298 Info Copied System.Net.WebClient.dll -2023-02-28 10:28:34.2298 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll -2023-02-28 10:28:34.2298 Info Copied System.Net.WebHeaderCollection.dll -2023-02-28 10:28:34.2298 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll -2023-02-28 10:28:34.2311 Info Copied System.Net.WebProxy.dll -2023-02-28 10:28:34.2311 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll -2023-02-28 10:28:34.2318 Info Copied System.Net.WebSockets.Client.dll -2023-02-28 10:28:34.2318 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll -2023-02-28 10:28:34.2335 Info Copied System.Net.WebSockets.dll -2023-02-28 10:28:34.2337 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll -2023-02-28 10:28:34.2337 Info Copied System.Numerics.dll -2023-02-28 10:28:34.2337 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll -2023-02-28 10:28:34.2346 Info Copied System.Numerics.Vectors.dll -2023-02-28 10:28:34.2346 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll -2023-02-28 10:28:34.2346 Info Copied System.ObjectModel.dll -2023-02-28 10:28:34.2346 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll -2023-02-28 10:28:34.3176 Info Copied System.Private.CoreLib.dll -2023-02-28 10:28:34.3181 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll -2023-02-28 10:28:34.3273 Info Copied System.Private.DataContractSerialization.dll -2023-02-28 10:28:34.3277 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll -2023-02-28 10:28:34.3309 Info Copied System.Private.Uri.dll -2023-02-28 10:28:34.3309 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll -2023-02-28 10:28:34.4644 Info Copied System.Private.Xml.dll -2023-02-28 10:28:34.4652 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll -2023-02-28 10:28:34.4684 Info Copied System.Private.Xml.Linq.dll -2023-02-28 10:28:34.4687 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll -2023-02-28 10:28:34.4701 Info Copied System.Reflection.DispatchProxy.dll -2023-02-28 10:28:34.4701 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll -2023-02-28 10:28:34.4716 Info Copied System.Reflection.dll -2023-02-28 10:28:34.4720 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll -2023-02-28 10:28:34.4730 Info Copied System.Reflection.Emit.dll -2023-02-28 10:28:34.4730 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll -2023-02-28 10:28:34.4744 Info Copied System.Reflection.Emit.ILGeneration.dll -2023-02-28 10:28:34.4748 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll -2023-02-28 10:28:34.4759 Info Copied System.Reflection.Emit.Lightweight.dll -2023-02-28 10:28:34.4759 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll -2023-02-28 10:28:34.4772 Info Copied System.Reflection.Extensions.dll -2023-02-28 10:28:34.4772 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll -2023-02-28 10:28:34.5453 Info Copied System.Reflection.Metadata.dll -2023-02-28 10:28:34.5458 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll -2023-02-28 10:28:34.5472 Info Copied System.Reflection.Primitives.dll -2023-02-28 10:28:34.5472 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll -2023-02-28 10:28:34.5487 Info Copied System.Reflection.TypeExtensions.dll -2023-02-28 10:28:34.5487 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll -2023-02-28 10:28:34.5500 Info Copied System.Resources.Reader.dll -2023-02-28 10:28:34.5500 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll -2023-02-28 10:28:34.5517 Info Copied System.Resources.ResourceManager.dll -2023-02-28 10:28:34.5517 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll -2023-02-28 10:28:34.5531 Info Copied System.Resources.Writer.dll -2023-02-28 10:28:34.5531 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll -2023-02-28 10:28:34.5545 Info Copied System.Runtime.CompilerServices.Unsafe.dll -2023-02-28 10:28:34.5549 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll -2023-02-28 10:28:34.5559 Info Copied System.Runtime.CompilerServices.VisualC.dll -2023-02-28 10:28:34.5559 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll -2023-02-28 10:28:34.5573 Info Copied System.Runtime.dll -2023-02-28 10:28:34.5577 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll -2023-02-28 10:28:34.5587 Info Copied System.Runtime.Extensions.dll -2023-02-28 10:28:34.5587 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll -2023-02-28 10:28:34.5600 Info Copied System.Runtime.Handles.dll -2023-02-28 10:28:34.5600 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll -2023-02-28 10:28:34.5615 Info Copied System.Runtime.InteropServices.dll -2023-02-28 10:28:34.5619 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll -2023-02-28 10:28:34.5630 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll -2023-02-28 10:28:34.5630 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll -2023-02-28 10:28:34.5646 Info Copied System.Runtime.Intrinsics.dll -2023-02-28 10:28:34.5650 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll -2023-02-28 10:28:34.5659 Info Copied System.Runtime.Loader.dll -2023-02-28 10:28:34.5659 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll -2023-02-28 10:28:34.5829 Info Copied System.Runtime.Numerics.dll -2023-02-28 10:28:34.5829 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll -2023-02-28 10:28:34.5844 Info Copied System.Runtime.Serialization.dll -2023-02-28 10:28:34.5847 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll -2023-02-28 10:28:34.5875 Info Copied System.Runtime.Serialization.Formatters.dll -2023-02-28 10:28:34.5879 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll -2023-02-28 10:28:34.5890 Info Copied System.Runtime.Serialization.Json.dll -2023-02-28 10:28:34.5890 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll -2023-02-28 10:28:34.5904 Info Copied System.Runtime.Serialization.Primitives.dll -2023-02-28 10:28:34.5909 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll -2023-02-28 10:28:34.5919 Info Copied System.Runtime.Serialization.Xml.dll -2023-02-28 10:28:34.5919 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll -2023-02-28 10:28:34.5934 Info Copied System.Security.AccessControl.dll -2023-02-28 10:28:34.5938 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll -2023-02-28 10:28:34.5952 Info Copied System.Security.Claims.dll -2023-02-28 10:28:34.5952 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll -2023-02-28 10:28:34.5997 Info Copied System.Security.Cryptography.Algorithms.dll -2023-02-28 10:28:34.5997 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll -2023-02-28 10:28:34.6011 Info Copied System.Security.Cryptography.Cng.dll -2023-02-28 10:28:34.6011 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll -2023-02-28 10:28:34.6394 Info Copied System.Security.Cryptography.Csp.dll -2023-02-28 10:28:34.6400 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll -2023-02-28 10:28:34.6418 Info Copied System.Security.Cryptography.Encoding.dll -2023-02-28 10:28:34.6418 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll -2023-02-28 10:28:34.6442 Info Copied System.Security.Cryptography.OpenSsl.dll -2023-02-28 10:28:34.6442 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll -2023-02-28 10:28:34.6499 Info Copied System.Security.Cryptography.Pkcs.dll -2023-02-28 10:28:34.6499 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll -2023-02-28 10:28:34.6520 Info Copied System.Security.Cryptography.Primitives.dll -2023-02-28 10:28:34.6520 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll -2023-02-28 10:28:34.6534 Info Copied System.Security.Cryptography.ProtectedData.dll -2023-02-28 10:28:34.6537 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll -2023-02-28 10:28:34.6577 Info Copied System.Security.Cryptography.X509Certificates.dll -2023-02-28 10:28:34.6577 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll -2023-02-28 10:28:34.6856 Info Copied System.Security.Cryptography.Xml.dll -2023-02-28 10:28:34.6861 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll -2023-02-28 10:28:34.6874 Info Copied System.Security.dll -2023-02-28 10:28:34.6878 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll -2023-02-28 10:28:34.6888 Info Copied System.Security.Principal.dll -2023-02-28 10:28:34.6888 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll -2023-02-28 10:28:34.6904 Info Copied System.Security.Principal.Windows.dll -2023-02-28 10:28:34.6907 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll -2023-02-28 10:28:34.6918 Info Copied System.Security.SecureString.dll -2023-02-28 10:28:34.6918 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll -2023-02-28 10:28:34.6932 Info Copied System.ServiceModel.Web.dll -2023-02-28 10:28:34.6932 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll -2023-02-28 10:28:34.6947 Info Copied System.ServiceProcess.dll -2023-02-28 10:28:34.6947 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll -2023-02-28 10:28:34.6974 Info Copied System.ServiceProcess.ServiceController.dll -2023-02-28 10:28:34.6979 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll -2023-02-28 10:28:34.7024 Info Copied System.Text.Encoding.CodePages.dll -2023-02-28 10:28:34.7028 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll -2023-02-28 10:28:34.7038 Info Copied System.Text.Encoding.dll -2023-02-28 10:28:34.7038 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll -2023-02-28 10:28:34.7083 Info Copied System.Text.Encoding.Extensions.dll -2023-02-28 10:28:34.7087 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll -2023-02-28 10:28:34.7106 Info Copied System.Text.Encodings.Web.dll -2023-02-28 10:28:34.7110 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll -2023-02-28 10:28:34.7189 Info Copied System.Text.Json.dll -2023-02-28 10:28:34.7189 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll -2023-02-28 10:28:34.7237 Info Copied System.Text.RegularExpressions.dll -2023-02-28 10:28:34.7237 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll -2023-02-28 10:28:34.7256 Info Copied System.Threading.Channels.dll -2023-02-28 10:28:34.7260 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll -2023-02-28 10:28:34.7274 Info Copied System.Threading.dll -2023-02-28 10:28:34.7278 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll -2023-02-28 10:28:34.7351 Info Copied System.Threading.Overlapped.dll -2023-02-28 10:28:34.7351 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll -2023-02-28 10:28:34.7386 Info Copied System.Threading.Tasks.Dataflow.dll -2023-02-28 10:28:34.7390 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll -2023-02-28 10:28:34.7400 Info Copied System.Threading.Tasks.dll -2023-02-28 10:28:34.7400 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll -2023-02-28 10:28:34.7414 Info Copied System.Threading.Tasks.Extensions.dll -2023-02-28 10:28:34.7417 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll -2023-02-28 10:28:34.7431 Info Copied System.Threading.Tasks.Parallel.dll -2023-02-28 10:28:34.7431 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll -2023-02-28 10:28:34.7446 Info Copied System.Threading.Thread.dll -2023-02-28 10:28:34.7450 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll -2023-02-28 10:28:34.7460 Info Copied System.Threading.ThreadPool.dll -2023-02-28 10:28:34.7460 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll -2023-02-28 10:28:34.7474 Info Copied System.Threading.Timer.dll -2023-02-28 10:28:34.7478 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll -2023-02-28 10:28:34.7488 Info Copied System.Transactions.dll -2023-02-28 10:28:34.7488 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll -2023-02-28 10:28:34.7517 Info Copied System.Transactions.Local.dll -2023-02-28 10:28:34.7517 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll -2023-02-28 10:28:34.7530 Info Copied System.ValueTuple.dll -2023-02-28 10:28:34.7530 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll -2023-02-28 10:28:34.7543 Info Copied System.Web.dll -2023-02-28 10:28:34.7547 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll -2023-02-28 10:28:34.7559 Info Copied System.Web.HttpUtility.dll -2023-02-28 10:28:34.7559 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll -2023-02-28 10:28:34.7571 Info Copied System.Windows.dll -2023-02-28 10:28:34.7571 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll -2023-02-28 10:28:34.7734 Info Copied System.Xml.dll -2023-02-28 10:28:34.7738 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll -2023-02-28 10:28:34.7750 Info Copied System.Xml.Linq.dll -2023-02-28 10:28:34.7750 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll -2023-02-28 10:28:34.7765 Info Copied System.Xml.ReaderWriter.dll -2023-02-28 10:28:34.7769 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll -2023-02-28 10:28:34.7779 Info Copied System.Xml.Serialization.dll -2023-02-28 10:28:34.7779 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll -2023-02-28 10:28:34.7793 Info Copied System.Xml.XDocument.dll -2023-02-28 10:28:34.7797 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll -2023-02-28 10:28:34.7807 Info Copied System.Xml.XmlDocument.dll -2023-02-28 10:28:34.7807 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll -2023-02-28 10:28:34.7821 Info Copied System.Xml.XmlSerializer.dll -2023-02-28 10:28:34.7821 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll -2023-02-28 10:28:34.7835 Info Copied System.Xml.XPath.dll -2023-02-28 10:28:34.7839 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll -2023-02-28 10:28:34.7850 Info Copied System.Xml.XPath.XDocument.dll -2023-02-28 10:28:34.7850 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll -2023-02-28 10:28:34.7863 Info Copied WindowsBase.dll -2023-02-28 10:28:34.7867 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3403-638131769094127020/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll -2023-02-28 10:28:34.7889 Info Copied YamlDotNet.dll -2023-02-28 10:28:34.7889 Info File copying complete -2023-02-28 10:28:34.7920 Info Deleting file /app/Jackett/Definitions/cloudtorrents.yml -2023-02-28 10:28:34.8271 Info Killing process 135 -2023-02-28 10:28:37.9070 Info Process 135 didn't exit within 2 seconds after a SIGTERM -2023-03-01 15:59:51.2444 Info Jackett Updater v0.20.3411 -2023-03-01 15:59:51.3400 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "134" "--NoRestart" -2023-03-01 15:59:51.3434 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-01 15:59:51.5527 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb -2023-03-01 15:59:51.5527 Info Deleted /app/Jackett/DateTimeRoutines.pdb -2023-03-01 15:59:51.5527 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb -2023-03-01 15:59:51.5539 Info Deleted /app/Jackett/Jackett.Common.pdb -2023-03-01 15:59:51.5539 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb -2023-03-01 15:59:51.5539 Info Deleted /app/Jackett/JackettUpdater.pdb -2023-03-01 15:59:51.5539 Info Attempting to remove: /app/Jackett/jackett.pdb -2023-03-01 15:59:51.5548 Info Deleted /app/Jackett/jackett.pdb -2023-03-01 15:59:51.5548 Info Attempting to remove: /app/Jackett/jackett -2023-03-01 15:59:51.5548 Info Deleted /app/Jackett/jackett -2023-03-01 15:59:51.5548 Info Finding files in: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/ -2023-03-01 15:59:51.5615 Info 891 update files found -2023-03-01 15:59:51.5627 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll -2023-03-01 15:59:51.5658 Info Copied AngleSharp.dll -2023-03-01 15:59:51.5658 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll -2023-03-01 15:59:51.5667 Info Copied AngleSharp.Xml.dll -2023-03-01 15:59:51.5667 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll -2023-03-01 15:59:51.5679 Info Copied Autofac.dll -2023-03-01 15:59:51.5679 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll -2023-03-01 15:59:51.5688 Info Copied Autofac.Extensions.DependencyInjection.dll -2023-03-01 15:59:51.5688 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll -2023-03-01 15:59:51.5710 Info Copied AutoMapper.dll -2023-03-01 15:59:51.5710 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll -2023-03-01 15:59:51.5717 Info Copied BencodeNET.dll -2023-03-01 15:59:51.5717 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll -2023-03-01 15:59:51.5728 Info Copied CommandLine.dll -2023-03-01 15:59:51.5728 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css -2023-03-01 15:59:51.5754 Info Copied animate.css -2023-03-01 15:59:51.5754 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png -2023-03-01 15:59:51.5762 Info Copied apple-touch-icon.png -2023-03-01 15:59:51.5762 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png -2023-03-01 15:59:51.5769 Info Copied binding_dark.png -2023-03-01 15:59:51.5769 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css -2023-03-01 15:59:51.5861 Info Copied bootstrap.min.css -2023-03-01 15:59:51.5869 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js -2023-03-01 15:59:51.5881 Info Copied bootstrap.min.js -2023-03-01 15:59:51.5881 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js -2023-03-01 15:59:51.5895 Info Copied common.js -2023-03-01 15:59:51.5899 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css -2023-03-01 15:59:51.5951 Info Copied bootstrap-multiselect.css -2023-03-01 15:59:51.5958 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css -2023-03-01 15:59:51.5970 Info Copied font-awesome.min.css -2023-03-01 15:59:51.5970 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css -2023-03-01 15:59:51.5997 Info Copied jquery.dataTables.min.css -2023-03-01 15:59:51.6002 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css -2023-03-01 15:59:51.6014 Info Copied tagify.css -2023-03-01 15:59:51.6020 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css -2023-03-01 15:59:51.6031 Info Copied custom_mobile.css -2023-03-01 15:59:51.6031 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css -2023-03-01 15:59:51.6050 Info Copied custom.css -2023-03-01 15:59:51.6050 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js -2023-03-01 15:59:51.6068 Info Copied custom.js -2023-03-01 15:59:51.6068 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico -2023-03-01 15:59:51.6087 Info Copied favicon.ico -2023-03-01 15:59:51.6087 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot -2023-03-01 15:59:51.6107 Info Copied fontawesome-webfont.eot -2023-03-01 15:59:51.6107 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg -2023-03-01 15:59:51.6130 Info Copied fontawesome-webfont.svg -2023-03-01 15:59:51.6130 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf -2023-03-01 15:59:51.6153 Info Copied fontawesome-webfont.ttf -2023-03-01 15:59:51.6159 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff -2023-03-01 15:59:51.6174 Info Copied fontawesome-webfont.woff -2023-03-01 15:59:51.6178 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 -2023-03-01 15:59:51.6191 Info Copied fontawesome-webfont.woff2 -2023-03-01 15:59:51.6191 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf -2023-03-01 15:59:51.6210 Info Copied FontAwesome.otf -2023-03-01 15:59:51.6210 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot -2023-03-01 15:59:51.6228 Info Copied glyphicons-halflings-regular.eot -2023-03-01 15:59:51.6228 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg -2023-03-01 15:59:51.6248 Info Copied glyphicons-halflings-regular.svg -2023-03-01 15:59:51.6248 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf -2023-03-01 15:59:51.6264 Info Copied glyphicons-halflings-regular.ttf -2023-03-01 15:59:51.6269 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff -2023-03-01 15:59:51.6282 Info Copied glyphicons-halflings-regular.woff -2023-03-01 15:59:51.6282 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 -2023-03-01 15:59:51.6298 Info Copied glyphicons-halflings-regular.woff2 -2023-03-01 15:59:51.6298 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png -2023-03-01 15:59:51.6312 Info Copied sort_asc_disabled.png -2023-03-01 15:59:51.6317 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png -2023-03-01 15:59:51.6327 Info Copied sort_asc.png -2023-03-01 15:59:51.6327 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png -2023-03-01 15:59:51.6342 Info Copied sort_both.png -2023-03-01 15:59:51.6342 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png -2023-03-01 15:59:51.6357 Info Copied sort_desc_disabled.png -2023-03-01 15:59:51.6357 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png -2023-03-01 15:59:51.6371 Info Copied sort_desc.png -2023-03-01 15:59:51.6377 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html -2023-03-01 15:59:51.6391 Info Copied index.html -2023-03-01 15:59:51.6398 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png -2023-03-01 15:59:51.6408 Info Copied jacket_medium.png -2023-03-01 15:59:51.6408 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js -2023-03-01 15:59:51.6423 Info Copied api.js -2023-03-01 15:59:51.6428 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js -2023-03-01 15:59:51.6443 Info Copied bootstrap-multiselect.js -2023-03-01 15:59:51.6448 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js -2023-03-01 15:59:51.6460 Info Copied bootstrap-notify.js -2023-03-01 15:59:51.6460 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js -2023-03-01 15:59:51.6475 Info Copied filesize.min.js -2023-03-01 15:59:51.6480 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js -2023-03-01 15:59:51.6495 Info Copied handlebars.min.js -2023-03-01 15:59:51.6500 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js -2023-03-01 15:59:51.6511 Info Copied handlebarsextend.js -2023-03-01 15:59:51.6511 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js -2023-03-01 15:59:51.6526 Info Copied handlebarsmoment.js -2023-03-01 15:59:51.6530 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js -2023-03-01 15:59:51.6547 Info Copied jquery.dataTables.min.js -2023-03-01 15:59:51.6547 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js -2023-03-01 15:59:51.6567 Info Copied jquery.min.js -2023-03-01 15:59:51.6567 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js -2023-03-01 15:59:51.6584 Info Copied jQuery.tagify.min.js -2023-03-01 15:59:51.6591 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js -2023-03-01 15:59:51.6603 Info Copied moment.min.js -2023-03-01 15:59:51.6607 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js -2023-03-01 15:59:51.6621 Info Copied tagify.min.js -2023-03-01 15:59:51.6621 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html -2023-03-01 15:59:51.6637 Info Copied login.html -2023-03-01 15:59:51.6637 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/createdump to destination: /app/Jackett/createdump -2023-03-01 15:59:51.6660 Info Copied createdump -2023-03-01 15:59:51.6660 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll -2023-03-01 15:59:51.6678 Info Copied DateTimeRoutines.dll -2023-03-01 15:59:51.6678 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb -2023-03-01 15:59:51.6693 Info Copied DateTimeRoutines.pdb -2023-03-01 15:59:51.6698 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml -2023-03-01 15:59:51.6710 Info Copied 0daykiev.yml -2023-03-01 15:59:51.6710 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml -2023-03-01 15:59:51.6724 Info Copied 0magnet.yml -2023-03-01 15:59:51.6729 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml -2023-03-01 15:59:51.6739 Info Copied 1337x.yml -2023-03-01 15:59:51.6739 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml -2023-03-01 15:59:51.6754 Info Copied 1ptbar.yml -2023-03-01 15:59:51.6758 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml -2023-03-01 15:59:51.6770 Info Copied 2fast4you.yml -2023-03-01 15:59:51.6770 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml -2023-03-01 15:59:51.6785 Info Copied 2xfree.yml -2023-03-01 15:59:51.6790 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml -2023-03-01 15:59:51.6800 Info Copied 3changtrai.yml -2023-03-01 15:59:51.6800 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml -2023-03-01 15:59:51.6816 Info Copied 3dtorrents.yml -2023-03-01 15:59:51.6820 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml -2023-03-01 15:59:51.6830 Info Copied 4thd.yml -2023-03-01 15:59:51.6830 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml -2023-03-01 15:59:51.6845 Info Copied 52pt.yml -2023-03-01 15:59:51.6850 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml -2023-03-01 15:59:51.6860 Info Copied abnormal.yml -2023-03-01 15:59:51.6860 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml -2023-03-01 15:59:51.6875 Info Copied abtorrents.yml -2023-03-01 15:59:51.6880 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml -2023-03-01 15:59:51.6890 Info Copied acervos-api.yml -2023-03-01 15:59:51.6890 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml -2023-03-01 15:59:51.6904 Info Copied acgrip.yml -2023-03-01 15:59:51.6909 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml -2023-03-01 15:59:51.6920 Info Copied acgsou.yml -2023-03-01 15:59:51.6920 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml -2023-03-01 15:59:51.6935 Info Copied acidlounge.yml -2023-03-01 15:59:51.6940 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml -2023-03-01 15:59:51.6952 Info Copied acrossthetasman.yml -2023-03-01 15:59:51.6957 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml -2023-03-01 15:59:51.6972 Info Copied aftershock.yml -2023-03-01 15:59:51.6977 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml -2023-03-01 15:59:51.6988 Info Copied aidoruonline.yml -2023-03-01 15:59:51.6988 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml -2023-03-01 15:59:51.7002 Info Copied aither-api.yml -2023-03-01 15:59:51.7008 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml -2023-03-01 15:59:51.7019 Info Copied amigosshare.yml -2023-03-01 15:59:51.7019 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml -2023-03-01 15:59:51.7035 Info Copied anilibria.yml -2023-03-01 15:59:51.7041 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml -2023-03-01 15:59:51.7084 Info Copied anime-free.yml -2023-03-01 15:59:51.7132 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml -2023-03-01 15:59:51.7144 Info Copied animelayer.yml -2023-03-01 15:59:51.7149 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml -2023-03-01 15:59:51.7160 Info Copied animetracker.yml -2023-03-01 15:59:51.7160 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml -2023-03-01 15:59:51.7176 Info Copied animeworld-api.yml -2023-03-01 15:59:51.7181 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml -2023-03-01 15:59:51.7192 Info Copied anirena.yml -2023-03-01 15:59:51.7197 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml -2023-03-01 15:59:51.7208 Info Copied anisource.yml -2023-03-01 15:59:51.7208 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml -2023-03-01 15:59:51.7223 Info Copied anthelion-api.yml -2023-03-01 15:59:51.7228 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml -2023-03-01 15:59:51.7240 Info Copied arabafenice.yml -2023-03-01 15:59:51.7240 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml -2023-03-01 15:59:51.7261 Info Copied arabp2p.yml -2023-03-01 15:59:51.7261 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml -2023-03-01 15:59:51.7276 Info Copied arenabg.yml -2023-03-01 15:59:51.7281 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml -2023-03-01 15:59:51.7292 Info Copied asiancinema.yml -2023-03-01 15:59:51.7297 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml -2023-03-01 15:59:51.7308 Info Copied asiandvdclub.yml -2023-03-01 15:59:51.7308 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml -2023-03-01 15:59:51.7322 Info Copied audiences.yml -2023-03-01 15:59:51.7328 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml -2023-03-01 15:59:51.7369 Info Copied audionews.yml -2023-03-01 15:59:51.7369 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml -2023-03-01 15:59:51.7384 Info Copied aussierules.yml -2023-03-01 15:59:51.7389 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml -2023-03-01 15:59:51.7400 Info Copied backups.yml -2023-03-01 15:59:51.7408 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml -2023-03-01 15:59:51.7419 Info Copied badasstorrents.yml -2023-03-01 15:59:51.7419 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml -2023-03-01 15:59:51.7433 Info Copied bangumi-moe.yml -2023-03-01 15:59:51.7439 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml -2023-03-01 15:59:51.7449 Info Copied beitai.yml -2023-03-01 15:59:51.7449 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml -2023-03-01 15:59:51.7468 Info Copied bestcore.yml -2023-03-01 15:59:51.7468 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml -2023-03-01 15:59:51.7483 Info Copied beyond-hd.yml -2023-03-01 15:59:51.7487 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml -2023-03-01 15:59:51.7497 Info Copied bibliotik.yml -2023-03-01 15:59:51.7497 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml -2023-03-01 15:59:51.7512 Info Copied bigfangroup.yml -2023-03-01 15:59:51.7512 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml -2023-03-01 15:59:51.7529 Info Copied bitbazis.yml -2023-03-01 15:59:51.7529 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml -2023-03-01 15:59:51.7544 Info Copied bitded.yml -2023-03-01 15:59:51.7549 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml -2023-03-01 15:59:51.7559 Info Copied bithorlo.yml -2023-03-01 15:59:51.7559 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml -2023-03-01 15:59:51.7573 Info Copied bithumen.yml -2023-03-01 15:59:51.7578 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml -2023-03-01 15:59:51.7588 Info Copied bitnova.yml -2023-03-01 15:59:51.7588 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml -2023-03-01 15:59:51.7604 Info Copied bitofvalor.yml -2023-03-01 15:59:51.7608 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml -2023-03-01 15:59:51.7618 Info Copied bitru.yml -2023-03-01 15:59:51.7618 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml -2023-03-01 15:59:51.7634 Info Copied bitsearch.yml -2023-03-01 15:59:51.7638 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml -2023-03-01 15:59:51.7648 Info Copied bitsexy.yml -2023-03-01 15:59:51.7648 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml -2023-03-01 15:59:51.7662 Info Copied bitspyder.yml -2023-03-01 15:59:51.7668 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml -2023-03-01 15:59:51.7679 Info Copied Bittorrentfiles.yml -2023-03-01 15:59:51.7679 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml -2023-03-01 15:59:51.7696 Info Copied bitturk.yml -2023-03-01 15:59:51.7701 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml -2023-03-01 15:59:51.7711 Info Copied bluebird.yml -2023-03-01 15:59:51.7711 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml -2023-03-01 15:59:51.7726 Info Copied blutopia-api.yml -2023-03-01 15:59:51.7731 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml -2023-03-01 15:59:51.7742 Info Copied booktracker.yml -2023-03-01 15:59:51.7747 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml -2023-03-01 15:59:51.7757 Info Copied bootytape.yml -2023-03-01 15:59:51.7757 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml -2023-03-01 15:59:51.7772 Info Copied borgzelle.yml -2023-03-01 15:59:51.7777 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml -2023-03-01 15:59:51.7788 Info Copied boxingtorrents.yml -2023-03-01 15:59:51.7788 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml -2023-03-01 15:59:51.7803 Info Copied broadcity.yml -2023-03-01 15:59:51.7807 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml -2023-03-01 15:59:51.7819 Info Copied brsociety-api.yml -2023-03-01 15:59:51.7819 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml -2023-03-01 15:59:51.7837 Info Copied bt4g.yml -2023-03-01 15:59:51.7837 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml -2023-03-01 15:59:51.7851 Info Copied btdigg.yml -2023-03-01 15:59:51.7858 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml -2023-03-01 15:59:51.7869 Info Copied btetree.yml -2023-03-01 15:59:51.7869 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml -2023-03-01 15:59:51.7884 Info Copied btmet.yml -2023-03-01 15:59:51.7888 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml -2023-03-01 15:59:51.7899 Info Copied btnext.yml -2023-03-01 15:59:51.7899 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml -2023-03-01 15:59:51.7917 Info Copied btschool.yml -2023-03-01 15:59:51.7917 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml -2023-03-01 15:59:51.7932 Info Copied btsow.yml -2023-03-01 15:59:51.7937 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml -2023-03-01 15:59:51.7948 Info Copied bulltorrent.yml -2023-03-01 15:59:51.7948 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml -2023-03-01 15:59:51.7963 Info Copied bwtorrents.yml -2023-03-01 15:59:51.7968 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml -2023-03-01 15:59:51.7979 Info Copied byrbt.yml -2023-03-01 15:59:51.7979 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml -2023-03-01 15:59:51.7995 Info Copied byrutor.yml -2023-03-01 15:59:51.8000 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml -2023-03-01 15:59:51.8011 Info Copied carpathians.yml -2023-03-01 15:59:51.8011 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml -2023-03-01 15:59:51.8027 Info Copied carphunter.yml -2023-03-01 15:59:51.8027 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml -2023-03-01 15:59:51.8041 Info Copied carpt.yml -2023-03-01 15:59:51.8041 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml -2023-03-01 15:59:51.8056 Info Copied cartoonchaos.yml -2023-03-01 15:59:51.8061 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml -2023-03-01 15:59:51.8073 Info Copied cathoderaytube.yml -2023-03-01 15:59:51.8077 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml -2023-03-01 15:59:51.8093 Info Copied catorrent.yml -2023-03-01 15:59:51.8100 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml -2023-03-01 15:59:51.8107 Info Copied ccfbits.yml -2023-03-01 15:59:51.8107 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml -2023-03-01 15:59:51.8107 Info Copied ceskeforum.yml -2023-03-01 15:59:51.8107 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml -2023-03-01 15:59:51.8120 Info Copied chdbits.yml -2023-03-01 15:59:51.8120 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml -2023-03-01 15:59:51.8127 Info Copied chilebt.yml -2023-03-01 15:59:51.8127 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml -2023-03-01 15:59:51.8127 Info Copied cinemageddon.yml -2023-03-01 15:59:51.8127 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml -2023-03-01 15:59:51.8139 Info Copied cinemamovies.yml -2023-03-01 15:59:51.8139 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml -2023-03-01 15:59:51.8139 Info Copied cinematik.yml -2023-03-01 15:59:51.8147 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml -2023-03-01 15:59:51.8147 Info Copied classix.yml -2023-03-01 15:59:51.8147 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml -2023-03-01 15:59:51.8158 Info Copied coastalcrew.yml -2023-03-01 15:59:51.8158 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml -2023-03-01 15:59:51.8158 Info Copied comicat.yml -2023-03-01 15:59:51.8158 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml -2023-03-01 15:59:51.8170 Info Copied concen.yml -2023-03-01 15:59:51.8170 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml -2023-03-01 15:59:51.8170 Info Copied concertos.yml -2023-03-01 15:59:51.8177 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml -2023-03-01 15:59:51.8177 Info Copied cpabien.yml -2023-03-01 15:59:51.8177 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml -2023-03-01 15:59:51.8188 Info Copied cpasbienclone.yml -2023-03-01 15:59:51.8188 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml -2023-03-01 15:59:51.8188 Info Copied cpasbiensi.yml -2023-03-01 15:59:51.8188 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml -2023-03-01 15:59:51.8200 Info Copied crackingpatching.yml -2023-03-01 15:59:51.8200 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml -2023-03-01 15:59:51.8200 Info Copied crazyhd.yml -2023-03-01 15:59:51.8207 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml -2023-03-01 15:59:51.8207 Info Copied crazyspirits.yml -2023-03-01 15:59:51.8207 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml -2023-03-01 15:59:51.8217 Info Copied crnaberza.yml -2023-03-01 15:59:51.8217 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml -2023-03-01 15:59:51.8217 Info Copied crt2fa.yml -2023-03-01 15:59:51.8217 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml -2023-03-01 15:59:51.8230 Info Copied danishbytes-api.yml -2023-03-01 15:59:51.8230 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml -2023-03-01 15:59:51.8230 Info Copied dariustracker.yml -2023-03-01 15:59:51.8238 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml -2023-03-01 15:59:51.8238 Info Copied dark-shadow.yml -2023-03-01 15:59:51.8238 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml -2023-03-01 15:59:51.8248 Info Copied datascene-api.yml -2023-03-01 15:59:51.8248 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml -2023-03-01 15:59:51.8248 Info Copied datatalli.yml -2023-03-01 15:59:51.8248 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml -2023-03-01 15:59:51.8259 Info Copied deildu.yml -2023-03-01 15:59:51.8259 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml -2023-03-01 15:59:51.8259 Info Copied demonoid.yml -2023-03-01 15:59:51.8267 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml -2023-03-01 15:59:51.8267 Info Copied desitorrents-api.yml -2023-03-01 15:59:51.8267 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml -2023-03-01 15:59:51.8277 Info Copied devil-torrents.yml -2023-03-01 15:59:51.8277 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml -2023-03-01 15:59:51.8277 Info Copied diablotorrent.yml -2023-03-01 15:59:51.8277 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml -2023-03-01 15:59:51.8289 Info Copied digitalcore.yml -2023-03-01 15:59:51.8289 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml -2023-03-01 15:59:51.8289 Info Copied dimeadozen.yml -2023-03-01 15:59:51.8297 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml -2023-03-01 15:59:51.8297 Info Copied discfan.yml -2023-03-01 15:59:51.8297 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml -2023-03-01 15:59:51.8307 Info Copied divteam.yml -2023-03-01 15:59:51.8307 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml -2023-03-01 15:59:51.8307 Info Copied dmhy.yml -2023-03-01 15:59:51.8307 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml -2023-03-01 15:59:51.8319 Info Copied docspedia.yml -2023-03-01 15:59:51.8319 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml -2023-03-01 15:59:51.8319 Info Copied dodder.yml -2023-03-01 15:59:51.8327 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml -2023-03-01 15:59:51.8327 Info Copied dreamtracker.yml -2023-03-01 15:59:51.8327 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml -2023-03-01 15:59:51.8327 Info Copied dxp.yml -2023-03-01 15:59:51.8338 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml -2023-03-01 15:59:51.8338 Info Copied ebookbay.yml -2023-03-01 15:59:51.8338 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml -2023-03-01 15:59:51.8348 Info Copied ebooks-shares.yml -2023-03-01 15:59:51.8348 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml -2023-03-01 15:59:51.8348 Info Copied ehentai.yml -2023-03-01 15:59:51.8348 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml -2023-03-01 15:59:51.8360 Info Copied electro-torrent.yml -2023-03-01 15:59:51.8360 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml -2023-03-01 15:59:51.8360 Info Copied empornium.yml -2023-03-01 15:59:51.8367 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml -2023-03-01 15:59:51.8367 Info Copied empornium2fa.yml -2023-03-01 15:59:51.8367 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml -2023-03-01 15:59:51.8377 Info Copied eniahd.yml -2023-03-01 15:59:51.8377 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml -2023-03-01 15:59:51.8377 Info Copied esharenet.yml -2023-03-01 15:59:51.8377 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml -2023-03-01 15:59:51.8391 Info Copied estone.yml -2023-03-01 15:59:51.8391 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml -2023-03-01 15:59:51.8391 Info Copied exkinoray.yml -2023-03-01 15:59:51.8398 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml -2023-03-01 15:59:51.8398 Info Copied extratorrent-st.yml -2023-03-01 15:59:51.8398 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml -2023-03-01 15:59:51.8408 Info Copied extremebits.yml -2023-03-01 15:59:51.8408 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml -2023-03-01 15:59:51.8408 Info Copied extremetorrents.yml -2023-03-01 15:59:51.8408 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml -2023-03-01 15:59:51.8420 Info Copied extremlymtorrents.yml -2023-03-01 15:59:51.8420 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml -2023-03-01 15:59:51.8420 Info Copied exttorrents.yml -2023-03-01 15:59:51.8427 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml -2023-03-01 15:59:51.8427 Info Copied eztv.yml -2023-03-01 15:59:51.8427 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml -2023-03-01 15:59:51.8437 Info Copied falkonvisionteam.yml -2023-03-01 15:59:51.8437 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml -2023-03-01 15:59:51.8437 Info Copied fanoin.yml -2023-03-01 15:59:51.8437 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml -2023-03-01 15:59:51.8449 Info Copied fantasticheaven.yml -2023-03-01 15:59:51.8449 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml -2023-03-01 15:59:51.8449 Info Copied fantastiko.yml -2023-03-01 15:59:51.8457 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml -2023-03-01 15:59:51.8457 Info Copied femdomcult.yml -2023-03-01 15:59:51.8457 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml -2023-03-01 15:59:51.8467 Info Copied fenyarnyek-tracker.yml -2023-03-01 15:59:51.8467 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml -2023-03-01 15:59:51.8467 Info Copied file-tracker.yml -2023-03-01 15:59:51.8467 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml -2023-03-01 15:59:51.8480 Info Copied filelisting.yml -2023-03-01 15:59:51.8480 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml -2023-03-01 15:59:51.8480 Info Copied finelite.yml -2023-03-01 15:59:51.8488 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml -2023-03-01 15:59:51.8488 Info Copied finvip.yml -2023-03-01 15:59:51.8488 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml -2023-03-01 15:59:51.8498 Info Copied firebit.yml -2023-03-01 15:59:51.8498 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml -2023-03-01 15:59:51.8498 Info Copied fluxzone.yml -2023-03-01 15:59:51.8498 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml -2023-03-01 15:59:51.8509 Info Copied freshmeat.yml -2023-03-01 15:59:51.8509 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml -2023-03-01 15:59:51.8509 Info Copied frozenlayer.yml -2023-03-01 15:59:51.8517 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml -2023-03-01 15:59:51.8517 Info Copied ftuapps.yml -2023-03-01 15:59:51.8517 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml -2023-03-01 15:59:51.8527 Info Copied funkytorrents.yml -2023-03-01 15:59:51.8527 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml -2023-03-01 15:59:51.8527 Info Copied fuzer.yml -2023-03-01 15:59:51.8527 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml -2023-03-01 15:59:51.8541 Info Copied gainbound.yml -2023-03-01 15:59:51.8541 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml -2023-03-01 15:59:51.8547 Info Copied gamestorrents.yml -2023-03-01 15:59:51.8547 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml -2023-03-01 15:59:51.8547 Info Copied gay-torrents.yml -2023-03-01 15:59:51.8547 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml -2023-03-01 15:59:51.8559 Info Copied gay-torrentsorg.yml -2023-03-01 15:59:51.8559 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml -2023-03-01 15:59:51.8559 Info Copied gaytorrentru.yml -2023-03-01 15:59:51.8566 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml -2023-03-01 15:59:51.8566 Info Copied generationfree-api.yml -2023-03-01 15:59:51.8566 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml -2023-03-01 15:59:51.8566 Info Copied genesismovement.yml -2023-03-01 15:59:51.8577 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml -2023-03-01 15:59:51.8577 Info Copied gigatorrents.yml -2023-03-01 15:59:51.8577 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml -2023-03-01 15:59:51.8587 Info Copied gimmepeers.yml -2023-03-01 15:59:51.8587 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml -2023-03-01 15:59:51.8587 Info Copied girotorrent.yml -2023-03-01 15:59:51.8587 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml -2023-03-01 15:59:51.8599 Info Copied gktorrent.yml -2023-03-01 15:59:51.8599 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml -2023-03-01 15:59:51.8599 Info Copied glodls.yml -2023-03-01 15:59:51.8599 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml -2023-03-01 15:59:51.8610 Info Copied greekdiamond.yml -2023-03-01 15:59:51.8610 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml -2023-03-01 15:59:51.8610 Info Copied greekteam.yml -2023-03-01 15:59:51.8617 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml -2023-03-01 15:59:51.8617 Info Copied gtorrentpro.yml -2023-03-01 15:59:51.8617 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml -2023-03-01 15:59:51.8627 Info Copied haidan.yml -2023-03-01 15:59:51.8627 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml -2023-03-01 15:59:51.8627 Info Copied haitang.yml -2023-03-01 15:59:51.8627 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml -2023-03-01 15:59:51.8639 Info Copied happyfappy.yml -2023-03-01 15:59:51.8639 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml -2023-03-01 15:59:51.8639 Info Copied hawke-uno.yml -2023-03-01 15:59:51.8647 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml -2023-03-01 15:59:51.8647 Info Copied hd-unit3d-api.yml -2023-03-01 15:59:51.8647 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml -2023-03-01 15:59:51.8657 Info Copied hd4fans.yml -2023-03-01 15:59:51.8657 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml -2023-03-01 15:59:51.8657 Info Copied hdarea.yml -2023-03-01 15:59:51.8657 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml -2023-03-01 15:59:51.8669 Info Copied hdatmos.yml -2023-03-01 15:59:51.8669 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml -2023-03-01 15:59:51.8669 Info Copied hdc.yml -2023-03-01 15:59:51.8669 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml -2023-03-01 15:59:51.8680 Info Copied hdchina.yml -2023-03-01 15:59:51.8680 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml -2023-03-01 15:59:51.8680 Info Copied hdcztorrent.yml -2023-03-01 15:59:51.8688 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml -2023-03-01 15:59:51.8688 Info Copied hddolby.yml -2023-03-01 15:59:51.8688 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml -2023-03-01 15:59:51.8699 Info Copied hdfans.yml -2023-03-01 15:59:51.8699 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml -2023-03-01 15:59:51.8699 Info Copied hdforever.yml -2023-03-01 15:59:51.8699 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml -2023-03-01 15:59:51.8710 Info Copied hdgalaktik.yml -2023-03-01 15:59:51.8710 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml -2023-03-01 15:59:51.8710 Info Copied hdhome.yml -2023-03-01 15:59:51.8718 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml -2023-03-01 15:59:51.8718 Info Copied hdmayi.yml -2023-03-01 15:59:51.8718 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml -2023-03-01 15:59:51.8727 Info Copied hdmonkey.yml -2023-03-01 15:59:51.8727 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml -2023-03-01 15:59:51.8727 Info Copied hdolimpo-api.yml -2023-03-01 15:59:51.8727 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml -2023-03-01 15:59:51.8739 Info Copied hdonly.yml -2023-03-01 15:59:51.8739 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml -2023-03-01 15:59:51.8739 Info Copied hdroute.yml -2023-03-01 15:59:51.8739 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml -2023-03-01 15:59:51.8750 Info Copied hdsky.yml -2023-03-01 15:59:51.8750 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml -2023-03-01 15:59:51.8764 Info Copied hdtime.yml -2023-03-01 15:59:51.8769 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml -2023-03-01 15:59:51.8780 Info Copied hdtorrentsit.yml -2023-03-01 15:59:51.8780 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml -2023-03-01 15:59:51.8794 Info Copied hdturk.yml -2023-03-01 15:59:51.8800 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml -2023-03-01 15:59:51.8810 Info Copied hdu.yml -2023-03-01 15:59:51.8810 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml -2023-03-01 15:59:51.8824 Info Copied hdzone.yml -2023-03-01 15:59:51.8828 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml -2023-03-01 15:59:51.8838 Info Copied hebits.yml -2023-03-01 15:59:51.8838 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml -2023-03-01 15:59:51.8851 Info Copied hellashut.yml -2023-03-01 15:59:51.8851 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml -2023-03-01 15:59:51.8865 Info Copied hhanclub.yml -2023-03-01 15:59:51.8869 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml -2023-03-01 15:59:51.8879 Info Copied houseofdevil.yml -2023-03-01 15:59:51.8879 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml -2023-03-01 15:59:51.8894 Info Copied hqmusic.yml -2023-03-01 15:59:51.8899 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml -2023-03-01 15:59:51.8909 Info Copied huntorrent.yml -2023-03-01 15:59:51.8909 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml -2023-03-01 15:59:51.8923 Info Copied icc2022.yml -2023-03-01 15:59:51.8928 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml -2023-03-01 15:59:51.8937 Info Copied idope.yml -2023-03-01 15:59:51.8937 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml -2023-03-01 15:59:51.8951 Info Copied ihdbits.yml -2023-03-01 15:59:51.8951 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml -2023-03-01 15:59:51.8965 Info Copied ilcorsaroblu.yml -2023-03-01 15:59:51.8970 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml -2023-03-01 15:59:51.8981 Info Copied ilcorsaronero.yml -2023-03-01 15:59:51.8981 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml -2023-03-01 15:59:51.8995 Info Copied immortuos.yml -2023-03-01 15:59:51.9000 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml -2023-03-01 15:59:51.9010 Info Copied indietorrents.yml -2023-03-01 15:59:51.9010 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml -2023-03-01 15:59:51.9024 Info Copied insanetracker.yml -2023-03-01 15:59:51.9029 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml -2023-03-01 15:59:51.9038 Info Copied internetarchive.yml -2023-03-01 15:59:51.9038 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml -2023-03-01 15:59:51.9052 Info Copied isohunt2.yml -2023-03-01 15:59:51.9057 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml -2023-03-01 15:59:51.9067 Info Copied itorrent.yml -2023-03-01 15:59:51.9067 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml -2023-03-01 15:59:51.9081 Info Copied jav-torrent.yml -2023-03-01 15:59:51.9081 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml -2023-03-01 15:59:51.9094 Info Copied jme-reunit3d-api.yml -2023-03-01 15:59:51.9098 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml -2023-03-01 15:59:51.9108 Info Copied joyhd.yml -2023-03-01 15:59:51.9108 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml -2023-03-01 15:59:51.9121 Info Copied jpopsuki.yml -2023-03-01 15:59:51.9121 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml -2023-03-01 15:59:51.9135 Info Copied jptv.yml -2023-03-01 15:59:51.9140 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml -2023-03-01 15:59:51.9150 Info Copied karagarga.yml -2023-03-01 15:59:51.9150 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml -2023-03-01 15:59:51.9164 Info Copied keepfriends.yml -2023-03-01 15:59:51.9169 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml -2023-03-01 15:59:51.9178 Info Copied kickasstorrents-to.yml -2023-03-01 15:59:51.9178 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml -2023-03-01 15:59:51.9193 Info Copied kickasstorrents-ws.yml -2023-03-01 15:59:51.9197 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml -2023-03-01 15:59:51.9207 Info Copied kinorun.yml -2023-03-01 15:59:51.9207 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml -2023-03-01 15:59:51.9221 Info Copied kinozal.yml -2023-03-01 15:59:51.9221 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml -2023-03-01 15:59:51.9235 Info Copied knaben.yml -2023-03-01 15:59:51.9240 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml -2023-03-01 15:59:51.9253 Info Copied korsar.yml -2023-03-01 15:59:51.9257 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml -2023-03-01 15:59:51.9268 Info Copied krazyzone.yml -2023-03-01 15:59:51.9268 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml -2023-03-01 15:59:51.9282 Info Copied kufirc.yml -2023-03-01 15:59:51.9287 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml -2023-03-01 15:59:51.9287 Info Copied lastfiles.yml -2023-03-01 15:59:51.9301 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml -2023-03-01 15:59:51.9311 Info Copied lat-team-api.yml -2023-03-01 15:59:51.9311 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml -2023-03-01 15:59:51.9326 Info Copied learnbits.yml -2023-03-01 15:59:51.9331 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml -2023-03-01 15:59:51.9340 Info Copied learnflakes.yml -2023-03-01 15:59:51.9347 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml -2023-03-01 15:59:51.9347 Info Copied leech24.yml -2023-03-01 15:59:51.9361 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml -2023-03-01 15:59:51.9370 Info Copied lemonhd.yml -2023-03-01 15:59:51.9370 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml -2023-03-01 15:59:51.9384 Info Copied lepornoinfo.yml -2023-03-01 15:59:51.9389 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml -2023-03-01 15:59:51.9399 Info Copied les-cinephiles.yml -2023-03-01 15:59:51.9399 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml -2023-03-01 15:59:51.9413 Info Copied lesaloon.yml -2023-03-01 15:59:51.9419 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml -2023-03-01 15:59:51.9429 Info Copied libranet.yml -2023-03-01 15:59:51.9429 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml -2023-03-01 15:59:51.9443 Info Copied limetorrents.yml -2023-03-01 15:59:51.9448 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml -2023-03-01 15:59:51.9457 Info Copied limetorrentsclone.yml -2023-03-01 15:59:51.9457 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml -2023-03-01 15:59:51.9471 Info Copied linkomanija.yml -2023-03-01 15:59:51.9471 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml -2023-03-01 15:59:51.9486 Info Copied linuxtracker.yml -2023-03-01 15:59:51.9491 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml -2023-03-01 15:59:51.9500 Info Copied locadora.yml -2023-03-01 15:59:51.9500 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml -2023-03-01 15:59:51.9514 Info Copied losslessclub.yml -2023-03-01 15:59:51.9519 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml -2023-03-01 15:59:51.9528 Info Copied lst.yml -2023-03-01 15:59:51.9528 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml -2023-03-01 15:59:51.9542 Info Copied mactorrentsdownload.yml -2023-03-01 15:59:51.9542 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml -2023-03-01 15:59:51.9555 Info Copied madsrevolution.yml -2023-03-01 15:59:51.9560 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml -2023-03-01 15:59:51.9570 Info Copied magicheaven.yml -2023-03-01 15:59:51.9570 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml -2023-03-01 15:59:51.9584 Info Copied magico.yml -2023-03-01 15:59:51.9588 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml -2023-03-01 15:59:51.9598 Info Copied majomparade.yml -2023-03-01 15:59:51.9598 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml -2023-03-01 15:59:51.9611 Info Copied marinetracker.yml -2023-03-01 15:59:51.9611 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml -2023-03-01 15:59:51.9626 Info Copied mazepa.yml -2023-03-01 15:59:51.9630 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml -2023-03-01 15:59:51.9640 Info Copied megamixtracker.yml -2023-03-01 15:59:51.9640 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml -2023-03-01 15:59:51.9653 Info Copied megapeer.yml -2023-03-01 15:59:51.9659 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml -2023-03-01 15:59:51.9669 Info Copied mesevilag.yml -2023-03-01 15:59:51.9669 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml -2023-03-01 15:59:51.9682 Info Copied metaltracker.yml -2023-03-01 15:59:51.9682 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml -2023-03-01 15:59:51.9695 Info Copied mikan.yml -2023-03-01 15:59:51.9700 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml -2023-03-01 15:59:51.9709 Info Copied milkie.yml -2023-03-01 15:59:51.9709 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml -2023-03-01 15:59:51.9722 Info Copied miobt.yml -2023-03-01 15:59:51.9727 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml -2023-03-01 15:59:51.9727 Info Copied mircrew.yml -2023-03-01 15:59:51.9740 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml -2023-03-01 15:59:51.9750 Info Copied mixtapetorrent.yml -2023-03-01 15:59:51.9750 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml -2023-03-01 15:59:51.9763 Info Copied mma-torrents.yml -2023-03-01 15:59:51.9769 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml -2023-03-01 15:59:51.9780 Info Copied mnv.yml -2023-03-01 15:59:51.9780 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml -2023-03-01 15:59:51.9794 Info Copied mojblink.yml -2023-03-01 15:59:51.9799 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml -2023-03-01 15:59:51.9808 Info Copied mousebits.yml -2023-03-01 15:59:51.9808 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml -2023-03-01 15:59:51.9821 Info Copied moviesdvdr.yml -2023-03-01 15:59:51.9821 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml -2023-03-01 15:59:51.9835 Info Copied moviesite.yml -2023-03-01 15:59:51.9842 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml -2023-03-01 15:59:51.9851 Info Copied movietorrent.yml -2023-03-01 15:59:51.9851 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml -2023-03-01 15:59:51.9864 Info Copied movietorrentz.yml -2023-03-01 15:59:51.9868 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml -2023-03-01 15:59:51.9878 Info Copied mteamtp.yml -2023-03-01 15:59:51.9878 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml -2023-03-01 15:59:51.9892 Info Copied mteamtp2fa.yml -2023-03-01 15:59:51.9892 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml -2023-03-01 15:59:51.9906 Info Copied muziekfabriek.yml -2023-03-01 15:59:51.9910 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml -2023-03-01 15:59:51.9920 Info Copied mvgroupforum.yml -2023-03-01 15:59:51.9920 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml -2023-03-01 15:59:51.9933 Info Copied mvgroupmain.yml -2023-03-01 15:59:51.9937 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml -2023-03-01 15:59:51.9947 Info Copied mypornclub.yml -2023-03-01 15:59:51.9947 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml -2023-03-01 15:59:51.9961 Info Copied myspleen.yml -2023-03-01 15:59:51.9961 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml -2023-03-01 15:59:51.9975 Info Copied nethd.yml -2023-03-01 15:59:51.9979 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml -2023-03-01 15:59:51.9989 Info Copied newretro.yml -2023-03-01 15:59:51.9989 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml -2023-03-01 15:59:52.0004 Info Copied newstudio.yml -2023-03-01 15:59:52.0008 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml -2023-03-01 15:59:52.0017 Info Copied newstudiol.yml -2023-03-01 15:59:52.0017 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml -2023-03-01 15:59:52.0030 Info Copied nicept.yml -2023-03-01 15:59:52.0030 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml -2023-03-01 15:59:52.0042 Info Copied nipponsei.yml -2023-03-01 15:59:52.0042 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml -2023-03-01 15:59:52.0058 Info Copied nntt.yml -2023-03-01 15:59:52.0058 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml -2023-03-01 15:59:52.0074 Info Copied noname-club.yml -2023-03-01 15:59:52.0078 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml -2023-03-01 15:59:52.0089 Info Copied noname-clubl.yml -2023-03-01 15:59:52.0089 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml -2023-03-01 15:59:52.0103 Info Copied nyaasi.yml -2023-03-01 15:59:52.0108 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml -2023-03-01 15:59:52.0118 Info Copied oldtoonsworld.yml -2023-03-01 15:59:52.0118 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml -2023-03-01 15:59:52.0131 Info Copied onejav.yml -2023-03-01 15:59:52.0131 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml -2023-03-01 15:59:52.0144 Info Copied opencd.yml -2023-03-01 15:59:52.0149 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml -2023-03-01 15:59:52.0159 Info Copied oshenpt.yml -2023-03-01 15:59:52.0159 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml -2023-03-01 15:59:52.0173 Info Copied ourbits.yml -2023-03-01 15:59:52.0177 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml -2023-03-01 15:59:52.0187 Info Copied p2pbg.yml -2023-03-01 15:59:52.0187 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml -2023-03-01 15:59:52.0202 Info Copied parnuxi.yml -2023-03-01 15:59:52.0202 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml -2023-03-01 15:59:52.0216 Info Copied partis.yml -2023-03-01 15:59:52.0221 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml -2023-03-01 15:59:52.0230 Info Copied pctorrent.yml -2023-03-01 15:59:52.0230 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml -2023-03-01 15:59:52.0244 Info Copied peeratiko.yml -2023-03-01 15:59:52.0248 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml -2023-03-01 15:59:52.0257 Info Copied peersfm.yml -2023-03-01 15:59:52.0257 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml -2023-03-01 15:59:52.0349 Info Copied pier720.yml -2023-03-01 15:59:52.0349 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml -2023-03-01 15:59:52.0362 Info Copied pignetwork.yml -2023-03-01 15:59:52.0362 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml -2023-03-01 15:59:52.0376 Info Copied piratbit.yml -2023-03-01 15:59:52.0380 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml -2023-03-01 15:59:52.0391 Info Copied piratbitl.yml -2023-03-01 15:59:52.0391 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml -2023-03-01 15:59:52.0403 Info Copied pixelcove.yml -2023-03-01 15:59:52.0407 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml -2023-03-01 15:59:52.0407 Info Copied pixelcove2fa.yml -2023-03-01 15:59:52.0420 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml -2023-03-01 15:59:52.0430 Info Copied polishsource.yml -2023-03-01 15:59:52.0430 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml -2023-03-01 15:59:52.0442 Info Copied polishtracker-api.yml -2023-03-01 15:59:52.0442 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml -2023-03-01 15:59:52.0455 Info Copied pornbay.yml -2023-03-01 15:59:52.0459 Info Attempting to copy pornforall.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pornforall.yml to destination: /app/Jackett/Definitions/pornforall.yml -2023-03-01 15:59:52.0469 Info Copied pornforall.yml -2023-03-01 15:59:52.0469 Info Attempting to copy pornleech.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pornleech.yml to destination: /app/Jackett/Definitions/pornleech.yml -2023-03-01 15:59:52.0481 Info Copied pornleech.yml -2023-03-01 15:59:52.0481 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml -2023-03-01 15:59:52.0493 Info Copied pornoslab.yml -2023-03-01 15:59:52.0497 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml -2023-03-01 15:59:52.0497 Info Copied pornotorrent.yml -2023-03-01 15:59:52.0509 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml -2023-03-01 15:59:52.0519 Info Copied portugas-api.yml -2023-03-01 15:59:52.0519 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml -2023-03-01 15:59:52.0534 Info Copied potuk.yml -2023-03-01 15:59:52.0538 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml -2023-03-01 15:59:52.0547 Info Copied proaudiotorrents.yml -2023-03-01 15:59:52.0547 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml -2023-03-01 15:59:52.0559 Info Copied proporno.yml -2023-03-01 15:59:52.0559 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml -2023-03-01 15:59:52.0572 Info Copied ptchina.yml -2023-03-01 15:59:52.0572 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml -2023-03-01 15:59:52.0584 Info Copied pterclub.yml -2023-03-01 15:59:52.0589 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml -2023-03-01 15:59:52.0597 Info Copied ptfiles.yml -2023-03-01 15:59:52.0597 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml -2023-03-01 15:59:52.0609 Info Copied pthome.yml -2023-03-01 15:59:52.0609 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml -2023-03-01 15:59:52.0622 Info Copied ptmsg.yml -2023-03-01 15:59:52.0622 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml -2023-03-01 15:59:52.0635 Info Copied ptsbao.yml -2023-03-01 15:59:52.0639 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml -2023-03-01 15:59:52.0648 Info Copied pttime.yml -2023-03-01 15:59:52.0648 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml -2023-03-01 15:59:52.0660 Info Copied punkshorror.yml -2023-03-01 15:59:52.0660 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml -2023-03-01 15:59:52.0673 Info Copied puntotorrent.yml -2023-03-01 15:59:52.0673 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml -2023-03-01 15:59:52.0685 Info Copied pussytorrents.yml -2023-03-01 15:59:52.0689 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml -2023-03-01 15:59:52.0697 Info Copied putao.yml -2023-03-01 15:59:52.0697 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml -2023-03-01 15:59:52.0710 Info Copied puurhollands.yml -2023-03-01 15:59:52.0710 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml -2023-03-01 15:59:52.0722 Info Copied pwtorrents.yml -2023-03-01 15:59:52.0722 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml -2023-03-01 15:59:52.0735 Info Copied r3vwtf.yml -2023-03-01 15:59:52.0739 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml -2023-03-01 15:59:52.0750 Info Copied racing4everyone-api.yml -2023-03-01 15:59:52.0750 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml -2023-03-01 15:59:52.0763 Info Copied racingforme.yml -2023-03-01 15:59:52.0767 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml -2023-03-01 15:59:52.0767 Info Copied rainbowtracker.yml -2023-03-01 15:59:52.0779 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml -2023-03-01 15:59:52.0788 Info Copied rapidzona.yml -2023-03-01 15:59:52.0788 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml -2023-03-01 15:59:52.0801 Info Copied redbits-api.yml -2023-03-01 15:59:52.0801 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml -2023-03-01 15:59:52.0813 Info Copied redstartorrent.yml -2023-03-01 15:59:52.0817 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml -2023-03-01 15:59:52.0817 Info Copied reelflix-api.yml -2023-03-01 15:59:52.0830 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml -2023-03-01 15:59:52.0839 Info Copied resurrectthenet.yml -2023-03-01 15:59:52.0839 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml -2023-03-01 15:59:52.0853 Info Copied rgfootball.yml -2023-03-01 15:59:52.0853 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml -2023-03-01 15:59:52.0865 Info Copied rintor.yml -2023-03-01 15:59:52.0869 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml -2023-03-01 15:59:52.0878 Info Copied rintornet.yml -2023-03-01 15:59:52.0878 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml -2023-03-01 15:59:52.0893 Info Copied riperam.yml -2023-03-01 15:59:52.0898 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml -2023-03-01 15:59:52.0908 Info Copied rockbox.yml -2023-03-01 15:59:52.0908 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml -2023-03-01 15:59:52.0921 Info Copied romanianmetaltorrents.yml -2023-03-01 15:59:52.0921 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml -2023-03-01 15:59:52.0934 Info Copied rptorrents.yml -2023-03-01 15:59:52.0938 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml -2023-03-01 15:59:52.0949 Info Copied rudub.yml -2023-03-01 15:59:52.0949 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml -2023-03-01 15:59:52.0964 Info Copied rus-media.yml -2023-03-01 15:59:52.0968 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml -2023-03-01 15:59:52.0981 Info Copied rustorka.yml -2023-03-01 15:59:52.0981 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml -2023-03-01 15:59:52.0995 Info Copied rutor.yml -2023-03-01 15:59:52.1000 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml -2023-03-01 15:59:52.1011 Info Copied rutracker-ru.yml -2023-03-01 15:59:52.1011 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml -2023-03-01 15:59:52.1025 Info Copied satclubbing.yml -2023-03-01 15:59:52.1029 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml -2023-03-01 15:59:52.1039 Info Copied scenerush.yml -2023-03-01 15:59:52.1039 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml -2023-03-01 15:59:52.1052 Info Copied sdbits.yml -2023-03-01 15:59:52.1057 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml -2023-03-01 15:59:52.1057 Info Copied seedfile.yml -2023-03-01 15:59:52.1070 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml -2023-03-01 15:59:52.1081 Info Copied seedoff.yml -2023-03-01 15:59:52.1081 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml -2023-03-01 15:59:52.1094 Info Copied selezen.yml -2023-03-01 15:59:52.1098 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml -2023-03-01 15:59:52.1108 Info Copied sexypics.yml -2023-03-01 15:59:52.1108 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml -2023-03-01 15:59:52.1123 Info Copied shanaproject.yml -2023-03-01 15:59:52.1127 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml -2023-03-01 15:59:52.1138 Info Copied shareisland-api.yml -2023-03-01 15:59:52.1138 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml -2023-03-01 15:59:52.1151 Info Copied sharewood.yml -2023-03-01 15:59:52.1151 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml -2023-03-01 15:59:52.1166 Info Copied sharkpt.yml -2023-03-01 15:59:52.1170 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml -2023-03-01 15:59:52.1180 Info Copied showrss.yml -2023-03-01 15:59:52.1180 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml -2023-03-01 15:59:52.1194 Info Copied siambit.yml -2023-03-01 15:59:52.1199 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml -2023-03-01 15:59:52.1209 Info Copied skipthecommercials-api.yml -2023-03-01 15:59:52.1209 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml -2023-03-01 15:59:52.1221 Info Copied skipthetrailers.yml -2023-03-01 15:59:52.1221 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml -2023-03-01 15:59:52.1235 Info Copied sktorrent-org.yml -2023-03-01 15:59:52.1239 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml -2023-03-01 15:59:52.1248 Info Copied sktorrent.yml -2023-03-01 15:59:52.1248 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml -2023-03-01 15:59:52.1261 Info Copied slosoul.yml -2023-03-01 15:59:52.1261 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml -2023-03-01 15:59:52.1275 Info Copied snowpt.yml -2023-03-01 15:59:52.1279 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml -2023-03-01 15:59:52.1288 Info Copied solidtorrents.yml -2023-03-01 15:59:52.1288 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml -2023-03-01 15:59:52.1301 Info Copied sosulki.yml -2023-03-01 15:59:52.1301 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml -2023-03-01 15:59:52.1317 Info Copied soulvoice.yml -2023-03-01 15:59:52.1317 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml -2023-03-01 15:59:52.1330 Info Copied speedmasterhd.yml -2023-03-01 15:59:52.1330 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml -2023-03-01 15:59:52.1342 Info Copied speedtorrentreloaded.yml -2023-03-01 15:59:52.1347 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml -2023-03-01 15:59:52.1347 Info Copied spidertk.yml -2023-03-01 15:59:52.1361 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml -2023-03-01 15:59:52.1371 Info Copied spiritofrevolution.yml -2023-03-01 15:59:52.1371 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml -2023-03-01 15:59:52.1384 Info Copied sporthd.yml -2023-03-01 15:59:52.1388 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml -2023-03-01 15:59:52.1398 Info Copied sportscult.yml -2023-03-01 15:59:52.1398 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml -2023-03-01 15:59:52.1410 Info Copied springsunday.yml -2023-03-01 15:59:52.1410 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml -2023-03-01 15:59:52.1424 Info Copied sugoimusic.yml -2023-03-01 15:59:52.1428 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml -2023-03-01 15:59:52.1438 Info Copied sukebeinyaasi.yml -2023-03-01 15:59:52.1438 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml -2023-03-01 15:59:52.1451 Info Copied superbits.yml -2023-03-01 15:59:52.1451 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml -2023-03-01 15:59:52.1463 Info Copied swarmazon-api.yml -2023-03-01 15:59:52.1482 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml -2023-03-01 15:59:52.1494 Info Copied tapochek.yml -2023-03-01 15:59:52.1499 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml -2023-03-01 15:59:52.1509 Info Copied tasmanit.yml -2023-03-01 15:59:52.1509 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml -2023-03-01 15:59:52.1523 Info Copied teamctgame.yml -2023-03-01 15:59:52.1527 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml -2023-03-01 15:59:52.1537 Info Copied teamhd.yml -2023-03-01 15:59:52.1537 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml -2023-03-01 15:59:52.1551 Info Copied teamos.yml -2023-03-01 15:59:52.1551 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml -2023-03-01 15:59:52.1564 Info Copied tekno3d.yml -2023-03-01 15:59:52.1568 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml -2023-03-01 15:59:52.1578 Info Copied tellytorrent-api.yml -2023-03-01 15:59:52.1578 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml -2023-03-01 15:59:52.1592 Info Copied teracod.yml -2023-03-01 15:59:52.1592 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml -2023-03-01 15:59:52.1606 Info Copied the-crazy-ones.yml -2023-03-01 15:59:52.1610 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml -2023-03-01 15:59:52.1619 Info Copied thedarkcommunity-api.yml -2023-03-01 15:59:52.1619 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml -2023-03-01 15:59:52.1633 Info Copied theempire.yml -2023-03-01 15:59:52.1637 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml -2023-03-01 15:59:52.1647 Info Copied thefallingangels.yml -2023-03-01 15:59:52.1647 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml -2023-03-01 15:59:52.1661 Info Copied thegeeks.yml -2023-03-01 15:59:52.1661 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml -2023-03-01 15:59:52.1675 Info Copied theleachzone.yml -2023-03-01 15:59:52.1679 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml -2023-03-01 15:59:52.1688 Info Copied themixingbowl.yml -2023-03-01 15:59:52.1688 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml -2023-03-01 15:59:52.1702 Info Copied thenewfun.yml -2023-03-01 15:59:52.1702 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml -2023-03-01 15:59:52.1716 Info Copied theoccult.yml -2023-03-01 15:59:52.1720 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml -2023-03-01 15:59:52.1730 Info Copied theoldschool-api.yml -2023-03-01 15:59:52.1730 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml -2023-03-01 15:59:52.1744 Info Copied thepiratebay.yml -2023-03-01 15:59:52.1748 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml -2023-03-01 15:59:52.1758 Info Copied theplace.yml -2023-03-01 15:59:52.1758 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml -2023-03-01 15:59:52.1771 Info Copied thesceneplace.yml -2023-03-01 15:59:52.1771 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml -2023-03-01 15:59:52.1784 Info Copied theshinning-api.yml -2023-03-01 15:59:52.1790 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml -2023-03-01 15:59:52.1800 Info Copied theshow.yml -2023-03-01 15:59:52.1800 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml -2023-03-01 15:59:52.1813 Info Copied thevault.yml -2023-03-01 15:59:52.1817 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml -2023-03-01 15:59:52.1827 Info Copied tjupt.yml -2023-03-01 15:59:52.1827 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml -2023-03-01 15:59:52.1843 Info Copied tlfbits.yml -2023-03-01 15:59:52.1847 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml -2023-03-01 15:59:52.1858 Info Copied tmghub.yml -2023-03-01 15:59:52.1858 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml -2023-03-01 15:59:52.1872 Info Copied tokyotosho.yml -2023-03-01 15:59:52.1872 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml -2023-03-01 15:59:52.1886 Info Copied torlock.yml -2023-03-01 15:59:52.1890 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml -2023-03-01 15:59:52.1899 Info Copied tornado.yml -2023-03-01 15:59:52.1899 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml -2023-03-01 15:59:52.1913 Info Copied torrent-explosiv.yml -2023-03-01 15:59:52.1917 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml -2023-03-01 15:59:52.1927 Info Copied torrent-pirat.yml -2023-03-01 15:59:52.1927 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml -2023-03-01 15:59:52.1940 Info Copied torrent-turk.yml -2023-03-01 15:59:52.1940 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml -2023-03-01 15:59:52.1954 Info Copied torrent9.yml -2023-03-01 15:59:52.1959 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml -2023-03-01 15:59:52.1969 Info Copied torrent911.yml -2023-03-01 15:59:52.1969 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml -2023-03-01 15:59:52.1983 Info Copied torrent9clone.yml -2023-03-01 15:59:52.1987 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml -2023-03-01 15:59:52.1997 Info Copied torrentbd.yml -2023-03-01 15:59:52.1997 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml -2023-03-01 15:59:52.2011 Info Copied torrentby.yml -2023-03-01 15:59:52.2011 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml -2023-03-01 15:59:52.2025 Info Copied torrentccf.yml -2023-03-01 15:59:52.2029 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml -2023-03-01 15:59:52.2039 Info Copied torrentcore.yml -2023-03-01 15:59:52.2039 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml -2023-03-01 15:59:52.2054 Info Copied torrentdownload.yml -2023-03-01 15:59:52.2058 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml -2023-03-01 15:59:52.2058 Info Copied torrentdownloads.yml -2023-03-01 15:59:52.2069 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml -2023-03-01 15:59:52.2069 Info Copied torrentfunk.yml -2023-03-01 15:59:52.2080 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml -2023-03-01 15:59:52.2088 Info Copied torrentgalaxy.yml -2023-03-01 15:59:52.2088 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml -2023-03-01 15:59:52.2099 Info Copied torrenthr.yml -2023-03-01 15:59:52.2099 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml -2023-03-01 15:59:52.2111 Info Copied torrenting.yml -2023-03-01 15:59:52.2111 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml -2023-03-01 15:59:52.2122 Info Copied torrentkitty.yml -2023-03-01 15:59:52.2122 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml -2023-03-01 15:59:52.2134 Info Copied torrentland.yml -2023-03-01 15:59:52.2177 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml -2023-03-01 15:59:52.2187 Info Copied torrentleech-pl.yml -2023-03-01 15:59:52.2187 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml -2023-03-01 15:59:52.2198 Info Copied torrentleech.yml -2023-03-01 15:59:52.2198 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml -2023-03-01 15:59:52.2209 Info Copied torrentlt.yml -2023-03-01 15:59:52.2209 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml -2023-03-01 15:59:52.2221 Info Copied torrentmasters.yml -2023-03-01 15:59:52.2221 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml -2023-03-01 15:59:52.2233 Info Copied torrentoyunindir.yml -2023-03-01 15:59:52.2233 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml -2023-03-01 15:59:52.2244 Info Copied torrentproject2.yml -2023-03-01 15:59:52.2248 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml -2023-03-01 15:59:52.2248 Info Copied torrentqq.yml -2023-03-01 15:59:52.2260 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml -2023-03-01 15:59:52.2269 Info Copied torrentsectorcrew.yml -2023-03-01 15:59:52.2269 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml -2023-03-01 15:59:52.2281 Info Copied torrentseeds-api.yml -2023-03-01 15:59:52.2281 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml -2023-03-01 15:59:52.2292 Info Copied torrentsir.yml -2023-03-01 15:59:52.2292 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml -2023-03-01 15:59:52.2304 Info Copied torrentslocal.yml -2023-03-01 15:59:52.2308 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml -2023-03-01 15:59:52.2308 Info Copied torrentv.yml -2023-03-01 15:59:52.2318 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml -2023-03-01 15:59:52.2318 Info Copied torrentview.yml -2023-03-01 15:59:52.2329 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml -2023-03-01 15:59:52.2337 Info Copied torrentwhiz.yml -2023-03-01 15:59:52.2337 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml -2023-03-01 15:59:52.2347 Info Copied torrentz2eu.yml -2023-03-01 15:59:52.2347 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml -2023-03-01 15:59:52.2359 Info Copied torrentz2nz.yml -2023-03-01 15:59:52.2359 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml -2023-03-01 15:59:52.2371 Info Copied totallykids.yml -2023-03-01 15:59:52.2371 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml -2023-03-01 15:59:52.2382 Info Copied totheglory.yml -2023-03-01 15:59:52.2382 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml -2023-03-01 15:59:52.2394 Info Copied totheglorycookie.yml -2023-03-01 15:59:52.2397 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml -2023-03-01 15:59:52.2397 Info Copied traht.yml -2023-03-01 15:59:52.2408 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml -2023-03-01 15:59:52.2408 Info Copied trancetraffic.yml -2023-03-01 15:59:52.2419 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml -2023-03-01 15:59:52.2427 Info Copied trezzor.yml -2023-03-01 15:59:52.2427 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml -2023-03-01 15:59:52.2437 Info Copied tribalmixes.yml -2023-03-01 15:59:52.2437 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml -2023-03-01 15:59:52.2448 Info Copied trupornolabs.yml -2023-03-01 15:59:52.2448 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml -2023-03-01 15:59:52.2459 Info Copied turkseed.yml -2023-03-01 15:59:52.2459 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml -2023-03-01 15:59:52.2470 Info Copied turktorrent.yml -2023-03-01 15:59:52.2470 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml -2023-03-01 15:59:52.2482 Info Copied tvchaosuk.yml -2023-03-01 15:59:52.2482 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml -2023-03-01 15:59:52.2493 Info Copied tvroad.yml -2023-03-01 15:59:52.2493 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml -2023-03-01 15:59:52.2505 Info Copied twilight.yml -2023-03-01 15:59:52.2508 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml -2023-03-01 15:59:52.2508 Info Copied u2.yml -2023-03-01 15:59:52.2519 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml -2023-03-01 15:59:52.2527 Info Copied uhdbits.yml -2023-03-01 15:59:52.2527 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml -2023-03-01 15:59:52.2540 Info Copied uniondht.yml -2023-03-01 15:59:52.2540 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml -2023-03-01 15:59:52.2550 Info Copied unionfansub.yml -2023-03-01 15:59:52.2550 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml -2023-03-01 15:59:52.2561 Info Copied uniongang.yml -2023-03-01 15:59:52.2561 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml -2023-03-01 15:59:52.2572 Info Copied unleashthecartoons.yml -2023-03-01 15:59:52.2572 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml -2023-03-01 15:59:52.2584 Info Copied unlimitz.yml -2023-03-01 15:59:52.2588 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml -2023-03-01 15:59:52.2588 Info Copied vsthouse.yml -2023-03-01 15:59:52.2599 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml -2023-03-01 15:59:52.2607 Info Copied vsttorrents.yml -2023-03-01 15:59:52.2607 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml -2023-03-01 15:59:52.2618 Info Copied vtorrent.yml -2023-03-01 15:59:52.2618 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml -2023-03-01 15:59:52.2629 Info Copied whiteangel.yml -2023-03-01 15:59:52.2629 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml -2023-03-01 15:59:52.2640 Info Copied wihd.yml -2023-03-01 15:59:52.2640 Info Attempting to copy woot.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/woot.yml to destination: /app/Jackett/Definitions/woot.yml -2023-03-01 15:59:52.2652 Info Copied woot.yml -2023-03-01 15:59:52.2652 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml -2023-03-01 15:59:52.2663 Info Copied world-of-tomorrow.yml -2023-03-01 15:59:52.2667 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml -2023-03-01 15:59:52.2667 Info Copied x-ite.me.yml -2023-03-01 15:59:52.2679 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml -2023-03-01 15:59:52.2689 Info Copied xbytes2.yml -2023-03-01 15:59:52.2689 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml -2023-03-01 15:59:52.2700 Info Copied xthor-api.yml -2023-03-01 15:59:52.2700 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml -2023-03-01 15:59:52.2712 Info Copied xtorrenty.yml -2023-03-01 15:59:52.2712 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml -2023-03-01 15:59:52.2724 Info Copied xtremebytes.yml -2023-03-01 15:59:52.2728 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml -2023-03-01 15:59:52.2728 Info Copied xwtclassics.yml -2023-03-01 15:59:52.2739 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml -2023-03-01 15:59:52.2747 Info Copied xwtorrents.yml -2023-03-01 15:59:52.2747 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml -2023-03-01 15:59:52.2758 Info Copied xxxadulttorrent.yml -2023-03-01 15:59:52.2758 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml -2023-03-01 15:59:52.2770 Info Copied xxxtor.yml -2023-03-01 15:59:52.2770 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml -2023-03-01 15:59:52.2781 Info Copied xxxtorrents.yml -2023-03-01 15:59:52.2781 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml -2023-03-01 15:59:52.2793 Info Copied ydypt.yml -2023-03-01 15:59:52.2793 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml -2023-03-01 15:59:52.2805 Info Copied yggcookie.yml -2023-03-01 15:59:52.2808 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml -2023-03-01 15:59:52.2817 Info Copied yggtorrent.yml -2023-03-01 15:59:52.2817 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml -2023-03-01 15:59:52.2829 Info Copied yourbittorrent.yml -2023-03-01 15:59:52.2829 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml -2023-03-01 15:59:52.2840 Info Copied yts.yml -2023-03-01 15:59:52.2840 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml -2023-03-01 15:59:52.2851 Info Copied zamundanet.yml -2023-03-01 15:59:52.2851 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml -2023-03-01 15:59:52.2863 Info Copied zelkaorg.yml -2023-03-01 15:59:52.2868 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml -2023-03-01 15:59:52.2868 Info Copied zetorrents.yml -2023-03-01 15:59:52.2879 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml -2023-03-01 15:59:52.2879 Info Copied zmpt.yml -2023-03-01 15:59:52.2890 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml -2023-03-01 15:59:52.2899 Info Copied zomb.yml -2023-03-01 15:59:52.2899 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml -2023-03-01 15:59:52.2911 Info Copied ztracker.yml -2023-03-01 15:59:52.2911 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll -2023-03-01 15:59:52.2923 Info Copied FlareSolverrSharp.dll -2023-03-01 15:59:52.2923 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll -2023-03-01 15:59:52.2944 Info Copied ICSharpCode.SharpZipLib.dll -2023-03-01 15:59:52.2948 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh -2023-03-01 15:59:52.2957 Info Copied install_service_systemd.sh -2023-03-01 15:59:52.2957 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/jackett to destination: /app/Jackett/jackett -2023-03-01 15:59:52.2971 Info Copied jackett -2023-03-01 15:59:52.2971 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh -2023-03-01 15:59:52.2982 Info Copied jackett_launcher.sh -2023-03-01 15:59:52.2982 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll -2023-03-01 15:59:52.3028 Info Copied Jackett.Common.dll -2023-03-01 15:59:52.3028 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb -2023-03-01 15:59:52.3044 Info Copied Jackett.Common.pdb -2023-03-01 15:59:52.3048 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json -2023-03-01 15:59:52.3059 Info Copied jackett.deps.json -2023-03-01 15:59:52.3059 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll -2023-03-01 15:59:52.3080 Info Copied jackett.dll -2023-03-01 15:59:52.3080 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb -2023-03-01 15:59:52.3092 Info Copied jackett.pdb -2023-03-01 15:59:52.3092 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json -2023-03-01 15:59:52.3103 Info Copied jackett.runtimeconfig.json -2023-03-01 15:59:52.3108 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater -2023-03-01 15:59:52.3118 Info Copied JackettUpdater -2023-03-01 15:59:52.3118 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json -2023-03-01 15:59:52.3131 Info Copied JackettUpdater.deps.json -2023-03-01 15:59:52.3131 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll -2023-03-01 15:59:52.3154 Info Copied JackettUpdater.dll -2023-03-01 15:59:52.3158 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb -2023-03-01 15:59:52.3158 Info Copied JackettUpdater.pdb -2023-03-01 15:59:52.3169 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json -2023-03-01 15:59:52.3177 Info Copied JackettUpdater.runtimeconfig.json -2023-03-01 15:59:52.3177 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so -2023-03-01 15:59:52.3257 Info Copied libclrjit.so -2023-03-01 15:59:52.3257 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so -2023-03-01 15:59:52.3497 Info Copied libcoreclr.so -2023-03-01 15:59:52.3497 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so -2023-03-01 15:59:52.3540 Info Copied libcoreclrtraceptprovider.so -2023-03-01 15:59:52.3540 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so -2023-03-01 15:59:52.3577 Info Copied libdbgshim.so -2023-03-01 15:59:52.3577 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so -2023-03-01 15:59:52.3603 Info Copied libhostfxr.so -2023-03-01 15:59:52.3603 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so -2023-03-01 15:59:52.3627 Info Copied libhostpolicy.so -2023-03-01 15:59:52.3627 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so -2023-03-01 15:59:52.3642 Info Copied libMono.Unix.so -2023-03-01 15:59:52.3642 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so -2023-03-01 15:59:52.3760 Info Copied libmscordaccore.so -2023-03-01 15:59:52.3760 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so -2023-03-01 15:59:52.3832 Info Copied libmscordbi.so -2023-03-01 15:59:52.3837 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so -2023-03-01 15:59:52.3850 Info Copied libSystem.Globalization.Native.so -2023-03-01 15:59:52.3850 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so -2023-03-01 15:59:52.3899 Info Copied libSystem.IO.Compression.Native.so -2023-03-01 15:59:52.3899 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so -2023-03-01 15:59:52.3914 Info Copied libSystem.Native.so -2023-03-01 15:59:52.3917 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so -2023-03-01 15:59:52.3917 Info Copied libSystem.Net.Security.Native.so -2023-03-01 15:59:52.3930 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so -2023-03-01 15:59:52.3943 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so -2023-03-01 15:59:52.3947 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/LICENSE to destination: /app/Jackett/LICENSE -2023-03-01 15:59:52.3947 Info Copied LICENSE -2023-03-01 15:59:52.3959 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll -2023-03-01 15:59:52.3970 Info Copied Microsoft.AspNetCore.Antiforgery.dll -2023-03-01 15:59:52.3970 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-03-01 15:59:52.3997 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-03-01 15:59:52.3997 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll -2023-03-01 15:59:52.4012 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll -2023-03-01 15:59:52.4012 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll -2023-03-01 15:59:52.4027 Info Copied Microsoft.AspNetCore.Authentication.Core.dll -2023-03-01 15:59:52.4027 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll -2023-03-01 15:59:52.4043 Info Copied Microsoft.AspNetCore.Authentication.dll -2023-03-01 15:59:52.4047 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll -2023-03-01 15:59:52.4061 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll -2023-03-01 15:59:52.4061 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll -2023-03-01 15:59:52.4075 Info Copied Microsoft.AspNetCore.Authorization.dll -2023-03-01 15:59:52.4079 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll -2023-03-01 15:59:52.4089 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll -2023-03-01 15:59:52.4089 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll -2023-03-01 15:59:52.4102 Info Copied Microsoft.AspNetCore.Components.Authorization.dll -2023-03-01 15:59:52.4102 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll -2023-03-01 15:59:52.4133 Info Copied Microsoft.AspNetCore.Components.dll -2023-03-01 15:59:52.4133 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll -2023-03-01 15:59:52.4146 Info Copied Microsoft.AspNetCore.Components.Forms.dll -2023-03-01 15:59:52.4150 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll -2023-03-01 15:59:52.4182 Info Copied Microsoft.AspNetCore.Components.Server.dll -2023-03-01 15:59:52.4182 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll -2023-03-01 15:59:52.4209 Info Copied Microsoft.AspNetCore.Components.Web.dll -2023-03-01 15:59:52.4209 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll -2023-03-01 15:59:52.4223 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll -2023-03-01 15:59:52.4227 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll -2023-03-01 15:59:52.4227 Info Copied Microsoft.AspNetCore.CookiePolicy.dll -2023-03-01 15:59:52.4240 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll -2023-03-01 15:59:52.4251 Info Copied Microsoft.AspNetCore.Cors.dll -2023-03-01 15:59:52.4251 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll -2023-03-01 15:59:52.4265 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll -2023-03-01 15:59:52.4269 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-03-01 15:59:52.4279 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-03-01 15:59:52.4279 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-03-01 15:59:52.4292 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-03-01 15:59:52.4292 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll -2023-03-01 15:59:52.4323 Info Copied Microsoft.AspNetCore.DataProtection.dll -2023-03-01 15:59:52.4327 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-03-01 15:59:52.4327 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-03-01 15:59:52.4339 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-03-01 15:59:52.4349 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-03-01 15:59:52.4349 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll -2023-03-01 15:59:52.4373 Info Copied Microsoft.AspNetCore.Diagnostics.dll -2023-03-01 15:59:52.4377 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-03-01 15:59:52.4387 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-03-01 15:59:52.4387 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll -2023-03-01 15:59:52.4403 Info Copied Microsoft.AspNetCore.dll -2023-03-01 15:59:52.4403 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll -2023-03-01 15:59:52.4415 Info Copied Microsoft.AspNetCore.HostFiltering.dll -2023-03-01 15:59:52.4418 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-03-01 15:59:52.4429 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-03-01 15:59:52.4429 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll -2023-03-01 15:59:52.4452 Info Copied Microsoft.AspNetCore.Hosting.dll -2023-03-01 15:59:52.4452 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-03-01 15:59:52.4465 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-03-01 15:59:52.4468 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll -2023-03-01 15:59:52.4478 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll -2023-03-01 15:59:52.4478 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll -2023-03-01 15:59:52.4497 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll -2023-03-01 15:59:52.4497 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll -2023-03-01 15:59:52.4510 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll -2023-03-01 15:59:52.4510 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll -2023-03-01 15:59:52.4531 Info Copied Microsoft.AspNetCore.Http.Connections.dll -2023-03-01 15:59:52.4531 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll -2023-03-01 15:59:52.4554 Info Copied Microsoft.AspNetCore.Http.dll -2023-03-01 15:59:52.4557 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll -2023-03-01 15:59:52.4577 Info Copied Microsoft.AspNetCore.Http.Extensions.dll -2023-03-01 15:59:52.4577 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll -2023-03-01 15:59:52.4591 Info Copied Microsoft.AspNetCore.Http.Features.dll -2023-03-01 15:59:52.4591 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll -2023-03-01 15:59:52.4608 Info Copied Microsoft.AspNetCore.Http.Results.dll -2023-03-01 15:59:52.4608 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll -2023-03-01 15:59:52.4625 Info Copied Microsoft.AspNetCore.HttpLogging.dll -2023-03-01 15:59:52.4629 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll -2023-03-01 15:59:52.4639 Info Copied Microsoft.AspNetCore.HttpOverrides.dll -2023-03-01 15:59:52.4639 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll -2023-03-01 15:59:52.4653 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll -2023-03-01 15:59:52.4657 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll -2023-03-01 15:59:52.4672 Info Copied Microsoft.AspNetCore.Identity.dll -2023-03-01 15:59:52.4672 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll -2023-03-01 15:59:52.4685 Info Copied Microsoft.AspNetCore.JsonPatch.dll -2023-03-01 15:59:52.4689 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll -2023-03-01 15:59:52.4699 Info Copied Microsoft.AspNetCore.Localization.dll -2023-03-01 15:59:52.4699 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll -2023-03-01 15:59:52.4711 Info Copied Microsoft.AspNetCore.Localization.Routing.dll -2023-03-01 15:59:52.4711 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll -2023-03-01 15:59:52.4723 Info Copied Microsoft.AspNetCore.Metadata.dll -2023-03-01 15:59:52.4727 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-03-01 15:59:52.4745 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-03-01 15:59:52.4748 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-03-01 15:59:52.4763 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-03-01 15:59:52.4763 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll -2023-03-01 15:59:52.4840 Info Copied Microsoft.AspNetCore.Mvc.Core.dll -2023-03-01 15:59:52.4840 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll -2023-03-01 15:59:52.4854 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll -2023-03-01 15:59:52.4858 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-03-01 15:59:52.4871 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-03-01 15:59:52.4871 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll -2023-03-01 15:59:52.4883 Info Copied Microsoft.AspNetCore.Mvc.dll -2023-03-01 15:59:52.4883 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-03-01 15:59:52.4895 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-03-01 15:59:52.4899 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-03-01 15:59:52.4911 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-03-01 15:59:52.4911 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll -2023-03-01 15:59:52.4925 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll -2023-03-01 15:59:52.4928 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-03-01 15:59:52.4939 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-03-01 15:59:52.4939 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll -2023-03-01 15:59:52.4959 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll -2023-03-01 15:59:52.4959 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-03-01 15:59:52.4987 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-03-01 15:59:52.4987 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-03-01 15:59:52.5008 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-03-01 15:59:52.5008 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-03-01 15:59:52.5046 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-03-01 15:59:52.5050 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll -2023-03-01 15:59:52.5062 Info Copied Microsoft.AspNetCore.Razor.dll -2023-03-01 15:59:52.5062 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll -2023-03-01 15:59:52.5076 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll -2023-03-01 15:59:52.5079 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-03-01 15:59:52.5088 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-03-01 15:59:52.5088 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll -2023-03-01 15:59:52.5106 Info Copied Microsoft.AspNetCore.ResponseCaching.dll -2023-03-01 15:59:52.5109 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll -2023-03-01 15:59:52.7130 Info Copied Microsoft.AspNetCore.ResponseCompression.dll -2023-03-01 15:59:52.7137 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll -2023-03-01 15:59:52.7157 Info Copied Microsoft.AspNetCore.Rewrite.dll -2023-03-01 15:59:52.7157 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll -2023-03-01 15:59:52.7172 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll -2023-03-01 15:59:52.7172 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll -2023-03-01 15:59:52.7210 Info Copied Microsoft.AspNetCore.Routing.dll -2023-03-01 15:59:52.7210 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll -2023-03-01 15:59:52.7242 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll -2023-03-01 15:59:52.7242 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll -2023-03-01 15:59:52.7278 Info Copied Microsoft.AspNetCore.Server.IIS.dll -2023-03-01 15:59:52.7278 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll -2023-03-01 15:59:52.7293 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll -2023-03-01 15:59:52.7293 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-03-01 15:59:52.7952 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-03-01 15:59:52.7958 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll -2023-03-01 15:59:52.7968 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll -2023-03-01 15:59:52.7968 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-03-01 15:59:52.7988 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-03-01 15:59:52.7988 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-03-01 15:59:52.8004 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-03-01 15:59:52.8007 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll -2023-03-01 15:59:52.8018 Info Copied Microsoft.AspNetCore.Session.dll -2023-03-01 15:59:52.8018 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll -2023-03-01 15:59:52.8031 Info Copied Microsoft.AspNetCore.SignalR.Common.dll -2023-03-01 15:59:52.8031 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll -2023-03-01 15:59:52.8053 Info Copied Microsoft.AspNetCore.SignalR.Core.dll -2023-03-01 15:59:52.8053 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll -2023-03-01 15:59:52.8065 Info Copied Microsoft.AspNetCore.SignalR.dll -2023-03-01 15:59:52.8068 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-03-01 15:59:52.8079 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-03-01 15:59:52.8079 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll -2023-03-01 15:59:52.8094 Info Copied Microsoft.AspNetCore.StaticFiles.dll -2023-03-01 15:59:52.8097 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll -2023-03-01 15:59:52.8107 Info Copied Microsoft.AspNetCore.WebSockets.dll -2023-03-01 15:59:52.8107 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll -2023-03-01 15:59:52.8125 Info Copied Microsoft.AspNetCore.WebUtilities.dll -2023-03-01 15:59:52.8128 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll -2023-03-01 15:59:52.9296 Info Copied Microsoft.CSharp.dll -2023-03-01 15:59:52.9301 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll -2023-03-01 15:59:52.9312 Info Copied Microsoft.Extensions.Caching.Abstractions.dll -2023-03-01 15:59:52.9312 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll -2023-03-01 15:59:52.9325 Info Copied Microsoft.Extensions.Caching.Memory.dll -2023-03-01 15:59:52.9329 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll -2023-03-01 15:59:52.9338 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll -2023-03-01 15:59:52.9338 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll -2023-03-01 15:59:52.9351 Info Copied Microsoft.Extensions.Configuration.Binder.dll -2023-03-01 15:59:52.9351 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll -2023-03-01 15:59:52.9362 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll -2023-03-01 15:59:52.9362 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll -2023-03-01 15:59:52.9375 Info Copied Microsoft.Extensions.Configuration.dll -2023-03-01 15:59:52.9379 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-03-01 15:59:52.9387 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-03-01 15:59:52.9387 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll -2023-03-01 15:59:52.9399 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll -2023-03-01 15:59:52.9399 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll -2023-03-01 15:59:52.9410 Info Copied Microsoft.Extensions.Configuration.Ini.dll -2023-03-01 15:59:52.9410 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll -2023-03-01 15:59:52.9422 Info Copied Microsoft.Extensions.Configuration.Json.dll -2023-03-01 15:59:52.9422 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-03-01 15:59:52.9433 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-03-01 15:59:52.9433 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll -2023-03-01 15:59:52.9445 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll -2023-03-01 15:59:52.9448 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll -2023-03-01 15:59:52.9457 Info Copied Microsoft.Extensions.Configuration.Xml.dll -2023-03-01 15:59:52.9457 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-03-01 15:59:52.9471 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-03-01 15:59:52.9471 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll -2023-03-01 15:59:53.0212 Info Copied Microsoft.Extensions.DependencyInjection.dll -2023-03-01 15:59:53.0219 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-03-01 15:59:53.0230 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-03-01 15:59:53.0230 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-03-01 15:59:53.0245 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-03-01 15:59:53.0248 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll -2023-03-01 15:59:53.0257 Info Copied Microsoft.Extensions.Features.dll -2023-03-01 15:59:53.0257 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll -2023-03-01 15:59:53.0269 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll -2023-03-01 15:59:53.0269 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll -2023-03-01 15:59:53.0280 Info Copied Microsoft.Extensions.FileProviders.Composite.dll -2023-03-01 15:59:53.0280 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll -2023-03-01 15:59:53.0310 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll -2023-03-01 15:59:53.0310 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll -2023-03-01 15:59:53.0324 Info Copied Microsoft.Extensions.FileProviders.Physical.dll -2023-03-01 15:59:53.0327 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll -2023-03-01 15:59:53.0338 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll -2023-03-01 15:59:53.0338 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll -2023-03-01 15:59:53.0350 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll -2023-03-01 15:59:53.0350 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll -2023-03-01 15:59:53.0365 Info Copied Microsoft.Extensions.Hosting.dll -2023-03-01 15:59:53.0368 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll -2023-03-01 15:59:53.0381 Info Copied Microsoft.Extensions.Http.dll -2023-03-01 15:59:53.0381 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll -2023-03-01 15:59:53.0406 Info Copied Microsoft.Extensions.Identity.Core.dll -2023-03-01 15:59:53.0409 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll -2023-03-01 15:59:53.1419 Info Copied Microsoft.Extensions.Identity.Stores.dll -2023-03-01 15:59:53.1419 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll -2023-03-01 15:59:53.1435 Info Copied Microsoft.Extensions.Localization.Abstractions.dll -2023-03-01 15:59:53.1438 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll -2023-03-01 15:59:53.1448 Info Copied Microsoft.Extensions.Localization.dll -2023-03-01 15:59:53.1448 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll -2023-03-01 15:59:53.1465 Info Copied Microsoft.Extensions.Logging.Abstractions.dll -2023-03-01 15:59:53.1468 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll -2023-03-01 15:59:53.1479 Info Copied Microsoft.Extensions.Logging.Configuration.dll -2023-03-01 15:59:53.1479 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll -2023-03-01 15:59:53.1501 Info Copied Microsoft.Extensions.Logging.Console.dll -2023-03-01 15:59:53.1501 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll -2023-03-01 15:59:53.1513 Info Copied Microsoft.Extensions.Logging.Debug.dll -2023-03-01 15:59:53.1513 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll -2023-03-01 15:59:53.1529 Info Copied Microsoft.Extensions.Logging.dll -2023-03-01 15:59:53.1529 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll -2023-03-01 15:59:53.1542 Info Copied Microsoft.Extensions.Logging.EventLog.dll -2023-03-01 15:59:53.1542 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll -2023-03-01 15:59:53.1556 Info Copied Microsoft.Extensions.Logging.EventSource.dll -2023-03-01 15:59:53.1565 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll -2023-03-01 15:59:53.1574 Info Copied Microsoft.Extensions.Logging.TraceSource.dll -2023-03-01 15:59:53.1578 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll -2023-03-01 15:59:53.1589 Info Copied Microsoft.Extensions.ObjectPool.dll -2023-03-01 15:59:53.1589 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-03-01 15:59:53.1603 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-03-01 15:59:53.1607 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll -2023-03-01 15:59:53.1695 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll -2023-03-01 15:59:53.1701 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll -2023-03-01 15:59:53.1717 Info Copied Microsoft.Extensions.Options.dll -2023-03-01 15:59:53.1717 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll -2023-03-01 15:59:53.1734 Info Copied Microsoft.Extensions.Primitives.dll -2023-03-01 15:59:53.1778 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll -2023-03-01 15:59:53.1790 Info Copied Microsoft.Extensions.WebEncoders.dll -2023-03-01 15:59:53.1790 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll -2023-03-01 15:59:53.1869 Info Copied Microsoft.JSInterop.dll -2023-03-01 15:59:53.1869 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll -2023-03-01 15:59:53.1910 Info Copied Microsoft.Net.Http.Headers.dll -2023-03-01 15:59:53.1910 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll -2023-03-01 15:59:53.1972 Info Copied Microsoft.VisualBasic.Core.dll -2023-03-01 15:59:53.1972 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll -2023-03-01 15:59:53.1986 Info Copied Microsoft.VisualBasic.dll -2023-03-01 15:59:53.1990 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll -2023-03-01 15:59:53.2002 Info Copied Microsoft.Win32.Primitives.dll -2023-03-01 15:59:53.2002 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll -2023-03-01 15:59:53.2017 Info Copied Microsoft.Win32.Registry.dll -2023-03-01 15:59:53.2017 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll -2023-03-01 15:59:53.2060 Info Copied MimeMapping.dll -2023-03-01 15:59:53.2060 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll -2023-03-01 15:59:53.2073 Info Copied Mono.Posix.dll -2023-03-01 15:59:53.2077 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll -2023-03-01 15:59:53.2104 Info Copied Mono.Unix.dll -2023-03-01 15:59:53.2108 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll -2023-03-01 15:59:53.2288 Info Copied mscorlib.dll -2023-03-01 15:59:53.2288 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll -2023-03-01 15:59:53.2298 Info Copied netstandard.dll -2023-03-01 15:59:53.2298 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll -2023-03-01 15:59:53.2298 Info Copied Newtonsoft.Json.Bson.dll -2023-03-01 15:59:53.2308 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll -2023-03-01 15:59:53.2323 Info Copied Newtonsoft.Json.dll -2023-03-01 15:59:53.2323 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll -2023-03-01 15:59:53.2345 Info Copied NLog.dll -2023-03-01 15:59:53.2347 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll -2023-03-01 15:59:53.2347 Info Copied NLog.Extensions.Logging.dll -2023-03-01 15:59:53.2347 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll -2023-03-01 15:59:53.2359 Info Copied NLog.Web.AspNetCore.dll -2023-03-01 15:59:53.2359 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll -2023-03-01 15:59:53.2359 Info Copied Org.Mentalis.dll -2023-03-01 15:59:53.2367 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll -2023-03-01 15:59:53.2377 Info Copied Polly.dll -2023-03-01 15:59:53.2377 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/README.md to destination: /app/Jackett/README.md -2023-03-01 15:59:53.2377 Info Copied README.md -2023-03-01 15:59:53.2377 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll -2023-03-01 15:59:53.2390 Info Copied SocksWebProxy.dll -2023-03-01 15:59:53.2390 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll -2023-03-01 15:59:53.2390 Info Copied System.AppContext.dll -2023-03-01 15:59:53.2397 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll -2023-03-01 15:59:53.2397 Info Copied System.Buffers.dll -2023-03-01 15:59:53.2397 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll -2023-03-01 15:59:53.2412 Info Copied System.Collections.Concurrent.dll -2023-03-01 15:59:53.2412 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll -2023-03-01 15:59:53.2421 Info Copied System.Collections.dll -2023-03-01 15:59:53.2421 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll -2023-03-01 15:59:53.2439 Info Copied System.Collections.Immutable.dll -2023-03-01 15:59:53.2439 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll -2023-03-01 15:59:53.2447 Info Copied System.Collections.NonGeneric.dll -2023-03-01 15:59:53.2447 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll -2023-03-01 15:59:53.2447 Info Copied System.Collections.Specialized.dll -2023-03-01 15:59:53.2506 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll -2023-03-01 15:59:53.3534 Info Copied System.ComponentModel.Annotations.dll -2023-03-01 15:59:53.3539 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll -2023-03-01 15:59:53.3549 Info Copied System.ComponentModel.DataAnnotations.dll -2023-03-01 15:59:53.3549 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll -2023-03-01 15:59:53.3560 Info Copied System.ComponentModel.dll -2023-03-01 15:59:53.3560 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll -2023-03-01 15:59:53.3577 Info Copied System.ComponentModel.EventBasedAsync.dll -2023-03-01 15:59:53.3577 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll -2023-03-01 15:59:53.3591 Info Copied System.ComponentModel.Primitives.dll -2023-03-01 15:59:53.3591 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll -2023-03-01 15:59:53.3630 Info Copied System.ComponentModel.TypeConverter.dll -2023-03-01 15:59:53.3630 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll -2023-03-01 15:59:53.3641 Info Copied System.Configuration.dll -2023-03-01 15:59:53.3641 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll -2023-03-01 15:59:53.3680 Info Copied System.Console.dll -2023-03-01 15:59:53.3680 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll -2023-03-01 15:59:53.3691 Info Copied System.Core.dll -2023-03-01 15:59:53.3691 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll -2023-03-01 15:59:53.4240 Info Copied System.Data.Common.dll -2023-03-01 15:59:53.4240 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll -2023-03-01 15:59:53.4258 Info Copied System.Data.DataSetExtensions.dll -2023-03-01 15:59:53.4258 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll -2023-03-01 15:59:53.4269 Info Copied System.Data.dll -2023-03-01 15:59:53.4269 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll -2023-03-01 15:59:53.4281 Info Copied System.Diagnostics.Contracts.dll -2023-03-01 15:59:53.4281 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll -2023-03-01 15:59:53.4292 Info Copied System.Diagnostics.Debug.dll -2023-03-01 15:59:53.4292 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll -2023-03-01 15:59:53.4319 Info Copied System.Diagnostics.DiagnosticSource.dll -2023-03-01 15:59:53.4319 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll -2023-03-01 15:59:53.4333 Info Copied System.Diagnostics.EventLog.dll -2023-03-01 15:59:53.4333 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll -2023-03-01 15:59:53.4345 Info Copied System.Diagnostics.FileVersionInfo.dll -2023-03-01 15:59:53.4348 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll -2023-03-01 15:59:53.5125 Info Copied System.Diagnostics.Process.dll -2023-03-01 15:59:53.5131 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll -2023-03-01 15:59:53.5141 Info Copied System.Diagnostics.StackTrace.dll -2023-03-01 15:59:53.5141 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll -2023-03-01 15:59:53.5154 Info Copied System.Diagnostics.TextWriterTraceListener.dll -2023-03-01 15:59:53.5157 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll -2023-03-01 15:59:53.5157 Info Copied System.Diagnostics.Tools.dll -2023-03-01 15:59:53.5169 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll -2023-03-01 15:59:53.5181 Info Copied System.Diagnostics.TraceSource.dll -2023-03-01 15:59:53.5181 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll -2023-03-01 15:59:53.5194 Info Copied System.Diagnostics.Tracing.dll -2023-03-01 15:59:53.5197 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.dll to destination: /app/Jackett/System.dll -2023-03-01 15:59:53.5197 Info Copied System.dll -2023-03-01 15:59:53.5208 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll -2023-03-01 15:59:53.5217 Info Copied System.Drawing.dll -2023-03-01 15:59:53.5217 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll -2023-03-01 15:59:53.5232 Info Copied System.Drawing.Primitives.dll -2023-03-01 15:59:53.5232 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll -2023-03-01 15:59:53.5244 Info Copied System.Dynamic.Runtime.dll -2023-03-01 15:59:53.5247 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll -2023-03-01 15:59:53.5264 Info Copied System.Formats.Asn1.dll -2023-03-01 15:59:53.5268 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll -2023-03-01 15:59:53.5278 Info Copied System.Globalization.Calendars.dll -2023-03-01 15:59:53.5278 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll -2023-03-01 15:59:53.5288 Info Copied System.Globalization.dll -2023-03-01 15:59:53.5288 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll -2023-03-01 15:59:53.5298 Info Copied System.Globalization.Extensions.dll -2023-03-01 15:59:53.5298 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll -2023-03-01 15:59:53.5312 Info Copied System.IO.Compression.Brotli.dll -2023-03-01 15:59:53.5312 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll -2023-03-01 15:59:53.5333 Info Copied System.IO.Compression.dll -2023-03-01 15:59:53.5333 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll -2023-03-01 15:59:53.5344 Info Copied System.IO.Compression.FileSystem.dll -2023-03-01 15:59:53.5347 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll -2023-03-01 15:59:53.5359 Info Copied System.IO.Compression.ZipFile.dll -2023-03-01 15:59:53.5359 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll -2023-03-01 15:59:53.5369 Info Copied System.IO.dll -2023-03-01 15:59:53.5369 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll -2023-03-01 15:59:53.5383 Info Copied System.IO.FileSystem.AccessControl.dll -2023-03-01 15:59:53.5387 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll -2023-03-01 15:59:53.5387 Info Copied System.IO.FileSystem.dll -2023-03-01 15:59:53.5397 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll -2023-03-01 15:59:53.5409 Info Copied System.IO.FileSystem.DriveInfo.dll -2023-03-01 15:59:53.5409 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll -2023-03-01 15:59:53.5419 Info Copied System.IO.FileSystem.Primitives.dll -2023-03-01 15:59:53.5419 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll -2023-03-01 15:59:53.5435 Info Copied System.IO.FileSystem.Watcher.dll -2023-03-01 15:59:53.5438 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll -2023-03-01 15:59:53.5449 Info Copied System.IO.IsolatedStorage.dll -2023-03-01 15:59:53.5449 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll -2023-03-01 15:59:53.5462 Info Copied System.IO.MemoryMappedFiles.dll -2023-03-01 15:59:53.5462 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll -2023-03-01 15:59:53.5480 Info Copied System.IO.Pipelines.dll -2023-03-01 15:59:53.5480 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll -2023-03-01 15:59:53.5491 Info Copied System.IO.Pipes.AccessControl.dll -2023-03-01 15:59:53.5491 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll -2023-03-01 15:59:53.5505 Info Copied System.IO.Pipes.dll -2023-03-01 15:59:53.5508 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll -2023-03-01 15:59:53.5508 Info Copied System.IO.UnmanagedMemoryStream.dll -2023-03-01 15:59:53.5518 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll -2023-03-01 15:59:53.6619 Info Copied System.Linq.dll -2023-03-01 15:59:53.6619 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll -2023-03-01 15:59:53.6756 Info Copied System.Linq.Expressions.dll -2023-03-01 15:59:53.6760 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll -2023-03-01 15:59:53.6796 Info Copied System.Linq.Parallel.dll -2023-03-01 15:59:53.6800 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll -2023-03-01 15:59:53.7521 Info Copied System.Linq.Queryable.dll -2023-03-01 15:59:53.7521 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll -2023-03-01 15:59:53.7540 Info Copied System.Memory.dll -2023-03-01 15:59:53.7540 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll -2023-03-01 15:59:53.7550 Info Copied System.Net.dll -2023-03-01 15:59:53.7550 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll -2023-03-01 15:59:53.7613 Info Copied System.Net.Http.dll -2023-03-01 15:59:53.7620 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll -2023-03-01 15:59:53.7631 Info Copied System.Net.Http.Json.dll -2023-03-01 15:59:53.7631 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll -2023-03-01 15:59:53.7650 Info Copied System.Net.HttpListener.dll -2023-03-01 15:59:53.7650 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll -2023-03-01 15:59:53.7675 Info Copied System.Net.Mail.dll -2023-03-01 15:59:53.7678 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll -2023-03-01 15:59:53.7688 Info Copied System.Net.NameResolution.dll -2023-03-01 15:59:53.7688 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll -2023-03-01 15:59:53.7702 Info Copied System.Net.NetworkInformation.dll -2023-03-01 15:59:53.7702 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll -2023-03-01 15:59:53.7714 Info Copied System.Net.Ping.dll -2023-03-01 15:59:53.7717 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll -2023-03-01 15:59:55.1493 Info Copied System.Net.Primitives.dll -2023-03-01 15:59:55.1499 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll -2023-03-01 15:59:55.1524 Info Copied System.Net.Quic.dll -2023-03-01 15:59:55.1527 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll -2023-03-01 15:59:55.1554 Info Copied System.Net.Requests.dll -2023-03-01 15:59:55.1558 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll -2023-03-01 15:59:55.1591 Info Copied System.Net.Security.dll -2023-03-01 15:59:55.1591 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll -2023-03-01 15:59:55.1606 Info Copied System.Net.ServicePoint.dll -2023-03-01 15:59:55.1610 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll -2023-03-01 15:59:55.1639 Info Copied System.Net.Sockets.dll -2023-03-01 15:59:55.1639 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll -2023-03-01 15:59:55.1660 Info Copied System.Net.WebClient.dll -2023-03-01 15:59:55.1660 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll -2023-03-01 15:59:55.1676 Info Copied System.Net.WebHeaderCollection.dll -2023-03-01 15:59:55.1679 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll -2023-03-01 15:59:55.1791 Info Copied System.Net.WebProxy.dll -2023-03-01 15:59:55.1791 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll -2023-03-01 15:59:55.1811 Info Copied System.Net.WebSockets.Client.dll -2023-03-01 15:59:55.1811 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll -2023-03-01 15:59:55.1835 Info Copied System.Net.WebSockets.dll -2023-03-01 15:59:55.1840 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll -2023-03-01 15:59:55.1852 Info Copied System.Numerics.dll -2023-03-01 15:59:55.1852 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll -2023-03-01 15:59:55.1864 Info Copied System.Numerics.Vectors.dll -2023-03-01 15:59:55.1868 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll -2023-03-01 15:59:55.1881 Info Copied System.ObjectModel.dll -2023-03-01 15:59:55.1881 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll -2023-03-01 15:59:55.2257 Info Copied System.Private.CoreLib.dll -2023-03-01 15:59:55.2257 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll -2023-03-01 15:59:55.2368 Info Copied System.Private.DataContractSerialization.dll -2023-03-01 15:59:55.2371 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll -2023-03-01 15:59:55.2394 Info Copied System.Private.Uri.dll -2023-03-01 15:59:55.2399 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll -2023-03-01 15:59:55.3955 Info Copied System.Private.Xml.dll -2023-03-01 15:59:55.3961 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll -2023-03-01 15:59:55.3990 Info Copied System.Private.Xml.Linq.dll -2023-03-01 15:59:55.3990 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll -2023-03-01 15:59:55.4006 Info Copied System.Reflection.DispatchProxy.dll -2023-03-01 15:59:55.4010 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll -2023-03-01 15:59:55.4020 Info Copied System.Reflection.dll -2023-03-01 15:59:55.4020 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll -2023-03-01 15:59:55.4033 Info Copied System.Reflection.Emit.dll -2023-03-01 15:59:55.4033 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll -2023-03-01 15:59:55.4046 Info Copied System.Reflection.Emit.ILGeneration.dll -2023-03-01 15:59:55.4049 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll -2023-03-01 15:59:55.4059 Info Copied System.Reflection.Emit.Lightweight.dll -2023-03-01 15:59:55.4059 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll -2023-03-01 15:59:55.4072 Info Copied System.Reflection.Extensions.dll -2023-03-01 15:59:55.4072 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll -2023-03-01 15:59:55.4790 Info Copied System.Reflection.Metadata.dll -2023-03-01 15:59:55.4790 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll -2023-03-01 15:59:55.4806 Info Copied System.Reflection.Primitives.dll -2023-03-01 15:59:55.4810 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll -2023-03-01 15:59:55.4820 Info Copied System.Reflection.TypeExtensions.dll -2023-03-01 15:59:55.4820 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll -2023-03-01 15:59:55.4832 Info Copied System.Resources.Reader.dll -2023-03-01 15:59:55.4832 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll -2023-03-01 15:59:55.4845 Info Copied System.Resources.ResourceManager.dll -2023-03-01 15:59:55.4849 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll -2023-03-01 15:59:55.4859 Info Copied System.Resources.Writer.dll -2023-03-01 15:59:55.4859 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll -2023-03-01 15:59:55.4871 Info Copied System.Runtime.CompilerServices.Unsafe.dll -2023-03-01 15:59:55.4871 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll -2023-03-01 15:59:55.4884 Info Copied System.Runtime.CompilerServices.VisualC.dll -2023-03-01 15:59:55.4887 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll -2023-03-01 15:59:55.4897 Info Copied System.Runtime.dll -2023-03-01 15:59:55.4897 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll -2023-03-01 15:59:55.4910 Info Copied System.Runtime.Extensions.dll -2023-03-01 15:59:55.4910 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll -2023-03-01 15:59:55.4922 Info Copied System.Runtime.Handles.dll -2023-03-01 15:59:55.4922 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll -2023-03-01 15:59:55.4935 Info Copied System.Runtime.InteropServices.dll -2023-03-01 15:59:55.4939 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll -2023-03-01 15:59:55.4949 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll -2023-03-01 15:59:55.4949 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll -2023-03-01 15:59:55.4961 Info Copied System.Runtime.Intrinsics.dll -2023-03-01 15:59:55.4961 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll -2023-03-01 15:59:55.5104 Info Copied System.Runtime.Loader.dll -2023-03-01 15:59:55.5109 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll -2023-03-01 15:59:55.5127 Info Copied System.Runtime.Numerics.dll -2023-03-01 15:59:55.5127 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll -2023-03-01 15:59:55.5140 Info Copied System.Runtime.Serialization.dll -2023-03-01 15:59:55.5140 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll -2023-03-01 15:59:55.5168 Info Copied System.Runtime.Serialization.Formatters.dll -2023-03-01 15:59:55.5168 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll -2023-03-01 15:59:55.5181 Info Copied System.Runtime.Serialization.Json.dll -2023-03-01 15:59:55.5181 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll -2023-03-01 15:59:55.5195 Info Copied System.Runtime.Serialization.Primitives.dll -2023-03-01 15:59:55.5199 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll -2023-03-01 15:59:55.5209 Info Copied System.Runtime.Serialization.Xml.dll -2023-03-01 15:59:55.5209 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll -2023-03-01 15:59:55.5223 Info Copied System.Security.AccessControl.dll -2023-03-01 15:59:55.5227 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll -2023-03-01 15:59:55.5250 Info Copied System.Security.Claims.dll -2023-03-01 15:59:55.5250 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll -2023-03-01 15:59:55.5292 Info Copied System.Security.Cryptography.Algorithms.dll -2023-03-01 15:59:55.5292 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll -2023-03-01 15:59:55.5425 Info Copied System.Security.Cryptography.Cng.dll -2023-03-01 15:59:55.5430 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll -2023-03-01 15:59:55.5445 Info Copied System.Security.Cryptography.Csp.dll -2023-03-01 15:59:55.5448 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll -2023-03-01 15:59:55.5463 Info Copied System.Security.Cryptography.Encoding.dll -2023-03-01 15:59:55.5463 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll -2023-03-01 15:59:55.5485 Info Copied System.Security.Cryptography.OpenSsl.dll -2023-03-01 15:59:55.5488 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll -2023-03-01 15:59:55.5524 Info Copied System.Security.Cryptography.Pkcs.dll -2023-03-01 15:59:55.5528 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll -2023-03-01 15:59:55.5543 Info Copied System.Security.Cryptography.Primitives.dll -2023-03-01 15:59:55.5547 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll -2023-03-01 15:59:55.5557 Info Copied System.Security.Cryptography.ProtectedData.dll -2023-03-01 15:59:55.5557 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll -2023-03-01 15:59:55.5596 Info Copied System.Security.Cryptography.X509Certificates.dll -2023-03-01 15:59:55.5599 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll -2023-03-01 15:59:55.5838 Info Copied System.Security.Cryptography.Xml.dll -2023-03-01 15:59:55.5838 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll -2023-03-01 15:59:55.5852 Info Copied System.Security.dll -2023-03-01 15:59:55.5852 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll -2023-03-01 15:59:55.5866 Info Copied System.Security.Principal.dll -2023-03-01 15:59:55.5870 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll -2023-03-01 15:59:55.5880 Info Copied System.Security.Principal.Windows.dll -2023-03-01 15:59:55.5880 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll -2023-03-01 15:59:55.5893 Info Copied System.Security.SecureString.dll -2023-03-01 15:59:55.5893 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll -2023-03-01 15:59:55.5907 Info Copied System.ServiceModel.Web.dll -2023-03-01 15:59:55.5907 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll -2023-03-01 15:59:55.5920 Info Copied System.ServiceProcess.dll -2023-03-01 15:59:55.5920 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll -2023-03-01 15:59:55.5933 Info Copied System.ServiceProcess.ServiceController.dll -2023-03-01 15:59:55.5937 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll -2023-03-01 15:59:55.5979 Info Copied System.Text.Encoding.CodePages.dll -2023-03-01 15:59:55.5979 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll -2023-03-01 15:59:55.5992 Info Copied System.Text.Encoding.dll -2023-03-01 15:59:55.5992 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll -2023-03-01 15:59:55.6004 Info Copied System.Text.Encoding.Extensions.dll -2023-03-01 15:59:55.6007 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll -2023-03-01 15:59:55.6023 Info Copied System.Text.Encodings.Web.dll -2023-03-01 15:59:55.6027 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll -2023-03-01 15:59:55.6083 Info Copied System.Text.Json.dll -2023-03-01 15:59:55.6087 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll -2023-03-01 15:59:55.6117 Info Copied System.Text.RegularExpressions.dll -2023-03-01 15:59:55.6117 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll -2023-03-01 15:59:55.6135 Info Copied System.Threading.Channels.dll -2023-03-01 15:59:55.6139 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll -2023-03-01 15:59:55.6152 Info Copied System.Threading.dll -2023-03-01 15:59:55.6152 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll -2023-03-01 15:59:55.6165 Info Copied System.Threading.Overlapped.dll -2023-03-01 15:59:55.6168 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll -2023-03-01 15:59:55.6195 Info Copied System.Threading.Tasks.Dataflow.dll -2023-03-01 15:59:55.6199 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll -2023-03-01 15:59:55.6208 Info Copied System.Threading.Tasks.dll -2023-03-01 15:59:55.6208 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll -2023-03-01 15:59:55.6221 Info Copied System.Threading.Tasks.Extensions.dll -2023-03-01 15:59:55.6221 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll -2023-03-01 15:59:55.6238 Info Copied System.Threading.Tasks.Parallel.dll -2023-03-01 15:59:55.6238 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll -2023-03-01 15:59:55.6251 Info Copied System.Threading.Thread.dll -2023-03-01 15:59:55.6251 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll -2023-03-01 15:59:55.6263 Info Copied System.Threading.ThreadPool.dll -2023-03-01 15:59:55.6267 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll -2023-03-01 15:59:55.6281 Info Copied System.Threading.Timer.dll -2023-03-01 15:59:55.6281 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll -2023-03-01 15:59:55.6294 Info Copied System.Transactions.dll -2023-03-01 15:59:55.6298 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll -2023-03-01 15:59:55.6322 Info Copied System.Transactions.Local.dll -2023-03-01 15:59:55.6322 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll -2023-03-01 15:59:55.6335 Info Copied System.ValueTuple.dll -2023-03-01 15:59:55.6338 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll -2023-03-01 15:59:55.6348 Info Copied System.Web.dll -2023-03-01 15:59:55.6348 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll -2023-03-01 15:59:55.6361 Info Copied System.Web.HttpUtility.dll -2023-03-01 15:59:55.6361 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll -2023-03-01 15:59:55.6374 Info Copied System.Windows.dll -2023-03-01 15:59:55.6378 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll -2023-03-01 15:59:55.6735 Info Copied System.Xml.dll -2023-03-01 15:59:55.6740 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll -2023-03-01 15:59:55.6750 Info Copied System.Xml.Linq.dll -2023-03-01 15:59:55.6750 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll -2023-03-01 15:59:55.6764 Info Copied System.Xml.ReaderWriter.dll -2023-03-01 15:59:55.6767 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll -2023-03-01 15:59:55.6777 Info Copied System.Xml.Serialization.dll -2023-03-01 15:59:55.6777 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll -2023-03-01 15:59:55.6790 Info Copied System.Xml.XDocument.dll -2023-03-01 15:59:55.6790 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll -2023-03-01 15:59:55.6803 Info Copied System.Xml.XmlDocument.dll -2023-03-01 15:59:55.6803 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll -2023-03-01 15:59:55.6816 Info Copied System.Xml.XmlSerializer.dll -2023-03-01 15:59:55.6819 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll -2023-03-01 15:59:55.6829 Info Copied System.Xml.XPath.dll -2023-03-01 15:59:55.6829 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll -2023-03-01 15:59:55.6842 Info Copied System.Xml.XPath.XDocument.dll -2023-03-01 15:59:55.6842 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll -2023-03-01 15:59:55.6855 Info Copied WindowsBase.dll -2023-03-01 15:59:55.6859 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3411-638132831882369369/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll -2023-03-01 15:59:55.6879 Info Copied YamlDotNet.dll -2023-03-01 15:59:55.6879 Info File copying complete -2023-03-01 15:59:55.7248 Info Killing process 134 -2023-03-01 15:59:58.8028 Info Process 134 didn't exit within 2 seconds after a SIGTERM -2023-03-10 17:56:41.1040 Info Jackett Updater v0.20.3579 -2023-03-10 17:56:41.2478 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "133" "--NoRestart" -2023-03-10 17:56:41.2511 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-10 17:56:41.4415 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb -2023-03-10 17:56:41.4421 Info Deleted /app/Jackett/DateTimeRoutines.pdb -2023-03-10 17:56:41.4421 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb -2023-03-10 17:56:41.4421 Info Deleted /app/Jackett/Jackett.Common.pdb -2023-03-10 17:56:41.4427 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb -2023-03-10 17:56:41.4427 Info Deleted /app/Jackett/JackettUpdater.pdb -2023-03-10 17:56:41.4427 Info Attempting to remove: /app/Jackett/jackett.pdb -2023-03-10 17:56:41.4427 Info Deleted /app/Jackett/jackett.pdb -2023-03-10 17:56:41.4427 Info Attempting to remove: /app/Jackett/jackett -2023-03-10 17:56:41.4439 Info Deleted /app/Jackett/jackett -2023-03-10 17:56:41.4439 Info Finding files in: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/ -2023-03-10 17:56:41.4490 Info 891 update files found -2023-03-10 17:56:41.4501 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll -2023-03-10 17:56:41.4533 Info Copied AngleSharp.dll -2023-03-10 17:56:41.4533 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll -2023-03-10 17:56:41.4533 Info Copied AngleSharp.Xml.dll -2023-03-10 17:56:41.4533 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll -2023-03-10 17:56:41.4555 Info Copied Autofac.dll -2023-03-10 17:56:41.4557 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll -2023-03-10 17:56:41.4557 Info Copied Autofac.Extensions.DependencyInjection.dll -2023-03-10 17:56:41.4557 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll -2023-03-10 17:56:41.4575 Info Copied AutoMapper.dll -2023-03-10 17:56:41.4577 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll -2023-03-10 17:56:41.4577 Info Copied BencodeNET.dll -2023-03-10 17:56:41.4577 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll -2023-03-10 17:56:41.4595 Info Copied CommandLine.dll -2023-03-10 17:56:41.4597 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css -2023-03-10 17:56:41.4597 Info Copied animate.css -2023-03-10 17:56:41.4597 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png -2023-03-10 17:56:41.4610 Info Copied apple-touch-icon.png -2023-03-10 17:56:41.4610 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png -2023-03-10 17:56:41.4617 Info Copied binding_dark.png -2023-03-10 17:56:41.4617 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css -2023-03-10 17:56:41.4628 Info Copied bootstrap.min.css -2023-03-10 17:56:41.4628 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js -2023-03-10 17:56:41.4636 Info Copied bootstrap.min.js -2023-03-10 17:56:41.4636 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js -2023-03-10 17:56:41.4636 Info Copied common.js -2023-03-10 17:56:41.4636 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css -2023-03-10 17:56:41.4650 Info Copied bootstrap-multiselect.css -2023-03-10 17:56:41.4650 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css -2023-03-10 17:56:41.4657 Info Copied font-awesome.min.css -2023-03-10 17:56:41.4657 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css -2023-03-10 17:56:41.4657 Info Copied jquery.dataTables.min.css -2023-03-10 17:56:41.4657 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css -2023-03-10 17:56:41.4671 Info Copied tagify.css -2023-03-10 17:56:41.4671 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css -2023-03-10 17:56:41.4679 Info Copied custom_mobile.css -2023-03-10 17:56:41.4679 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css -2023-03-10 17:56:41.4679 Info Copied custom.css -2023-03-10 17:56:41.4688 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js -2023-03-10 17:56:41.4688 Info Copied custom.js -2023-03-10 17:56:41.4697 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico -2023-03-10 17:56:41.4697 Info Copied favicon.ico -2023-03-10 17:56:41.4707 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot -2023-03-10 17:56:41.4707 Info Copied fontawesome-webfont.eot -2023-03-10 17:56:41.4707 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg -2023-03-10 17:56:41.4728 Info Copied fontawesome-webfont.svg -2023-03-10 17:56:41.4728 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf -2023-03-10 17:56:41.4738 Info Copied fontawesome-webfont.ttf -2023-03-10 17:56:41.4738 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff -2023-03-10 17:56:41.4748 Info Copied fontawesome-webfont.woff -2023-03-10 17:56:41.4748 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 -2023-03-10 17:56:41.4756 Info Copied fontawesome-webfont.woff2 -2023-03-10 17:56:41.4756 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf -2023-03-10 17:56:41.4756 Info Copied FontAwesome.otf -2023-03-10 17:56:41.4768 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot -2023-03-10 17:56:41.4768 Info Copied glyphicons-halflings-regular.eot -2023-03-10 17:56:41.4776 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg -2023-03-10 17:56:41.4776 Info Copied glyphicons-halflings-regular.svg -2023-03-10 17:56:41.4787 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf -2023-03-10 17:56:41.4787 Info Copied glyphicons-halflings-regular.ttf -2023-03-10 17:56:41.4787 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff -2023-03-10 17:56:41.4801 Info Copied glyphicons-halflings-regular.woff -2023-03-10 17:56:41.4801 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 -2023-03-10 17:56:41.4809 Info Copied glyphicons-halflings-regular.woff2 -2023-03-10 17:56:41.4809 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png -2023-03-10 17:56:41.4809 Info Copied sort_asc_disabled.png -2023-03-10 17:56:41.4818 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png -2023-03-10 17:56:41.4818 Info Copied sort_asc.png -2023-03-10 17:56:41.4818 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png -2023-03-10 17:56:41.4831 Info Copied sort_both.png -2023-03-10 17:56:41.4831 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png -2023-03-10 17:56:41.4839 Info Copied sort_desc_disabled.png -2023-03-10 17:56:41.4839 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png -2023-03-10 17:56:41.4839 Info Copied sort_desc.png -2023-03-10 17:56:41.4848 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html -2023-03-10 17:56:41.4848 Info Copied index.html -2023-03-10 17:56:41.4857 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png -2023-03-10 17:56:41.4857 Info Copied jacket_medium.png -2023-03-10 17:56:41.4857 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js -2023-03-10 17:56:41.4870 Info Copied api.js -2023-03-10 17:56:41.4870 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js -2023-03-10 17:56:41.4878 Info Copied bootstrap-multiselect.js -2023-03-10 17:56:41.4878 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js -2023-03-10 17:56:41.4878 Info Copied bootstrap-notify.js -2023-03-10 17:56:41.4888 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js -2023-03-10 17:56:41.4888 Info Copied filesize.min.js -2023-03-10 17:56:41.4888 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js -2023-03-10 17:56:41.4902 Info Copied handlebars.min.js -2023-03-10 17:56:41.4902 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js -2023-03-10 17:56:41.4910 Info Copied handlebarsextend.js -2023-03-10 17:56:41.4910 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js -2023-03-10 17:56:41.4917 Info Copied handlebarsmoment.js -2023-03-10 17:56:41.4917 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js -2023-03-10 17:56:41.4917 Info Copied jquery.dataTables.min.js -2023-03-10 17:56:41.4928 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js -2023-03-10 17:56:41.4928 Info Copied jquery.min.js -2023-03-10 17:56:41.4937 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js -2023-03-10 17:56:41.4937 Info Copied jQuery.tagify.min.js -2023-03-10 17:56:41.4937 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js -2023-03-10 17:56:41.4952 Info Copied moment.min.js -2023-03-10 17:56:41.4952 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js -2023-03-10 17:56:41.4959 Info Copied tagify.min.js -2023-03-10 17:56:41.4959 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html -2023-03-10 17:56:41.4959 Info Copied login.html -2023-03-10 17:56:41.4968 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/createdump to destination: /app/Jackett/createdump -2023-03-10 17:56:41.4968 Info Copied createdump -2023-03-10 17:56:41.4977 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll -2023-03-10 17:56:41.4977 Info Copied DateTimeRoutines.dll -2023-03-10 17:56:41.4977 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb -2023-03-10 17:56:41.4990 Info Copied DateTimeRoutines.pdb -2023-03-10 17:56:41.4990 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml -2023-03-10 17:56:41.4997 Info Copied 0daykiev.yml -2023-03-10 17:56:41.4997 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml -2023-03-10 17:56:41.4997 Info Copied 0magnet.yml -2023-03-10 17:56:41.4997 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml -2023-03-10 17:56:41.5011 Info Copied 1337x.yml -2023-03-10 17:56:41.5011 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml -2023-03-10 17:56:41.5018 Info Copied 1ptbar.yml -2023-03-10 17:56:41.5018 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml -2023-03-10 17:56:41.5018 Info Copied 2fast4you.yml -2023-03-10 17:56:41.5028 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml -2023-03-10 17:56:41.5028 Info Copied 2xfree.yml -2023-03-10 17:56:41.5028 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml -2023-03-10 17:56:41.5040 Info Copied 3changtrai.yml -2023-03-10 17:56:41.5040 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml -2023-03-10 17:56:41.5047 Info Copied 3dtorrents.yml -2023-03-10 17:56:41.5047 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml -2023-03-10 17:56:41.5047 Info Copied 4thd.yml -2023-03-10 17:56:41.5057 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml -2023-03-10 17:56:41.5069 Info Copied 52pt.yml -2023-03-10 17:56:41.5080 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml -2023-03-10 17:56:41.5086 Info Copied abnormal.yml -2023-03-10 17:56:41.5086 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml -2023-03-10 17:56:41.5086 Info Copied abtorrents.yml -2023-03-10 17:56:41.5086 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml -2023-03-10 17:56:41.5101 Info Copied acervos-api.yml -2023-03-10 17:56:41.5101 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml -2023-03-10 17:56:41.5108 Info Copied acgrip.yml -2023-03-10 17:56:41.5108 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml -2023-03-10 17:56:41.5108 Info Copied acgsou.yml -2023-03-10 17:56:41.5117 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml -2023-03-10 17:56:41.5117 Info Copied acidlounge.yml -2023-03-10 17:56:41.5117 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml -2023-03-10 17:56:41.5129 Info Copied acrossthetasman.yml -2023-03-10 17:56:41.5129 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml -2023-03-10 17:56:41.5137 Info Copied aftershock.yml -2023-03-10 17:56:41.5137 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml -2023-03-10 17:56:41.5137 Info Copied aidoruonline.yml -2023-03-10 17:56:41.5137 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml -2023-03-10 17:56:41.5152 Info Copied aither-api.yml -2023-03-10 17:56:41.5152 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml -2023-03-10 17:56:41.5160 Info Copied amigosshare.yml -2023-03-10 17:56:41.5160 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml -2023-03-10 17:56:41.5167 Info Copied anilibria.yml -2023-03-10 17:56:41.5167 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml -2023-03-10 17:56:41.5167 Info Copied anime-free.yml -2023-03-10 17:56:41.5167 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml -2023-03-10 17:56:41.5181 Info Copied animelayer.yml -2023-03-10 17:56:41.5181 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml -2023-03-10 17:56:41.5189 Info Copied animetracker.yml -2023-03-10 17:56:41.5189 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml -2023-03-10 17:56:41.5197 Info Copied animeworld-api.yml -2023-03-10 17:56:41.5197 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml -2023-03-10 17:56:41.5197 Info Copied anirena.yml -2023-03-10 17:56:41.5197 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml -2023-03-10 17:56:41.5210 Info Copied anisource.yml -2023-03-10 17:56:41.5210 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml -2023-03-10 17:56:41.5218 Info Copied anthelion-api.yml -2023-03-10 17:56:41.5218 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml -2023-03-10 17:56:41.5226 Info Copied arabafenice.yml -2023-03-10 17:56:41.5226 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml -2023-03-10 17:56:41.5226 Info Copied arabp2p.yml -2023-03-10 17:56:41.5226 Info Attempting to copy arabtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/arabtorrents.yml to destination: /app/Jackett/Definitions/arabtorrents.yml -2023-03-10 17:56:41.5241 Info Copied arabtorrents.yml -2023-03-10 17:56:41.5241 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml -2023-03-10 17:56:41.5249 Info Copied arenabg.yml -2023-03-10 17:56:41.5249 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml -2023-03-10 17:56:41.5249 Info Copied asiancinema.yml -2023-03-10 17:56:41.5258 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml -2023-03-10 17:56:41.5258 Info Copied asiandvdclub.yml -2023-03-10 17:56:41.5258 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml -2023-03-10 17:56:41.5270 Info Copied audiences.yml -2023-03-10 17:56:41.5270 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml -2023-03-10 17:56:41.5279 Info Copied audionews.yml -2023-03-10 17:56:41.5279 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml -2023-03-10 17:56:41.5279 Info Copied aussierules.yml -2023-03-10 17:56:41.5288 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml -2023-03-10 17:56:41.5288 Info Copied backups.yml -2023-03-10 17:56:41.5288 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml -2023-03-10 17:56:41.5302 Info Copied badasstorrents.yml -2023-03-10 17:56:41.5302 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml -2023-03-10 17:56:41.5309 Info Copied bangumi-moe.yml -2023-03-10 17:56:41.5309 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml -2023-03-10 17:56:41.5317 Info Copied beitai.yml -2023-03-10 17:56:41.5317 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml -2023-03-10 17:56:41.5317 Info Copied bestcore.yml -2023-03-10 17:56:41.5317 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml -2023-03-10 17:56:41.5331 Info Copied beyond-hd.yml -2023-03-10 17:56:41.5331 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml -2023-03-10 17:56:41.5339 Info Copied bibliotik.yml -2023-03-10 17:56:41.5339 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml -2023-03-10 17:56:41.5347 Info Copied bigfangroup.yml -2023-03-10 17:56:41.5347 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml -2023-03-10 17:56:41.5347 Info Copied bitbazis.yml -2023-03-10 17:56:41.5347 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml -2023-03-10 17:56:41.5361 Info Copied bitded.yml -2023-03-10 17:56:41.5361 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml -2023-03-10 17:56:41.5369 Info Copied bithorlo.yml -2023-03-10 17:56:41.5369 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml -2023-03-10 17:56:41.5377 Info Copied bithumen.yml -2023-03-10 17:56:41.5377 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml -2023-03-10 17:56:41.5377 Info Copied bitnova.yml -2023-03-10 17:56:41.5388 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml -2023-03-10 17:56:41.5388 Info Copied bitofvalor.yml -2023-03-10 17:56:41.5388 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml -2023-03-10 17:56:41.5401 Info Copied bitru.yml -2023-03-10 17:56:41.5401 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml -2023-03-10 17:56:41.5409 Info Copied bitsearch.yml -2023-03-10 17:56:41.5409 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml -2023-03-10 17:56:41.5409 Info Copied bitsexy.yml -2023-03-10 17:56:41.5417 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml -2023-03-10 17:56:41.5417 Info Copied bitspyder.yml -2023-03-10 17:56:41.5417 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml -2023-03-10 17:56:41.5430 Info Copied Bittorrentfiles.yml -2023-03-10 17:56:41.5430 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml -2023-03-10 17:56:41.5438 Info Copied bitturk.yml -2023-03-10 17:56:41.5438 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml -2023-03-10 17:56:41.5438 Info Copied bluebird.yml -2023-03-10 17:56:41.5447 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml -2023-03-10 17:56:41.5447 Info Copied blutopia-api.yml -2023-03-10 17:56:41.5447 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml -2023-03-10 17:56:41.5459 Info Copied booktracker.yml -2023-03-10 17:56:41.5459 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml -2023-03-10 17:56:41.5467 Info Copied bootytape.yml -2023-03-10 17:56:41.5467 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml -2023-03-10 17:56:41.5467 Info Copied borgzelle.yml -2023-03-10 17:56:41.5467 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml -2023-03-10 17:56:41.5481 Info Copied boxingtorrents.yml -2023-03-10 17:56:41.5481 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml -2023-03-10 17:56:41.5489 Info Copied broadcity.yml -2023-03-10 17:56:41.5489 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml -2023-03-10 17:56:41.5497 Info Copied brsociety-api.yml -2023-03-10 17:56:41.5497 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml -2023-03-10 17:56:41.5497 Info Copied bt4g.yml -2023-03-10 17:56:41.5497 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml -2023-03-10 17:56:41.5511 Info Copied btdigg.yml -2023-03-10 17:56:41.5511 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml -2023-03-10 17:56:41.5519 Info Copied btetree.yml -2023-03-10 17:56:41.5519 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml -2023-03-10 17:56:41.5519 Info Copied btmet.yml -2023-03-10 17:56:41.5528 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml -2023-03-10 17:56:41.5528 Info Copied btnext.yml -2023-03-10 17:56:41.5528 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml -2023-03-10 17:56:41.5541 Info Copied btschool.yml -2023-03-10 17:56:41.5541 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml -2023-03-10 17:56:41.5548 Info Copied btsow.yml -2023-03-10 17:56:41.5548 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml -2023-03-10 17:56:41.5548 Info Copied bulltorrent.yml -2023-03-10 17:56:41.5557 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml -2023-03-10 17:56:41.5557 Info Copied bwtorrents.yml -2023-03-10 17:56:41.5557 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml -2023-03-10 17:56:41.5571 Info Copied byrbt.yml -2023-03-10 17:56:41.5571 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml -2023-03-10 17:56:41.5578 Info Copied byrutor.yml -2023-03-10 17:56:41.5578 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml -2023-03-10 17:56:41.5578 Info Copied carpathians.yml -2023-03-10 17:56:41.5587 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml -2023-03-10 17:56:41.5587 Info Copied carphunter.yml -2023-03-10 17:56:41.5587 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml -2023-03-10 17:56:41.5600 Info Copied carpt.yml -2023-03-10 17:56:41.5689 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml -2023-03-10 17:56:41.5689 Info Copied cartoonchaos.yml -2023-03-10 17:56:41.5697 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml -2023-03-10 17:56:41.5697 Info Copied cathoderaytube.yml -2023-03-10 17:56:41.5697 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml -2023-03-10 17:56:41.5709 Info Copied catorrent.yml -2023-03-10 17:56:41.5709 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml -2023-03-10 17:56:41.5717 Info Copied ccfbits.yml -2023-03-10 17:56:41.5717 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml -2023-03-10 17:56:41.5727 Info Copied ceskeforum.yml -2023-03-10 17:56:41.5727 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml -2023-03-10 17:56:41.5727 Info Copied chdbits.yml -2023-03-10 17:56:41.5737 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml -2023-03-10 17:56:41.5737 Info Copied chilebt.yml -2023-03-10 17:56:41.5737 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml -2023-03-10 17:56:41.5749 Info Copied cinemageddon.yml -2023-03-10 17:56:41.5749 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml -2023-03-10 17:56:41.5756 Info Copied cinemamovies.yml -2023-03-10 17:56:41.5756 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml -2023-03-10 17:56:41.5756 Info Copied cinematik.yml -2023-03-10 17:56:41.5756 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml -2023-03-10 17:56:41.5770 Info Copied classix.yml -2023-03-10 17:56:41.5770 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml -2023-03-10 17:56:41.5776 Info Copied coastalcrew.yml -2023-03-10 17:56:41.5776 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml -2023-03-10 17:56:41.5776 Info Copied comicat.yml -2023-03-10 17:56:41.5776 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml -2023-03-10 17:56:41.5790 Info Copied concen.yml -2023-03-10 17:56:41.5790 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml -2023-03-10 17:56:41.5798 Info Copied concertos.yml -2023-03-10 17:56:41.5798 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml -2023-03-10 17:56:41.5798 Info Copied cpabien.yml -2023-03-10 17:56:41.5808 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml -2023-03-10 17:56:41.5808 Info Copied cpasbienclone.yml -2023-03-10 17:56:41.5808 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml -2023-03-10 17:56:41.5819 Info Copied cpasbiensi.yml -2023-03-10 17:56:41.5819 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml -2023-03-10 17:56:41.5819 Info Copied crackingpatching.yml -2023-03-10 17:56:41.5828 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml -2023-03-10 17:56:41.5828 Info Copied crazyhd.yml -2023-03-10 17:56:41.5828 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml -2023-03-10 17:56:41.5838 Info Copied crazyspirits.yml -2023-03-10 17:56:41.5838 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml -2023-03-10 17:56:41.5847 Info Copied crnaberza.yml -2023-03-10 17:56:41.5847 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml -2023-03-10 17:56:41.5847 Info Copied crt2fa.yml -2023-03-10 17:56:41.5857 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml -2023-03-10 17:56:41.5857 Info Copied danishbytes-api.yml -2023-03-10 17:56:41.5857 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml -2023-03-10 17:56:41.5872 Info Copied dariustracker.yml -2023-03-10 17:56:41.5872 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml -2023-03-10 17:56:41.5880 Info Copied dark-shadow.yml -2023-03-10 17:56:41.5880 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml -2023-03-10 17:56:41.5888 Info Copied datascene-api.yml -2023-03-10 17:56:41.5888 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml -2023-03-10 17:56:41.5888 Info Copied datatalli.yml -2023-03-10 17:56:41.5898 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml -2023-03-10 17:56:41.5898 Info Copied deildu.yml -2023-03-10 17:56:41.5906 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml -2023-03-10 17:56:41.5906 Info Copied demonoid.yml -2023-03-10 17:56:41.5906 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml -2023-03-10 17:56:41.5920 Info Copied desitorrents-api.yml -2023-03-10 17:56:41.5920 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml -2023-03-10 17:56:41.5928 Info Copied devil-torrents.yml -2023-03-10 17:56:41.5928 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml -2023-03-10 17:56:41.5928 Info Copied diablotorrent.yml -2023-03-10 17:56:41.5938 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml -2023-03-10 17:56:41.5938 Info Copied digitalcore.yml -2023-03-10 17:56:41.5938 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml -2023-03-10 17:56:41.5951 Info Copied dimeadozen.yml -2023-03-10 17:56:41.5951 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml -2023-03-10 17:56:41.5959 Info Copied discfan.yml -2023-03-10 17:56:41.5959 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml -2023-03-10 17:56:41.5967 Info Copied divteam.yml -2023-03-10 17:56:41.5967 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml -2023-03-10 17:56:41.5967 Info Copied dmhy.yml -2023-03-10 17:56:41.5977 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml -2023-03-10 17:56:41.5977 Info Copied docspedia.yml -2023-03-10 17:56:41.5977 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml -2023-03-10 17:56:41.5990 Info Copied dodder.yml -2023-03-10 17:56:41.5990 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml -2023-03-10 17:56:41.5998 Info Copied dreamtracker.yml -2023-03-10 17:56:41.5998 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml -2023-03-10 17:56:41.5998 Info Copied dxp.yml -2023-03-10 17:56:41.6007 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml -2023-03-10 17:56:41.6007 Info Copied ebookbay.yml -2023-03-10 17:56:41.6007 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml -2023-03-10 17:56:41.6020 Info Copied ebooks-shares.yml -2023-03-10 17:56:41.6020 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml -2023-03-10 17:56:41.6028 Info Copied ehentai.yml -2023-03-10 17:56:41.6028 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml -2023-03-10 17:56:41.6028 Info Copied electro-torrent.yml -2023-03-10 17:56:41.6037 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml -2023-03-10 17:56:41.6037 Info Copied empornium.yml -2023-03-10 17:56:41.6037 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml -2023-03-10 17:56:41.6050 Info Copied empornium2fa.yml -2023-03-10 17:56:41.6050 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml -2023-03-10 17:56:41.6057 Info Copied eniahd.yml -2023-03-10 17:56:41.6057 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml -2023-03-10 17:56:41.6057 Info Copied esharenet.yml -2023-03-10 17:56:41.6057 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml -2023-03-10 17:56:41.6071 Info Copied estone.yml -2023-03-10 17:56:41.6071 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml -2023-03-10 17:56:41.6079 Info Copied exkinoray.yml -2023-03-10 17:56:41.6079 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml -2023-03-10 17:56:41.6087 Info Copied extratorrent-st.yml -2023-03-10 17:56:41.6087 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml -2023-03-10 17:56:41.6087 Info Copied extremebits.yml -2023-03-10 17:56:41.6087 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml -2023-03-10 17:56:41.6102 Info Copied extremetorrents.yml -2023-03-10 17:56:41.6102 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml -2023-03-10 17:56:41.6109 Info Copied extremlymtorrents.yml -2023-03-10 17:56:41.6109 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml -2023-03-10 17:56:41.6109 Info Copied exttorrents.yml -2023-03-10 17:56:41.6118 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml -2023-03-10 17:56:41.6118 Info Copied eztv.yml -2023-03-10 17:56:41.6118 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml -2023-03-10 17:56:41.6130 Info Copied falkonvisionteam.yml -2023-03-10 17:56:41.6130 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml -2023-03-10 17:56:41.6138 Info Copied fanoin.yml -2023-03-10 17:56:41.6138 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml -2023-03-10 17:56:41.6138 Info Copied fantasticheaven.yml -2023-03-10 17:56:41.6148 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml -2023-03-10 17:56:41.6148 Info Copied fantastiko.yml -2023-03-10 17:56:41.6148 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml -2023-03-10 17:56:41.6160 Info Copied femdomcult.yml -2023-03-10 17:56:41.6160 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml -2023-03-10 17:56:41.6168 Info Copied fenyarnyek-tracker.yml -2023-03-10 17:56:41.6168 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml -2023-03-10 17:56:41.6168 Info Copied file-tracker.yml -2023-03-10 17:56:41.6177 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml -2023-03-10 17:56:41.6177 Info Copied filelisting.yml -2023-03-10 17:56:41.6177 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml -2023-03-10 17:56:41.6191 Info Copied finelite.yml -2023-03-10 17:56:41.6191 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml -2023-03-10 17:56:41.6198 Info Copied finvip.yml -2023-03-10 17:56:41.6198 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml -2023-03-10 17:56:41.6198 Info Copied firebit.yml -2023-03-10 17:56:41.6207 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml -2023-03-10 17:56:41.6207 Info Copied fluxzone.yml -2023-03-10 17:56:41.6207 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml -2023-03-10 17:56:41.6220 Info Copied freshmeat.yml -2023-03-10 17:56:41.6220 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml -2023-03-10 17:56:41.6228 Info Copied frozenlayer.yml -2023-03-10 17:56:41.6228 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml -2023-03-10 17:56:41.6228 Info Copied ftuapps.yml -2023-03-10 17:56:41.6238 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml -2023-03-10 17:56:41.6238 Info Copied funkytorrents.yml -2023-03-10 17:56:41.6238 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml -2023-03-10 17:56:41.6251 Info Copied fuzer.yml -2023-03-10 17:56:41.6251 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml -2023-03-10 17:56:41.6259 Info Copied gainbound.yml -2023-03-10 17:56:41.6259 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml -2023-03-10 17:56:41.6267 Info Copied gamestorrents.yml -2023-03-10 17:56:41.6267 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml -2023-03-10 17:56:41.6267 Info Copied gay-torrents.yml -2023-03-10 17:56:41.6277 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml -2023-03-10 17:56:41.6277 Info Copied gay-torrentsorg.yml -2023-03-10 17:56:41.6277 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml -2023-03-10 17:56:41.6290 Info Copied gaytorrentru.yml -2023-03-10 17:56:41.6290 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml -2023-03-10 17:56:41.6297 Info Copied generationfree-api.yml -2023-03-10 17:56:41.6297 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml -2023-03-10 17:56:41.6297 Info Copied genesismovement.yml -2023-03-10 17:56:41.6307 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml -2023-03-10 17:56:41.6307 Info Copied gigatorrents.yml -2023-03-10 17:56:41.6307 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml -2023-03-10 17:56:41.6321 Info Copied gimmepeers.yml -2023-03-10 17:56:41.6321 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml -2023-03-10 17:56:41.6329 Info Copied girotorrent.yml -2023-03-10 17:56:41.6329 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml -2023-03-10 17:56:41.6329 Info Copied gktorrent.yml -2023-03-10 17:56:41.6338 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml -2023-03-10 17:56:41.6338 Info Copied glodls.yml -2023-03-10 17:56:41.6338 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml -2023-03-10 17:56:41.6351 Info Copied greekdiamond.yml -2023-03-10 17:56:41.6351 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml -2023-03-10 17:56:41.6358 Info Copied greekteam.yml -2023-03-10 17:56:41.6358 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml -2023-03-10 17:56:41.6358 Info Copied gtorrentpro.yml -2023-03-10 17:56:41.6367 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml -2023-03-10 17:56:41.6367 Info Copied haidan.yml -2023-03-10 17:56:41.6367 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml -2023-03-10 17:56:41.6380 Info Copied haitang.yml -2023-03-10 17:56:41.6380 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml -2023-03-10 17:56:41.6388 Info Copied happyfappy.yml -2023-03-10 17:56:41.6388 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml -2023-03-10 17:56:41.6388 Info Copied hawke-uno.yml -2023-03-10 17:56:41.6398 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml -2023-03-10 17:56:41.6398 Info Copied hd-unit3d-api.yml -2023-03-10 17:56:41.6398 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml -2023-03-10 17:56:41.6412 Info Copied hd4fans.yml -2023-03-10 17:56:41.6412 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml -2023-03-10 17:56:41.6420 Info Copied hdarea.yml -2023-03-10 17:56:41.6420 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml -2023-03-10 17:56:41.6427 Info Copied hdatmos.yml -2023-03-10 17:56:41.6427 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml -2023-03-10 17:56:41.6427 Info Copied hdc.yml -2023-03-10 17:56:41.6437 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml -2023-03-10 17:56:41.6437 Info Copied hdchina.yml -2023-03-10 17:56:41.6447 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml -2023-03-10 17:56:41.6447 Info Copied hdcztorrent.yml -2023-03-10 17:56:41.6457 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml -2023-03-10 17:56:41.6457 Info Copied hddolby.yml -2023-03-10 17:56:41.6468 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml -2023-03-10 17:56:41.6468 Info Copied hdfans.yml -2023-03-10 17:56:41.6480 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml -2023-03-10 17:56:41.6487 Info Copied hdforever.yml -2023-03-10 17:56:41.6487 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml -2023-03-10 17:56:41.6497 Info Copied hdgalaktik.yml -2023-03-10 17:56:41.6497 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml -2023-03-10 17:56:41.6497 Info Copied hdhome.yml -2023-03-10 17:56:41.6508 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml -2023-03-10 17:56:41.6508 Info Copied hdmayi.yml -2023-03-10 17:56:41.6508 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml -2023-03-10 17:56:41.6522 Info Copied hdmonkey.yml -2023-03-10 17:56:41.6522 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml -2023-03-10 17:56:41.6530 Info Copied hdolimpo-api.yml -2023-03-10 17:56:41.6530 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml -2023-03-10 17:56:41.6538 Info Copied hdonly.yml -2023-03-10 17:56:41.6538 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml -2023-03-10 17:56:41.6538 Info Copied hdroute.yml -2023-03-10 17:56:41.6548 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml -2023-03-10 17:56:41.6548 Info Copied hdsky.yml -2023-03-10 17:56:41.6548 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml -2023-03-10 17:56:41.6561 Info Copied hdtime.yml -2023-03-10 17:56:41.6561 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml -2023-03-10 17:56:41.6569 Info Copied hdtorrentsit.yml -2023-03-10 17:56:41.6569 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml -2023-03-10 17:56:41.6577 Info Copied hdturk.yml -2023-03-10 17:56:41.6577 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml -2023-03-10 17:56:41.6577 Info Copied hdu.yml -2023-03-10 17:56:41.6587 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml -2023-03-10 17:56:41.6587 Info Copied hdzone.yml -2023-03-10 17:56:41.6587 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml -2023-03-10 17:56:41.6600 Info Copied hebits.yml -2023-03-10 17:56:41.6600 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml -2023-03-10 17:56:41.6608 Info Copied hellashut.yml -2023-03-10 17:56:41.6608 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml -2023-03-10 17:56:41.6608 Info Copied hhanclub.yml -2023-03-10 17:56:41.6618 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml -2023-03-10 17:56:41.6618 Info Copied houseofdevil.yml -2023-03-10 17:56:41.6627 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml -2023-03-10 17:56:41.6627 Info Copied hqmusic.yml -2023-03-10 17:56:41.6627 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml -2023-03-10 17:56:41.6641 Info Copied huntorrent.yml -2023-03-10 17:56:41.6641 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml -2023-03-10 17:56:41.6649 Info Copied icc2022.yml -2023-03-10 17:56:41.6649 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml -2023-03-10 17:56:41.6656 Info Copied idope.yml -2023-03-10 17:56:41.6656 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml -2023-03-10 17:56:41.6656 Info Copied ihdbits.yml -2023-03-10 17:56:41.6667 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml -2023-03-10 17:56:41.6667 Info Copied ilcorsaroblu.yml -2023-03-10 17:56:41.6667 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml -2023-03-10 17:56:41.6681 Info Copied ilcorsaronero.yml -2023-03-10 17:56:41.6681 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml -2023-03-10 17:56:41.6688 Info Copied immortuos.yml -2023-03-10 17:56:41.6688 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml -2023-03-10 17:56:41.6688 Info Copied indietorrents.yml -2023-03-10 17:56:41.6699 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml -2023-03-10 17:56:41.6699 Info Copied insanetracker.yml -2023-03-10 17:56:41.6699 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml -2023-03-10 17:56:41.6710 Info Copied internetarchive.yml -2023-03-10 17:56:41.6710 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml -2023-03-10 17:56:41.6718 Info Copied isohunt2.yml -2023-03-10 17:56:41.6718 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml -2023-03-10 17:56:41.6718 Info Copied itorrent.yml -2023-03-10 17:56:41.6727 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml -2023-03-10 17:56:41.6727 Info Copied jav-torrent.yml -2023-03-10 17:56:41.6727 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml -2023-03-10 17:56:41.6742 Info Copied jme-reunit3d-api.yml -2023-03-10 17:56:41.6742 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml -2023-03-10 17:56:41.6751 Info Copied joyhd.yml -2023-03-10 17:56:41.6751 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml -2023-03-10 17:56:41.6758 Info Copied jpopsuki.yml -2023-03-10 17:56:41.6758 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml -2023-03-10 17:56:41.6758 Info Copied jptv.yml -2023-03-10 17:56:41.6768 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml -2023-03-10 17:56:41.6768 Info Copied karagarga.yml -2023-03-10 17:56:41.6768 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml -2023-03-10 17:56:41.6781 Info Copied keepfriends.yml -2023-03-10 17:56:41.6781 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml -2023-03-10 17:56:41.6789 Info Copied kickasstorrents-to.yml -2023-03-10 17:56:41.6789 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml -2023-03-10 17:56:41.6789 Info Copied kickasstorrents-ws.yml -2023-03-10 17:56:41.6798 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml -2023-03-10 17:56:41.6798 Info Copied kinorun.yml -2023-03-10 17:56:41.6798 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml -2023-03-10 17:56:41.6812 Info Copied kinozal.yml -2023-03-10 17:56:41.6812 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml -2023-03-10 17:56:41.6820 Info Copied knaben.yml -2023-03-10 17:56:41.6820 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml -2023-03-10 17:56:41.6829 Info Copied korsar.yml -2023-03-10 17:56:41.6829 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml -2023-03-10 17:56:41.6837 Info Copied krazyzone.yml -2023-03-10 17:56:41.6837 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml -2023-03-10 17:56:41.6837 Info Copied kufirc.yml -2023-03-10 17:56:41.6837 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml -2023-03-10 17:56:41.6852 Info Copied lastfiles.yml -2023-03-10 17:56:41.6852 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml -2023-03-10 17:56:41.6859 Info Copied lat-team-api.yml -2023-03-10 17:56:41.6859 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml -2023-03-10 17:56:41.6867 Info Copied learnbits.yml -2023-03-10 17:56:41.6867 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml -2023-03-10 17:56:41.6867 Info Copied learnflakes.yml -2023-03-10 17:56:41.6878 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml -2023-03-10 17:56:41.6878 Info Copied leech24.yml -2023-03-10 17:56:41.6878 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml -2023-03-10 17:56:41.6891 Info Copied lemonhd.yml -2023-03-10 17:56:41.6891 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml -2023-03-10 17:56:41.6899 Info Copied lepornoinfo.yml -2023-03-10 17:56:41.6899 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml -2023-03-10 17:56:41.6908 Info Copied les-cinephiles.yml -2023-03-10 17:56:41.6908 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml -2023-03-10 17:56:41.6908 Info Copied lesaloon.yml -2023-03-10 17:56:41.6917 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml -2023-03-10 17:56:41.6917 Info Copied libranet.yml -2023-03-10 17:56:41.6917 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml -2023-03-10 17:56:41.6930 Info Copied limetorrents.yml -2023-03-10 17:56:41.6930 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml -2023-03-10 17:56:41.6937 Info Copied limetorrentsclone.yml -2023-03-10 17:56:41.6937 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml -2023-03-10 17:56:41.6937 Info Copied linkomanija.yml -2023-03-10 17:56:41.6947 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml -2023-03-10 17:56:41.6947 Info Copied linuxtracker.yml -2023-03-10 17:56:41.6957 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml -2023-03-10 17:56:41.6957 Info Copied locadora.yml -2023-03-10 17:56:41.6957 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml -2023-03-10 17:56:41.6971 Info Copied losslessclub.yml -2023-03-10 17:56:41.6971 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml -2023-03-10 17:56:41.6978 Info Copied lst.yml -2023-03-10 17:56:41.6978 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml -2023-03-10 17:56:41.6978 Info Copied mactorrentsdownload.yml -2023-03-10 17:56:41.6988 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml -2023-03-10 17:56:41.6988 Info Copied madsrevolution.yml -2023-03-10 17:56:41.6988 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml -2023-03-10 17:56:41.7001 Info Copied magicheaven.yml -2023-03-10 17:56:41.7001 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml -2023-03-10 17:56:41.7008 Info Copied magico.yml -2023-03-10 17:56:41.7008 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml -2023-03-10 17:56:41.7008 Info Copied majomparade.yml -2023-03-10 17:56:41.7018 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml -2023-03-10 17:56:41.7018 Info Copied marinetracker.yml -2023-03-10 17:56:41.7018 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml -2023-03-10 17:56:41.7032 Info Copied mazepa.yml -2023-03-10 17:56:41.7032 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml -2023-03-10 17:56:41.7039 Info Copied megamixtracker.yml -2023-03-10 17:56:41.7039 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml -2023-03-10 17:56:41.7047 Info Copied megapeer.yml -2023-03-10 17:56:41.7047 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml -2023-03-10 17:56:41.7047 Info Copied mesevilag.yml -2023-03-10 17:56:41.7047 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml -2023-03-10 17:56:41.7061 Info Copied metaltracker.yml -2023-03-10 17:56:41.7061 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml -2023-03-10 17:56:41.7069 Info Copied mikan.yml -2023-03-10 17:56:41.7069 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml -2023-03-10 17:56:41.7077 Info Copied milkie.yml -2023-03-10 17:56:41.7077 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml -2023-03-10 17:56:41.7077 Info Copied miobt.yml -2023-03-10 17:56:41.7077 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml -2023-03-10 17:56:41.7092 Info Copied mircrew.yml -2023-03-10 17:56:41.7092 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml -2023-03-10 17:56:41.7100 Info Copied mixtapetorrent.yml -2023-03-10 17:56:41.7100 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml -2023-03-10 17:56:41.7107 Info Copied mma-torrents.yml -2023-03-10 17:56:41.7107 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml -2023-03-10 17:56:41.7107 Info Copied mnv.yml -2023-03-10 17:56:41.7117 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml -2023-03-10 17:56:41.7117 Info Copied mojblink.yml -2023-03-10 17:56:41.7117 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml -2023-03-10 17:56:41.7129 Info Copied mousebits.yml -2023-03-10 17:56:41.7129 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml -2023-03-10 17:56:41.7137 Info Copied moviesdvdr.yml -2023-03-10 17:56:41.7137 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml -2023-03-10 17:56:41.7137 Info Copied moviesite.yml -2023-03-10 17:56:41.7137 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml -2023-03-10 17:56:41.7152 Info Copied movietorrent.yml -2023-03-10 17:56:41.7152 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml -2023-03-10 17:56:41.7159 Info Copied movietorrentz.yml -2023-03-10 17:56:41.7159 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml -2023-03-10 17:56:41.7168 Info Copied mteamtp.yml -2023-03-10 17:56:41.7168 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml -2023-03-10 17:56:41.7168 Info Copied mteamtp2fa.yml -2023-03-10 17:56:41.7178 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml -2023-03-10 17:56:41.7178 Info Copied muziekfabriek.yml -2023-03-10 17:56:41.7178 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml -2023-03-10 17:56:41.7191 Info Copied mvgroupforum.yml -2023-03-10 17:56:41.7191 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml -2023-03-10 17:56:41.7199 Info Copied mvgroupmain.yml -2023-03-10 17:56:41.7199 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml -2023-03-10 17:56:41.7199 Info Copied mypornclub.yml -2023-03-10 17:56:41.7208 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml -2023-03-10 17:56:41.7208 Info Copied myspleen.yml -2023-03-10 17:56:41.7208 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml -2023-03-10 17:56:41.7222 Info Copied nethd.yml -2023-03-10 17:56:41.7222 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml -2023-03-10 17:56:41.7230 Info Copied newretro.yml -2023-03-10 17:56:41.7230 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml -2023-03-10 17:56:41.7245 Info Copied newstudio.yml -2023-03-10 17:56:41.7245 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml -2023-03-10 17:56:41.7245 Info Copied newstudiol.yml -2023-03-10 17:56:41.7245 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml -2023-03-10 17:56:41.7259 Info Copied nicept.yml -2023-03-10 17:56:41.7259 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml -2023-03-10 17:56:41.7268 Info Copied nipponsei.yml -2023-03-10 17:56:41.7268 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml -2023-03-10 17:56:41.7268 Info Copied nntt.yml -2023-03-10 17:56:41.7278 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml -2023-03-10 17:56:41.7278 Info Copied noname-club.yml -2023-03-10 17:56:41.7278 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml -2023-03-10 17:56:41.7292 Info Copied noname-clubl.yml -2023-03-10 17:56:41.7292 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml -2023-03-10 17:56:41.7299 Info Copied nyaasi.yml -2023-03-10 17:56:41.7299 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml -2023-03-10 17:56:41.7307 Info Copied oldtoonsworld.yml -2023-03-10 17:56:41.7307 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml -2023-03-10 17:56:41.7307 Info Copied onejav.yml -2023-03-10 17:56:41.7307 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml -2023-03-10 17:56:41.7322 Info Copied opencd.yml -2023-03-10 17:56:41.7322 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml -2023-03-10 17:56:41.7330 Info Copied oshenpt.yml -2023-03-10 17:56:41.7330 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml -2023-03-10 17:56:41.7338 Info Copied ourbits.yml -2023-03-10 17:56:41.7338 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml -2023-03-10 17:56:41.7347 Info Copied p2pbg.yml -2023-03-10 17:56:41.7347 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml -2023-03-10 17:56:41.7347 Info Copied parnuxi.yml -2023-03-10 17:56:41.7347 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml -2023-03-10 17:56:41.7361 Info Copied partis.yml -2023-03-10 17:56:41.7361 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml -2023-03-10 17:56:41.7369 Info Copied pctorrent.yml -2023-03-10 17:56:41.7369 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml -2023-03-10 17:56:41.7369 Info Copied peeratiko.yml -2023-03-10 17:56:41.7378 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml -2023-03-10 17:56:41.7420 Info Copied peersfm.yml -2023-03-10 17:56:41.7420 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml -2023-03-10 17:56:41.7420 Info Copied pier720.yml -2023-03-10 17:56:41.7427 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml -2023-03-10 17:56:41.7427 Info Copied pignetwork.yml -2023-03-10 17:56:41.7427 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml -2023-03-10 17:56:41.7439 Info Copied piratbit.yml -2023-03-10 17:56:41.7439 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml -2023-03-10 17:56:41.7439 Info Copied piratbitl.yml -2023-03-10 17:56:41.7447 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml -2023-03-10 17:56:41.7447 Info Copied pixelcove.yml -2023-03-10 17:56:41.7447 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml -2023-03-10 17:56:41.7457 Info Copied pixelcove2fa.yml -2023-03-10 17:56:41.7457 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml -2023-03-10 17:56:41.7457 Info Copied polishsource.yml -2023-03-10 17:56:41.7457 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml -2023-03-10 17:56:41.7469 Info Copied polishtracker-api.yml -2023-03-10 17:56:41.7469 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml -2023-03-10 17:56:41.7469 Info Copied pornbay.yml -2023-03-10 17:56:41.7469 Info Attempting to copy pornforall.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pornforall.yml to destination: /app/Jackett/Definitions/pornforall.yml -2023-03-10 17:56:41.7480 Info Copied pornforall.yml -2023-03-10 17:56:41.7480 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml -2023-03-10 17:56:41.7480 Info Copied pornoslab.yml -2023-03-10 17:56:41.7487 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml -2023-03-10 17:56:41.7487 Info Copied pornotorrent.yml -2023-03-10 17:56:41.7487 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml -2023-03-10 17:56:41.7496 Info Copied portugas-api.yml -2023-03-10 17:56:41.7496 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml -2023-03-10 17:56:41.7496 Info Copied potuk.yml -2023-03-10 17:56:41.7496 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml -2023-03-10 17:56:41.7507 Info Copied proaudiotorrents.yml -2023-03-10 17:56:41.7507 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml -2023-03-10 17:56:41.7507 Info Copied proporno.yml -2023-03-10 17:56:41.7507 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml -2023-03-10 17:56:41.7519 Info Copied ptchina.yml -2023-03-10 17:56:41.7519 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml -2023-03-10 17:56:41.7519 Info Copied pterclub.yml -2023-03-10 17:56:41.7526 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml -2023-03-10 17:56:41.7526 Info Copied ptfiles.yml -2023-03-10 17:56:41.7526 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml -2023-03-10 17:56:41.7526 Info Copied pthome.yml -2023-03-10 17:56:41.7537 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml -2023-03-10 17:56:41.7537 Info Copied ptmsg.yml -2023-03-10 17:56:41.7537 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml -2023-03-10 17:56:41.7547 Info Copied ptsbao.yml -2023-03-10 17:56:41.7547 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml -2023-03-10 17:56:41.7547 Info Copied pttime.yml -2023-03-10 17:56:41.7547 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml -2023-03-10 17:56:41.7558 Info Copied punkshorror.yml -2023-03-10 17:56:41.7558 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml -2023-03-10 17:56:41.7558 Info Copied puntotorrent.yml -2023-03-10 17:56:41.7558 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml -2023-03-10 17:56:41.7569 Info Copied pussytorrents.yml -2023-03-10 17:56:41.7569 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml -2023-03-10 17:56:41.7569 Info Copied putao.yml -2023-03-10 17:56:41.7569 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml -2023-03-10 17:56:41.7580 Info Copied puurhollands.yml -2023-03-10 17:56:41.7580 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml -2023-03-10 17:56:41.7580 Info Copied pwtorrents.yml -2023-03-10 17:56:41.7587 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml -2023-03-10 17:56:41.7587 Info Copied r3vwtf.yml -2023-03-10 17:56:41.7587 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml -2023-03-10 17:56:41.7597 Info Copied racing4everyone-api.yml -2023-03-10 17:56:41.7597 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml -2023-03-10 17:56:41.7597 Info Copied racingforme.yml -2023-03-10 17:56:41.7597 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml -2023-03-10 17:56:41.7608 Info Copied rainbowtracker.yml -2023-03-10 17:56:41.7608 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml -2023-03-10 17:56:41.7608 Info Copied rapidzona.yml -2023-03-10 17:56:41.7608 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml -2023-03-10 17:56:41.7619 Info Copied redbits-api.yml -2023-03-10 17:56:41.7619 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml -2023-03-10 17:56:41.7619 Info Copied redstartorrent.yml -2023-03-10 17:56:41.7619 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml -2023-03-10 17:56:41.7630 Info Copied reelflix-api.yml -2023-03-10 17:56:41.7630 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml -2023-03-10 17:56:41.7630 Info Copied resurrectthenet.yml -2023-03-10 17:56:41.7637 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml -2023-03-10 17:56:41.7637 Info Copied rgfootball.yml -2023-03-10 17:56:41.7637 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml -2023-03-10 17:56:41.7647 Info Copied rintor.yml -2023-03-10 17:56:41.7647 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml -2023-03-10 17:56:41.7647 Info Copied rintornet.yml -2023-03-10 17:56:41.7647 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml -2023-03-10 17:56:41.7659 Info Copied riperam.yml -2023-03-10 17:56:41.7659 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml -2023-03-10 17:56:41.7659 Info Copied rockbox.yml -2023-03-10 17:56:41.7659 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml -2023-03-10 17:56:41.7670 Info Copied romanianmetaltorrents.yml -2023-03-10 17:56:41.7670 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml -2023-03-10 17:56:41.7670 Info Copied rptorrents.yml -2023-03-10 17:56:41.7677 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml -2023-03-10 17:56:41.7677 Info Copied rudub.yml -2023-03-10 17:56:41.7677 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml -2023-03-10 17:56:41.7687 Info Copied rus-media.yml -2023-03-10 17:56:41.7687 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml -2023-03-10 17:56:41.7687 Info Copied rustorka.yml -2023-03-10 17:56:41.7687 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml -2023-03-10 17:56:41.7699 Info Copied rutor.yml -2023-03-10 17:56:41.7699 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml -2023-03-10 17:56:41.7699 Info Copied rutracker-ru.yml -2023-03-10 17:56:41.7707 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml -2023-03-10 17:56:41.7707 Info Copied satclubbing.yml -2023-03-10 17:56:41.7707 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml -2023-03-10 17:56:41.7717 Info Copied scenerush.yml -2023-03-10 17:56:41.7717 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml -2023-03-10 17:56:41.7717 Info Copied sdbits.yml -2023-03-10 17:56:41.7717 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml -2023-03-10 17:56:41.7728 Info Copied seedfile.yml -2023-03-10 17:56:41.7728 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml -2023-03-10 17:56:41.7728 Info Copied seedoff.yml -2023-03-10 17:56:41.7728 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml -2023-03-10 17:56:41.7739 Info Copied selezen.yml -2023-03-10 17:56:41.7739 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml -2023-03-10 17:56:41.7739 Info Copied sexypics.yml -2023-03-10 17:56:41.7739 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml -2023-03-10 17:56:41.7750 Info Copied shanaproject.yml -2023-03-10 17:56:41.7750 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml -2023-03-10 17:56:41.7750 Info Copied shareisland-api.yml -2023-03-10 17:56:41.7757 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml -2023-03-10 17:56:41.7757 Info Copied sharewood.yml -2023-03-10 17:56:41.7757 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml -2023-03-10 17:56:41.7767 Info Copied sharkpt.yml -2023-03-10 17:56:41.7767 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml -2023-03-10 17:56:41.7767 Info Copied showrss.yml -2023-03-10 17:56:41.7767 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml -2023-03-10 17:56:41.7778 Info Copied siambit.yml -2023-03-10 17:56:41.7778 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml -2023-03-10 17:56:41.7778 Info Copied skipthecommercials-api.yml -2023-03-10 17:56:41.7778 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml -2023-03-10 17:56:41.7789 Info Copied skipthetrailers.yml -2023-03-10 17:56:41.7789 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml -2023-03-10 17:56:41.7789 Info Copied sktorrent-org.yml -2023-03-10 17:56:41.7797 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml -2023-03-10 17:56:41.7797 Info Copied sktorrent.yml -2023-03-10 17:56:41.7797 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml -2023-03-10 17:56:41.7797 Info Copied slosoul.yml -2023-03-10 17:56:41.7808 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml -2023-03-10 17:56:41.7808 Info Copied snowpt.yml -2023-03-10 17:56:41.7808 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml -2023-03-10 17:56:41.7817 Info Copied solidtorrents.yml -2023-03-10 17:56:41.7817 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml -2023-03-10 17:56:41.7817 Info Copied sosulki.yml -2023-03-10 17:56:41.7817 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml -2023-03-10 17:56:41.7828 Info Copied soulvoice.yml -2023-03-10 17:56:41.7828 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml -2023-03-10 17:56:41.7828 Info Copied speedmasterhd.yml -2023-03-10 17:56:41.7828 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml -2023-03-10 17:56:41.7839 Info Copied speedtorrentreloaded.yml -2023-03-10 17:56:41.7839 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml -2023-03-10 17:56:41.7839 Info Copied spidertk.yml -2023-03-10 17:56:41.7846 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml -2023-03-10 17:56:41.7846 Info Copied spiritofrevolution.yml -2023-03-10 17:56:41.7846 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml -2023-03-10 17:56:41.7846 Info Copied sporthd.yml -2023-03-10 17:56:41.7858 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml -2023-03-10 17:56:41.7858 Info Copied sportscult.yml -2023-03-10 17:56:41.7858 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml -2023-03-10 17:56:41.7867 Info Copied springsunday.yml -2023-03-10 17:56:41.7867 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml -2023-03-10 17:56:41.7867 Info Copied sugoimusic.yml -2023-03-10 17:56:41.7867 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml -2023-03-10 17:56:41.7878 Info Copied sukebeinyaasi.yml -2023-03-10 17:56:41.7878 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml -2023-03-10 17:56:41.7878 Info Copied superbits.yml -2023-03-10 17:56:41.7878 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml -2023-03-10 17:56:41.7889 Info Copied swarmazon-api.yml -2023-03-10 17:56:41.7889 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml -2023-03-10 17:56:41.7889 Info Copied tapochek.yml -2023-03-10 17:56:41.7897 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml -2023-03-10 17:56:41.7897 Info Copied tasmanit.yml -2023-03-10 17:56:41.7897 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml -2023-03-10 17:56:41.7907 Info Copied teamctgame.yml -2023-03-10 17:56:41.7907 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml -2023-03-10 17:56:41.7907 Info Copied teamhd.yml -2023-03-10 17:56:41.7907 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml -2023-03-10 17:56:41.7918 Info Copied teamos.yml -2023-03-10 17:56:41.7918 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml -2023-03-10 17:56:41.7918 Info Copied tekno3d.yml -2023-03-10 17:56:41.7918 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml -2023-03-10 17:56:41.7929 Info Copied tellytorrent-api.yml -2023-03-10 17:56:41.7929 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml -2023-03-10 17:56:41.7929 Info Copied teracod.yml -2023-03-10 17:56:41.7929 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml -2023-03-10 17:56:41.7940 Info Copied the-crazy-ones.yml -2023-03-10 17:56:41.7940 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml -2023-03-10 17:56:41.7940 Info Copied thedarkcommunity-api.yml -2023-03-10 17:56:41.7948 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml -2023-03-10 17:56:41.7948 Info Copied theempire.yml -2023-03-10 17:56:41.7948 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml -2023-03-10 17:56:41.7957 Info Copied thefallingangels.yml -2023-03-10 17:56:41.7957 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml -2023-03-10 17:56:41.7957 Info Copied thegeeks.yml -2023-03-10 17:56:41.7957 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml -2023-03-10 17:56:41.7969 Info Copied theleachzone.yml -2023-03-10 17:56:41.7969 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml -2023-03-10 17:56:41.7969 Info Copied themixingbowl.yml -2023-03-10 17:56:41.7978 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml -2023-03-10 17:56:41.7978 Info Copied thenewfun.yml -2023-03-10 17:56:41.7978 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml -2023-03-10 17:56:41.7988 Info Copied theoccult.yml -2023-03-10 17:56:41.7988 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml -2023-03-10 17:56:41.7988 Info Copied theoldschool-api.yml -2023-03-10 17:56:41.7988 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml -2023-03-10 17:56:41.7999 Info Copied thepiratebay.yml -2023-03-10 17:56:41.7999 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml -2023-03-10 17:56:41.7999 Info Copied theplace.yml -2023-03-10 17:56:41.8006 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml -2023-03-10 17:56:41.8006 Info Copied thesceneplace.yml -2023-03-10 17:56:41.8006 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml -2023-03-10 17:56:41.8016 Info Copied theshinning-api.yml -2023-03-10 17:56:41.8016 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml -2023-03-10 17:56:41.8016 Info Copied theshow.yml -2023-03-10 17:56:41.8016 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml -2023-03-10 17:56:41.8028 Info Copied thevault.yml -2023-03-10 17:56:41.8028 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml -2023-03-10 17:56:41.8028 Info Copied tjupt.yml -2023-03-10 17:56:41.8028 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml -2023-03-10 17:56:41.8039 Info Copied tlfbits.yml -2023-03-10 17:56:41.8039 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml -2023-03-10 17:56:41.8039 Info Copied tmghub.yml -2023-03-10 17:56:41.8039 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml -2023-03-10 17:56:41.8050 Info Copied tokyotosho.yml -2023-03-10 17:56:41.8050 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml -2023-03-10 17:56:41.8050 Info Copied torlock.yml -2023-03-10 17:56:41.8057 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml -2023-03-10 17:56:41.8057 Info Copied tornado.yml -2023-03-10 17:56:41.8057 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml -2023-03-10 17:56:41.8067 Info Copied torrent-explosiv.yml -2023-03-10 17:56:41.8067 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml -2023-03-10 17:56:41.8067 Info Copied torrent-pirat.yml -2023-03-10 17:56:41.8067 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml -2023-03-10 17:56:41.8078 Info Copied torrent-turk.yml -2023-03-10 17:56:41.8078 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml -2023-03-10 17:56:41.8078 Info Copied torrent9.yml -2023-03-10 17:56:41.8078 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml -2023-03-10 17:56:41.8089 Info Copied torrent911.yml -2023-03-10 17:56:41.8089 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml -2023-03-10 17:56:41.8089 Info Copied torrent9clone.yml -2023-03-10 17:56:41.8089 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml -2023-03-10 17:56:41.8100 Info Copied torrentbd.yml -2023-03-10 17:56:41.8100 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml -2023-03-10 17:56:41.8100 Info Copied torrentby.yml -2023-03-10 17:56:41.8107 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml -2023-03-10 17:56:41.8107 Info Copied torrentccf.yml -2023-03-10 17:56:41.8107 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml -2023-03-10 17:56:41.8117 Info Copied torrentcore.yml -2023-03-10 17:56:41.8117 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml -2023-03-10 17:56:41.8117 Info Copied torrentdownload.yml -2023-03-10 17:56:41.8117 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml -2023-03-10 17:56:41.8128 Info Copied torrentdownloads.yml -2023-03-10 17:56:41.8128 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml -2023-03-10 17:56:41.8128 Info Copied torrentfunk.yml -2023-03-10 17:56:41.8128 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml -2023-03-10 17:56:41.8138 Info Copied torrentgalaxy.yml -2023-03-10 17:56:41.8138 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml -2023-03-10 17:56:41.8138 Info Copied torrenthr.yml -2023-03-10 17:56:41.8138 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml -2023-03-10 17:56:41.8150 Info Copied torrenting.yml -2023-03-10 17:56:41.8150 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml -2023-03-10 17:56:41.8150 Info Copied torrentkitty.yml -2023-03-10 17:56:41.8157 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml -2023-03-10 17:56:41.8157 Info Copied torrentland.yml -2023-03-10 17:56:41.8157 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml -2023-03-10 17:56:41.8166 Info Copied torrentleech-pl.yml -2023-03-10 17:56:41.8166 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml -2023-03-10 17:56:41.8166 Info Copied torrentleech.yml -2023-03-10 17:56:41.8166 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml -2023-03-10 17:56:41.8177 Info Copied torrentlt.yml -2023-03-10 17:56:41.8177 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml -2023-03-10 17:56:41.8177 Info Copied torrentmasters.yml -2023-03-10 17:56:41.8177 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml -2023-03-10 17:56:41.8188 Info Copied torrentoyunindir.yml -2023-03-10 17:56:41.8188 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml -2023-03-10 17:56:41.8188 Info Copied torrentproject2.yml -2023-03-10 17:56:41.8188 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml -2023-03-10 17:56:41.8199 Info Copied torrentqq.yml -2023-03-10 17:56:41.8199 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml -2023-03-10 17:56:41.8199 Info Copied torrentsectorcrew.yml -2023-03-10 17:56:41.8207 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml -2023-03-10 17:56:41.8207 Info Copied torrentseeds-api.yml -2023-03-10 17:56:41.8207 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml -2023-03-10 17:56:41.8207 Info Copied torrentsir.yml -2023-03-10 17:56:41.8218 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml -2023-03-10 17:56:41.8218 Info Copied torrentslocal.yml -2023-03-10 17:56:41.8218 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml -2023-03-10 17:56:41.8228 Info Copied torrentv.yml -2023-03-10 17:56:41.8228 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml -2023-03-10 17:56:41.8228 Info Copied torrentview.yml -2023-03-10 17:56:41.8228 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml -2023-03-10 17:56:41.8239 Info Copied torrentwhiz.yml -2023-03-10 17:56:41.8239 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml -2023-03-10 17:56:41.8239 Info Copied torrentz2eu.yml -2023-03-10 17:56:41.8239 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml -2023-03-10 17:56:41.8250 Info Copied torrentz2nz.yml -2023-03-10 17:56:41.8250 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml -2023-03-10 17:56:41.8250 Info Copied totallykids.yml -2023-03-10 17:56:41.8257 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml -2023-03-10 17:56:41.8257 Info Copied totheglory.yml -2023-03-10 17:56:41.8257 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml -2023-03-10 17:56:41.8266 Info Copied totheglorycookie.yml -2023-03-10 17:56:41.8266 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml -2023-03-10 17:56:41.8266 Info Copied traht.yml -2023-03-10 17:56:41.8266 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml -2023-03-10 17:56:41.8277 Info Copied trancetraffic.yml -2023-03-10 17:56:41.8277 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml -2023-03-10 17:56:41.8277 Info Copied trezzor.yml -2023-03-10 17:56:41.8277 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml -2023-03-10 17:56:41.8289 Info Copied tribalmixes.yml -2023-03-10 17:56:41.8289 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml -2023-03-10 17:56:41.8289 Info Copied trupornolabs.yml -2023-03-10 17:56:41.8289 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml -2023-03-10 17:56:41.8300 Info Copied turkseed.yml -2023-03-10 17:56:41.8300 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml -2023-03-10 17:56:41.8300 Info Copied turktorrent.yml -2023-03-10 17:56:41.8307 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml -2023-03-10 17:56:41.8307 Info Copied tvchaosuk.yml -2023-03-10 17:56:41.8307 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml -2023-03-10 17:56:41.8317 Info Copied tvroad.yml -2023-03-10 17:56:41.8317 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml -2023-03-10 17:56:41.8317 Info Copied twilight.yml -2023-03-10 17:56:41.8317 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml -2023-03-10 17:56:41.8328 Info Copied u2.yml -2023-03-10 17:56:41.8328 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml -2023-03-10 17:56:41.8328 Info Copied uhdbits.yml -2023-03-10 17:56:41.8328 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml -2023-03-10 17:56:41.8348 Info Copied uniondht.yml -2023-03-10 17:56:41.8348 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml -2023-03-10 17:56:41.8348 Info Copied unionfansub.yml -2023-03-10 17:56:41.8348 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml -2023-03-10 17:56:41.8359 Info Copied uniongang.yml -2023-03-10 17:56:41.8359 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml -2023-03-10 17:56:41.8359 Info Copied unleashthecartoons.yml -2023-03-10 17:56:41.8359 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml -2023-03-10 17:56:41.8370 Info Copied unlimitz.yml -2023-03-10 17:56:41.8370 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml -2023-03-10 17:56:41.8370 Info Copied vsthouse.yml -2023-03-10 17:56:41.8377 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml -2023-03-10 17:56:41.8377 Info Copied vsttorrents.yml -2023-03-10 17:56:41.8377 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml -2023-03-10 17:56:41.8387 Info Copied vtorrent.yml -2023-03-10 17:56:41.8387 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml -2023-03-10 17:56:41.8387 Info Copied whiteangel.yml -2023-03-10 17:56:41.8387 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml -2023-03-10 17:56:41.8398 Info Copied wihd.yml -2023-03-10 17:56:41.8398 Info Attempting to copy woot.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/woot.yml to destination: /app/Jackett/Definitions/woot.yml -2023-03-10 17:56:41.8398 Info Copied woot.yml -2023-03-10 17:56:41.8398 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml -2023-03-10 17:56:41.8409 Info Copied world-of-tomorrow.yml -2023-03-10 17:56:41.8409 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml -2023-03-10 17:56:41.8409 Info Copied x-ite.me.yml -2023-03-10 17:56:41.8417 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml -2023-03-10 17:56:41.8417 Info Copied xbytes2.yml -2023-03-10 17:56:41.8417 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml -2023-03-10 17:56:41.8427 Info Copied xthor-api.yml -2023-03-10 17:56:41.8427 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml -2023-03-10 17:56:41.8427 Info Copied xtorrenty.yml -2023-03-10 17:56:41.8427 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml -2023-03-10 17:56:41.8438 Info Copied xtremebytes.yml -2023-03-10 17:56:41.8438 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml -2023-03-10 17:56:41.8438 Info Copied xwtclassics.yml -2023-03-10 17:56:41.8438 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml -2023-03-10 17:56:41.8449 Info Copied xwtorrents.yml -2023-03-10 17:56:41.8449 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml -2023-03-10 17:56:41.8449 Info Copied xxxadulttorrent.yml -2023-03-10 17:56:41.8449 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml -2023-03-10 17:56:41.8460 Info Copied xxxtor.yml -2023-03-10 17:56:41.8460 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml -2023-03-10 17:56:41.8460 Info Copied xxxtorrents.yml -2023-03-10 17:56:41.8467 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml -2023-03-10 17:56:41.8467 Info Copied ydypt.yml -2023-03-10 17:56:41.8467 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml -2023-03-10 17:56:41.8477 Info Copied yggcookie.yml -2023-03-10 17:56:41.8477 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml -2023-03-10 17:56:41.8477 Info Copied yggtorrent.yml -2023-03-10 17:56:41.8477 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml -2023-03-10 17:56:41.8488 Info Copied yourbittorrent.yml -2023-03-10 17:56:41.8488 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml -2023-03-10 17:56:41.8488 Info Copied yts.yml -2023-03-10 17:56:41.8488 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml -2023-03-10 17:56:41.8500 Info Copied zamundanet.yml -2023-03-10 17:56:41.8500 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml -2023-03-10 17:56:41.8500 Info Copied zelkaorg.yml -2023-03-10 17:56:41.8507 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml -2023-03-10 17:56:41.8507 Info Copied zetorrents.yml -2023-03-10 17:56:41.8507 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml -2023-03-10 17:56:41.8516 Info Copied zmpt.yml -2023-03-10 17:56:41.8516 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml -2023-03-10 17:56:41.8516 Info Copied zomb.yml -2023-03-10 17:56:41.8516 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml -2023-03-10 17:56:41.8527 Info Copied ztracker.yml -2023-03-10 17:56:41.8527 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll -2023-03-10 17:56:41.8527 Info Copied FlareSolverrSharp.dll -2023-03-10 17:56:41.8527 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll -2023-03-10 17:56:41.8543 Info Copied ICSharpCode.SharpZipLib.dll -2023-03-10 17:56:41.8543 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh -2023-03-10 17:56:41.8548 Info Copied install_service_systemd.sh -2023-03-10 17:56:41.8548 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/jackett to destination: /app/Jackett/jackett -2023-03-10 17:56:41.8548 Info Copied jackett -2023-03-10 17:56:41.8557 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh -2023-03-10 17:56:41.8557 Info Copied jackett_launcher.sh -2023-03-10 17:56:41.8557 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll -2023-03-10 17:56:41.8592 Info Copied Jackett.Common.dll -2023-03-10 17:56:41.8592 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb -2023-03-10 17:56:41.8601 Info Copied Jackett.Common.pdb -2023-03-10 17:56:41.8601 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json -2023-03-10 17:56:41.8609 Info Copied jackett.deps.json -2023-03-10 17:56:41.8609 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll -2023-03-10 17:56:41.8622 Info Copied jackett.dll -2023-03-10 17:56:41.8622 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb -2023-03-10 17:56:41.8628 Info Copied jackett.pdb -2023-03-10 17:56:41.8628 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json -2023-03-10 17:56:41.8628 Info Copied jackett.runtimeconfig.json -2023-03-10 17:56:41.8628 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater -2023-03-10 17:56:41.8641 Info Copied JackettUpdater -2023-03-10 17:56:41.8641 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json -2023-03-10 17:56:41.8647 Info Copied JackettUpdater.deps.json -2023-03-10 17:56:41.8647 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll -2023-03-10 17:56:41.8658 Info Copied JackettUpdater.dll -2023-03-10 17:56:41.8658 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb -2023-03-10 17:56:41.8658 Info Copied JackettUpdater.pdb -2023-03-10 17:56:41.8658 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json -2023-03-10 17:56:41.8669 Info Copied JackettUpdater.runtimeconfig.json -2023-03-10 17:56:41.8669 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so -2023-03-10 17:56:41.8718 Info Copied libclrjit.so -2023-03-10 17:56:41.8718 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so -2023-03-10 17:56:41.8876 Info Copied libcoreclr.so -2023-03-10 17:56:41.8879 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so -2023-03-10 17:56:41.8916 Info Copied libcoreclrtraceptprovider.so -2023-03-10 17:56:41.8916 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so -2023-03-10 17:56:41.8938 Info Copied libdbgshim.so -2023-03-10 17:56:41.8938 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so -2023-03-10 17:56:41.8949 Info Copied libhostfxr.so -2023-03-10 17:56:41.8949 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so -2023-03-10 17:56:41.8960 Info Copied libhostpolicy.so -2023-03-10 17:56:41.8960 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so -2023-03-10 17:56:41.8968 Info Copied libMono.Unix.so -2023-03-10 17:56:41.8968 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so -2023-03-10 17:56:41.9018 Info Copied libmscordaccore.so -2023-03-10 17:56:41.9018 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so -2023-03-10 17:56:41.9077 Info Copied libmscordbi.so -2023-03-10 17:56:41.9077 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so -2023-03-10 17:56:41.9087 Info Copied libSystem.Globalization.Native.so -2023-03-10 17:56:41.9087 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so -2023-03-10 17:56:41.9110 Info Copied libSystem.IO.Compression.Native.so -2023-03-10 17:56:41.9110 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so -2023-03-10 17:56:41.9117 Info Copied libSystem.Native.so -2023-03-10 17:56:41.9117 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so -2023-03-10 17:56:41.9117 Info Copied libSystem.Net.Security.Native.so -2023-03-10 17:56:41.9117 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so -2023-03-10 17:56:41.9132 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so -2023-03-10 17:56:41.9132 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/LICENSE to destination: /app/Jackett/LICENSE -2023-03-10 17:56:41.9138 Info Copied LICENSE -2023-03-10 17:56:41.9138 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll -2023-03-10 17:56:41.9147 Info Copied Microsoft.AspNetCore.Antiforgery.dll -2023-03-10 17:56:41.9147 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-03-10 17:56:41.9147 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-03-10 17:56:41.9147 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll -2023-03-10 17:56:41.9161 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll -2023-03-10 17:56:41.9161 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll -2023-03-10 17:56:41.9169 Info Copied Microsoft.AspNetCore.Authentication.Core.dll -2023-03-10 17:56:41.9169 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll -2023-03-10 17:56:41.9177 Info Copied Microsoft.AspNetCore.Authentication.dll -2023-03-10 17:56:41.9177 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll -2023-03-10 17:56:41.9177 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll -2023-03-10 17:56:41.9187 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll -2023-03-10 17:56:41.9187 Info Copied Microsoft.AspNetCore.Authorization.dll -2023-03-10 17:56:41.9198 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll -2023-03-10 17:56:41.9207 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll -2023-03-10 17:56:41.9207 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll -2023-03-10 17:56:41.9207 Info Copied Microsoft.AspNetCore.Components.Authorization.dll -2023-03-10 17:56:41.9218 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll -2023-03-10 17:56:41.9241 Info Copied Microsoft.AspNetCore.Components.dll -2023-03-10 17:56:41.9241 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll -2023-03-10 17:56:41.9248 Info Copied Microsoft.AspNetCore.Components.Forms.dll -2023-03-10 17:56:41.9248 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll -2023-03-10 17:56:41.9265 Info Copied Microsoft.AspNetCore.Components.Server.dll -2023-03-10 17:56:41.9267 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll -2023-03-10 17:56:41.9267 Info Copied Microsoft.AspNetCore.Components.Web.dll -2023-03-10 17:56:41.9277 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll -2023-03-10 17:56:41.9277 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll -2023-03-10 17:56:41.9277 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll -2023-03-10 17:56:41.9290 Info Copied Microsoft.AspNetCore.CookiePolicy.dll -2023-03-10 17:56:41.9290 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll -2023-03-10 17:56:41.9297 Info Copied Microsoft.AspNetCore.Cors.dll -2023-03-10 17:56:41.9297 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll -2023-03-10 17:56:41.9297 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll -2023-03-10 17:56:41.9297 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-03-10 17:56:41.9311 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-03-10 17:56:41.9311 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-03-10 17:56:41.9317 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-03-10 17:56:41.9317 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll -2023-03-10 17:56:41.9330 Info Copied Microsoft.AspNetCore.DataProtection.dll -2023-03-10 17:56:41.9330 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-03-10 17:56:41.9337 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-03-10 17:56:41.9337 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-03-10 17:56:41.9337 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-03-10 17:56:41.9337 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll -2023-03-10 17:56:41.9356 Info Copied Microsoft.AspNetCore.Diagnostics.dll -2023-03-10 17:56:41.9357 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-03-10 17:56:41.9357 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-03-10 17:56:41.9357 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll -2023-03-10 17:56:41.9370 Info Copied Microsoft.AspNetCore.dll -2023-03-10 17:56:41.9370 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll -2023-03-10 17:56:41.9370 Info Copied Microsoft.AspNetCore.HostFiltering.dll -2023-03-10 17:56:41.9378 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-03-10 17:56:41.9378 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-03-10 17:56:41.9378 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll -2023-03-10 17:56:41.9394 Info Copied Microsoft.AspNetCore.Hosting.dll -2023-03-10 17:56:41.9394 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-03-10 17:56:41.9400 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-03-10 17:56:41.9400 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll -2023-03-10 17:56:41.9407 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll -2023-03-10 17:56:41.9407 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll -2023-03-10 17:56:41.9416 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll -2023-03-10 17:56:41.9416 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll -2023-03-10 17:56:41.9416 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll -2023-03-10 17:56:41.9416 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll -2023-03-10 17:56:41.9435 Info Copied Microsoft.AspNetCore.Http.Connections.dll -2023-03-10 17:56:41.9437 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll -2023-03-10 17:56:41.9437 Info Copied Microsoft.AspNetCore.Http.dll -2023-03-10 17:56:41.9447 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll -2023-03-10 17:56:41.9457 Info Copied Microsoft.AspNetCore.Http.Extensions.dll -2023-03-10 17:56:41.9457 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll -2023-03-10 17:56:41.9457 Info Copied Microsoft.AspNetCore.Http.Features.dll -2023-03-10 17:56:41.9457 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll -2023-03-10 17:56:41.9472 Info Copied Microsoft.AspNetCore.Http.Results.dll -2023-03-10 17:56:41.9472 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll -2023-03-10 17:56:41.9480 Info Copied Microsoft.AspNetCore.HttpLogging.dll -2023-03-10 17:56:41.9480 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll -2023-03-10 17:56:41.9487 Info Copied Microsoft.AspNetCore.HttpOverrides.dll -2023-03-10 17:56:41.9487 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll -2023-03-10 17:56:41.9487 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll -2023-03-10 17:56:41.9487 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll -2023-03-10 17:56:41.9502 Info Copied Microsoft.AspNetCore.Identity.dll -2023-03-10 17:56:41.9502 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll -2023-03-10 17:56:41.9509 Info Copied Microsoft.AspNetCore.JsonPatch.dll -2023-03-10 17:56:41.9509 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll -2023-03-10 17:56:41.9509 Info Copied Microsoft.AspNetCore.Localization.dll -2023-03-10 17:56:41.9517 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll -2023-03-10 17:56:41.9517 Info Copied Microsoft.AspNetCore.Localization.Routing.dll -2023-03-10 17:56:41.9517 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll -2023-03-10 17:56:41.9528 Info Copied Microsoft.AspNetCore.Metadata.dll -2023-03-10 17:56:41.9528 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-03-10 17:56:41.9538 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-03-10 17:56:41.9538 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-03-10 17:56:41.9538 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-03-10 17:56:41.9547 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll -2023-03-10 17:56:41.9592 Info Copied Microsoft.AspNetCore.Mvc.Core.dll -2023-03-10 17:56:41.9592 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll -2023-03-10 17:56:41.9600 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll -2023-03-10 17:56:41.9600 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-03-10 17:56:41.9608 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-03-10 17:56:41.9608 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll -2023-03-10 17:56:41.9608 Info Copied Microsoft.AspNetCore.Mvc.dll -2023-03-10 17:56:41.9608 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-03-10 17:56:41.9621 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-03-10 17:56:41.9621 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-03-10 17:56:41.9629 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-03-10 17:56:41.9629 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll -2023-03-10 17:56:41.9629 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll -2023-03-10 17:56:41.9637 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-03-10 17:56:41.9637 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-03-10 17:56:41.9637 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll -2023-03-10 17:56:41.9652 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll -2023-03-10 17:56:41.9652 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-03-10 17:56:41.9666 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-03-10 17:56:41.9668 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-03-10 17:56:41.9676 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-03-10 17:56:41.9676 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-03-10 17:56:41.9695 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-03-10 17:56:41.9696 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll -2023-03-10 17:56:41.9696 Info Copied Microsoft.AspNetCore.Razor.dll -2023-03-10 17:56:41.9696 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll -2023-03-10 17:56:41.9709 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll -2023-03-10 17:56:41.9709 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-03-10 17:56:41.9709 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-03-10 17:56:41.9709 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll -2023-03-10 17:56:41.9724 Info Copied Microsoft.AspNetCore.ResponseCaching.dll -2023-03-10 17:56:41.9724 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll -2023-03-10 17:56:41.9731 Info Copied Microsoft.AspNetCore.ResponseCompression.dll -2023-03-10 17:56:41.9731 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll -2023-03-10 17:56:41.9740 Info Copied Microsoft.AspNetCore.Rewrite.dll -2023-03-10 17:56:41.9740 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll -2023-03-10 17:56:41.9747 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll -2023-03-10 17:56:41.9747 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll -2023-03-10 17:56:41.9763 Info Copied Microsoft.AspNetCore.Routing.dll -2023-03-10 17:56:41.9763 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll -2023-03-10 17:56:41.9778 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll -2023-03-10 17:56:41.9778 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll -2023-03-10 17:56:41.9793 Info Copied Microsoft.AspNetCore.Server.IIS.dll -2023-03-10 17:56:41.9793 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll -2023-03-10 17:56:41.9800 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll -2023-03-10 17:56:41.9800 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-03-10 17:56:41.9857 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-03-10 17:56:41.9857 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll -2023-03-10 17:56:41.9857 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll -2023-03-10 17:56:41.9867 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-03-10 17:56:41.9867 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-03-10 17:56:41.9878 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-03-10 17:56:41.9878 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-03-10 17:56:41.9878 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll -2023-03-10 17:56:41.9892 Info Copied Microsoft.AspNetCore.Session.dll -2023-03-10 17:56:41.9892 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll -2023-03-10 17:56:41.9899 Info Copied Microsoft.AspNetCore.SignalR.Common.dll -2023-03-10 17:56:41.9899 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll -2023-03-10 17:56:41.9911 Info Copied Microsoft.AspNetCore.SignalR.Core.dll -2023-03-10 17:56:41.9911 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll -2023-03-10 17:56:41.9918 Info Copied Microsoft.AspNetCore.SignalR.dll -2023-03-10 17:56:41.9918 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-03-10 17:56:41.9918 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-03-10 17:56:41.9918 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll -2023-03-10 17:56:41.9933 Info Copied Microsoft.AspNetCore.StaticFiles.dll -2023-03-10 17:56:41.9933 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll -2023-03-10 17:56:41.9940 Info Copied Microsoft.AspNetCore.WebSockets.dll -2023-03-10 17:56:41.9940 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll -2023-03-10 17:56:41.9950 Info Copied Microsoft.AspNetCore.WebUtilities.dll -2023-03-10 17:56:41.9950 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll -2023-03-10 17:56:41.9981 Info Copied Microsoft.CSharp.dll -2023-03-10 17:56:41.9981 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll -2023-03-10 17:56:41.9989 Info Copied Microsoft.Extensions.Caching.Abstractions.dll -2023-03-10 17:56:41.9989 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll -2023-03-10 17:56:41.9996 Info Copied Microsoft.Extensions.Caching.Memory.dll -2023-03-10 17:56:41.9996 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll -2023-03-10 17:56:41.9996 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll -2023-03-10 17:56:41.9996 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll -2023-03-10 17:56:42.0010 Info Copied Microsoft.Extensions.Configuration.Binder.dll -2023-03-10 17:56:42.0010 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll -2023-03-10 17:56:42.0017 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll -2023-03-10 17:56:42.0017 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll -2023-03-10 17:56:42.0017 Info Copied Microsoft.Extensions.Configuration.dll -2023-03-10 17:56:42.0017 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-03-10 17:56:42.0030 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-03-10 17:56:42.0030 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll -2023-03-10 17:56:42.0036 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll -2023-03-10 17:56:42.0036 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll -2023-03-10 17:56:42.0036 Info Copied Microsoft.Extensions.Configuration.Ini.dll -2023-03-10 17:56:42.0036 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll -2023-03-10 17:56:42.0049 Info Copied Microsoft.Extensions.Configuration.Json.dll -2023-03-10 17:56:42.0049 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-03-10 17:56:42.0049 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-03-10 17:56:42.0057 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll -2023-03-10 17:56:42.0057 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll -2023-03-10 17:56:42.0057 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll -2023-03-10 17:56:42.0069 Info Copied Microsoft.Extensions.Configuration.Xml.dll -2023-03-10 17:56:42.0069 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-03-10 17:56:42.1157 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-03-10 17:56:42.1157 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll -2023-03-10 17:56:42.1178 Info Copied Microsoft.Extensions.DependencyInjection.dll -2023-03-10 17:56:42.1178 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-03-10 17:56:42.1178 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-03-10 17:56:42.1187 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-03-10 17:56:42.1187 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-03-10 17:56:42.1187 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll -2023-03-10 17:56:42.1203 Info Copied Microsoft.Extensions.Features.dll -2023-03-10 17:56:42.1203 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll -2023-03-10 17:56:42.1221 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll -2023-03-10 17:56:42.1221 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll -2023-03-10 17:56:42.1227 Info Copied Microsoft.Extensions.FileProviders.Composite.dll -2023-03-10 17:56:42.1227 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll -2023-03-10 17:56:42.1227 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll -2023-03-10 17:56:42.1227 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll -2023-03-10 17:56:42.1258 Info Copied Microsoft.Extensions.FileProviders.Physical.dll -2023-03-10 17:56:42.1258 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll -2023-03-10 17:56:42.1272 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll -2023-03-10 17:56:42.1272 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll -2023-03-10 17:56:42.1279 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll -2023-03-10 17:56:42.1279 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll -2023-03-10 17:56:42.1279 Info Copied Microsoft.Extensions.Hosting.dll -2023-03-10 17:56:42.1288 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll -2023-03-10 17:56:42.1288 Info Copied Microsoft.Extensions.Http.dll -2023-03-10 17:56:42.1288 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll -2023-03-10 17:56:42.1307 Info Copied Microsoft.Extensions.Identity.Core.dll -2023-03-10 17:56:42.1307 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll -2023-03-10 17:56:42.1307 Info Copied Microsoft.Extensions.Identity.Stores.dll -2023-03-10 17:56:42.1307 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll -2023-03-10 17:56:42.1321 Info Copied Microsoft.Extensions.Localization.Abstractions.dll -2023-03-10 17:56:42.1321 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll -2023-03-10 17:56:42.1327 Info Copied Microsoft.Extensions.Localization.dll -2023-03-10 17:56:42.1327 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll -2023-03-10 17:56:42.1337 Info Copied Microsoft.Extensions.Logging.Abstractions.dll -2023-03-10 17:56:42.1337 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll -2023-03-10 17:56:42.1647 Info Copied Microsoft.Extensions.Logging.Configuration.dll -2023-03-10 17:56:42.1647 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll -2023-03-10 17:56:42.1658 Info Copied Microsoft.Extensions.Logging.Console.dll -2023-03-10 17:56:42.1658 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll -2023-03-10 17:56:42.1658 Info Copied Microsoft.Extensions.Logging.Debug.dll -2023-03-10 17:56:42.1666 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll -2023-03-10 17:56:42.1666 Info Copied Microsoft.Extensions.Logging.dll -2023-03-10 17:56:42.1666 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll -2023-03-10 17:56:42.1680 Info Copied Microsoft.Extensions.Logging.EventLog.dll -2023-03-10 17:56:42.1680 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll -2023-03-10 17:56:42.1680 Info Copied Microsoft.Extensions.Logging.EventSource.dll -2023-03-10 17:56:42.1680 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll -2023-03-10 17:56:42.1680 Info Copied Microsoft.Extensions.Logging.TraceSource.dll -2023-03-10 17:56:42.1680 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll -2023-03-10 17:56:42.1701 Info Copied Microsoft.Extensions.ObjectPool.dll -2023-03-10 17:56:42.1701 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-03-10 17:56:42.1708 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-03-10 17:56:42.1708 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll -2023-03-10 17:56:42.1708 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll -2023-03-10 17:56:42.1717 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll -2023-03-10 17:56:42.1717 Info Copied Microsoft.Extensions.Options.dll -2023-03-10 17:56:42.1717 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll -2023-03-10 17:56:42.1733 Info Copied Microsoft.Extensions.Primitives.dll -2023-03-10 17:56:42.1733 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll -2023-03-10 17:56:42.1740 Info Copied Microsoft.Extensions.WebEncoders.dll -2023-03-10 17:56:42.1740 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll -2023-03-10 17:56:42.1749 Info Copied Microsoft.JSInterop.dll -2023-03-10 17:56:42.1749 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll -2023-03-10 17:56:42.1761 Info Copied Microsoft.Net.Http.Headers.dll -2023-03-10 17:56:42.1761 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll -2023-03-10 17:56:42.1818 Info Copied Microsoft.VisualBasic.Core.dll -2023-03-10 17:56:42.1818 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll -2023-03-10 17:56:42.1827 Info Copied Microsoft.VisualBasic.dll -2023-03-10 17:56:42.1827 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll -2023-03-10 17:56:42.1827 Info Copied Microsoft.Win32.Primitives.dll -2023-03-10 17:56:42.1838 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll -2023-03-10 17:56:42.1838 Info Copied Microsoft.Win32.Registry.dll -2023-03-10 17:56:42.1838 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll -2023-03-10 17:56:42.2012 Info Copied MimeMapping.dll -2023-03-10 17:56:42.2017 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll -2023-03-10 17:56:42.2017 Info Copied Mono.Posix.dll -2023-03-10 17:56:42.2017 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll -2023-03-10 17:56:42.2033 Info Copied Mono.Unix.dll -2023-03-10 17:56:42.2033 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll -2023-03-10 17:56:42.2042 Info Copied mscorlib.dll -2023-03-10 17:56:42.2042 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll -2023-03-10 17:56:42.2051 Info Copied netstandard.dll -2023-03-10 17:56:42.2051 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll -2023-03-10 17:56:42.2060 Info Copied Newtonsoft.Json.Bson.dll -2023-03-10 17:56:42.2060 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll -2023-03-10 17:56:42.2077 Info Copied Newtonsoft.Json.dll -2023-03-10 17:56:42.2077 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll -2023-03-10 17:56:42.2097 Info Copied NLog.dll -2023-03-10 17:56:42.2097 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll -2023-03-10 17:56:42.2097 Info Copied NLog.Extensions.Logging.dll -2023-03-10 17:56:42.2107 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll -2023-03-10 17:56:42.2107 Info Copied NLog.Web.AspNetCore.dll -2023-03-10 17:56:42.2107 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll -2023-03-10 17:56:42.2121 Info Copied Org.Mentalis.dll -2023-03-10 17:56:42.2121 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll -2023-03-10 17:56:42.2133 Info Copied Polly.dll -2023-03-10 17:56:42.2133 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/README.md to destination: /app/Jackett/README.md -2023-03-10 17:56:42.2141 Info Copied README.md -2023-03-10 17:56:42.2141 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll -2023-03-10 17:56:42.2148 Info Copied SocksWebProxy.dll -2023-03-10 17:56:42.2148 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll -2023-03-10 17:56:42.2148 Info Copied System.AppContext.dll -2023-03-10 17:56:42.2157 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll -2023-03-10 17:56:42.2157 Info Copied System.Buffers.dll -2023-03-10 17:56:42.2157 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll -2023-03-10 17:56:42.2174 Info Copied System.Collections.Concurrent.dll -2023-03-10 17:56:42.2174 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll -2023-03-10 17:56:42.2187 Info Copied System.Collections.dll -2023-03-10 17:56:42.2187 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll -2023-03-10 17:56:42.2205 Info Copied System.Collections.Immutable.dll -2023-03-10 17:56:42.2207 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll -2023-03-10 17:56:42.2736 Info Copied System.Collections.NonGeneric.dll -2023-03-10 17:56:42.2740 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll -2023-03-10 17:56:42.2749 Info Copied System.Collections.Specialized.dll -2023-03-10 17:56:42.2749 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll -2023-03-10 17:56:42.2760 Info Copied System.ComponentModel.Annotations.dll -2023-03-10 17:56:42.2790 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll -2023-03-10 17:56:42.2790 Info Copied System.ComponentModel.DataAnnotations.dll -2023-03-10 17:56:42.2797 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll -2023-03-10 17:56:42.2797 Info Copied System.ComponentModel.dll -2023-03-10 17:56:42.2808 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll -2023-03-10 17:56:42.2808 Info Copied System.ComponentModel.EventBasedAsync.dll -2023-03-10 17:56:42.2808 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll -2023-03-10 17:56:42.2822 Info Copied System.ComponentModel.Primitives.dll -2023-03-10 17:56:42.2822 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll -2023-03-10 17:56:42.2841 Info Copied System.ComponentModel.TypeConverter.dll -2023-03-10 17:56:42.2841 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll -2023-03-10 17:56:42.2847 Info Copied System.Configuration.dll -2023-03-10 17:56:42.2847 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll -2023-03-10 17:56:42.2858 Info Copied System.Console.dll -2023-03-10 17:56:42.2858 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll -2023-03-10 17:56:42.2858 Info Copied System.Core.dll -2023-03-10 17:56:42.2858 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll -2023-03-10 17:56:42.3578 Info Copied System.Data.Common.dll -2023-03-10 17:56:42.3578 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll -2023-03-10 17:56:42.3587 Info Copied System.Data.DataSetExtensions.dll -2023-03-10 17:56:42.3587 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll -2023-03-10 17:56:42.3587 Info Copied System.Data.dll -2023-03-10 17:56:42.3587 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll -2023-03-10 17:56:42.3600 Info Copied System.Diagnostics.Contracts.dll -2023-03-10 17:56:42.3600 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll -2023-03-10 17:56:42.3600 Info Copied System.Diagnostics.Debug.dll -2023-03-10 17:56:42.3609 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll -2023-03-10 17:56:42.3620 Info Copied System.Diagnostics.DiagnosticSource.dll -2023-03-10 17:56:42.3620 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll -2023-03-10 17:56:42.3627 Info Copied System.Diagnostics.EventLog.dll -2023-03-10 17:56:42.3627 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll -2023-03-10 17:56:42.3627 Info Copied System.Diagnostics.FileVersionInfo.dll -2023-03-10 17:56:42.3627 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll -2023-03-10 17:56:42.3644 Info Copied System.Diagnostics.Process.dll -2023-03-10 17:56:42.3644 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll -2023-03-10 17:56:42.3651 Info Copied System.Diagnostics.StackTrace.dll -2023-03-10 17:56:42.3651 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll -2023-03-10 17:56:42.3657 Info Copied System.Diagnostics.TextWriterTraceListener.dll -2023-03-10 17:56:42.3657 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll -2023-03-10 17:56:42.3657 Info Copied System.Diagnostics.Tools.dll -2023-03-10 17:56:42.3657 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll -2023-03-10 17:56:42.3672 Info Copied System.Diagnostics.TraceSource.dll -2023-03-10 17:56:42.3672 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll -2023-03-10 17:56:42.3678 Info Copied System.Diagnostics.Tracing.dll -2023-03-10 17:56:42.3678 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.dll to destination: /app/Jackett/System.dll -2023-03-10 17:56:42.3678 Info Copied System.dll -2023-03-10 17:56:42.3687 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll -2023-03-10 17:56:42.3687 Info Copied System.Drawing.dll -2023-03-10 17:56:42.3687 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll -2023-03-10 17:56:42.3699 Info Copied System.Drawing.Primitives.dll -2023-03-10 17:56:42.3699 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll -2023-03-10 17:56:42.3699 Info Copied System.Dynamic.Runtime.dll -2023-03-10 17:56:42.3707 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll -2023-03-10 17:56:42.3707 Info Copied System.Formats.Asn1.dll -2023-03-10 17:56:42.3716 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll -2023-03-10 17:56:42.3716 Info Copied System.Globalization.Calendars.dll -2023-03-10 17:56:42.3716 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll -2023-03-10 17:56:42.3728 Info Copied System.Globalization.dll -2023-03-10 17:56:42.3728 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll -2023-03-10 17:56:42.3728 Info Copied System.Globalization.Extensions.dll -2023-03-10 17:56:42.3728 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll -2023-03-10 17:56:42.3741 Info Copied System.IO.Compression.Brotli.dll -2023-03-10 17:56:42.3741 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll -2023-03-10 17:56:42.3751 Info Copied System.IO.Compression.dll -2023-03-10 17:56:42.3751 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll -2023-03-10 17:56:42.3757 Info Copied System.IO.Compression.FileSystem.dll -2023-03-10 17:56:42.3757 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll -2023-03-10 17:56:42.3757 Info Copied System.IO.Compression.ZipFile.dll -2023-03-10 17:56:42.3757 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll -2023-03-10 17:56:42.3770 Info Copied System.IO.dll -2023-03-10 17:56:42.3770 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll -2023-03-10 17:56:42.4231 Info Copied System.IO.FileSystem.AccessControl.dll -2023-03-10 17:56:42.4231 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll -2023-03-10 17:56:42.4238 Info Copied System.IO.FileSystem.dll -2023-03-10 17:56:42.4238 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll -2023-03-10 17:56:42.4238 Info Copied System.IO.FileSystem.DriveInfo.dll -2023-03-10 17:56:42.4248 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll -2023-03-10 17:56:42.4248 Info Copied System.IO.FileSystem.Primitives.dll -2023-03-10 17:56:42.4248 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll -2023-03-10 17:56:42.4261 Info Copied System.IO.FileSystem.Watcher.dll -2023-03-10 17:56:42.4261 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll -2023-03-10 17:56:42.4269 Info Copied System.IO.IsolatedStorage.dll -2023-03-10 17:56:42.4269 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll -2023-03-10 17:56:42.4278 Info Copied System.IO.MemoryMappedFiles.dll -2023-03-10 17:56:42.4278 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll -2023-03-10 17:56:42.4278 Info Copied System.IO.Pipelines.dll -2023-03-10 17:56:42.4288 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll -2023-03-10 17:56:42.4288 Info Copied System.IO.Pipes.AccessControl.dll -2023-03-10 17:56:42.4288 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll -2023-03-10 17:56:42.4301 Info Copied System.IO.Pipes.dll -2023-03-10 17:56:42.4301 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll -2023-03-10 17:56:42.4307 Info Copied System.IO.UnmanagedMemoryStream.dll -2023-03-10 17:56:42.4307 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll -2023-03-10 17:56:42.4322 Info Copied System.Linq.dll -2023-03-10 17:56:42.4322 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll -2023-03-10 17:56:42.4394 Info Copied System.Linq.Expressions.dll -2023-03-10 17:56:42.4396 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll -2023-03-10 17:56:42.4415 Info Copied System.Linq.Parallel.dll -2023-03-10 17:56:42.4417 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll -2023-03-10 17:56:42.4417 Info Copied System.Linq.Queryable.dll -2023-03-10 17:56:42.4428 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll -2023-03-10 17:56:42.5231 Info Copied System.Memory.dll -2023-03-10 17:56:42.5231 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll -2023-03-10 17:56:42.5239 Info Copied System.Net.dll -2023-03-10 17:56:42.5239 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll -2023-03-10 17:56:42.5274 Info Copied System.Net.Http.dll -2023-03-10 17:56:42.5274 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll -2023-03-10 17:56:42.5282 Info Copied System.Net.Http.Json.dll -2023-03-10 17:56:42.5282 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll -2023-03-10 17:56:42.5294 Info Copied System.Net.HttpListener.dll -2023-03-10 17:56:42.5294 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll -2023-03-10 17:56:42.5310 Info Copied System.Net.Mail.dll -2023-03-10 17:56:42.5310 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll -2023-03-10 17:56:42.5318 Info Copied System.Net.NameResolution.dll -2023-03-10 17:56:42.5318 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll -2023-03-10 17:56:42.5328 Info Copied System.Net.NetworkInformation.dll -2023-03-10 17:56:42.5328 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll -2023-03-10 17:56:42.5328 Info Copied System.Net.Ping.dll -2023-03-10 17:56:42.5337 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll -2023-03-10 17:56:42.5347 Info Copied System.Net.Primitives.dll -2023-03-10 17:56:42.5347 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll -2023-03-10 17:56:42.5359 Info Copied System.Net.Quic.dll -2023-03-10 17:56:42.5359 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll -2023-03-10 17:56:42.5371 Info Copied System.Net.Requests.dll -2023-03-10 17:56:42.5371 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll -2023-03-10 17:56:42.5388 Info Copied System.Net.Security.dll -2023-03-10 17:56:42.5388 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll -2023-03-10 17:56:42.5388 Info Copied System.Net.ServicePoint.dll -2023-03-10 17:56:42.5397 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll -2023-03-10 17:56:42.5411 Info Copied System.Net.Sockets.dll -2023-03-10 17:56:42.5411 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll -2023-03-10 17:56:42.5421 Info Copied System.Net.WebClient.dll -2023-03-10 17:56:42.5421 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll -2023-03-10 17:56:42.5428 Info Copied System.Net.WebHeaderCollection.dll -2023-03-10 17:56:42.5428 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll -2023-03-10 17:56:42.6013 Info Copied System.Net.WebProxy.dll -2023-03-10 17:56:42.6020 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll -2023-03-10 17:56:42.6035 Info Copied System.Net.WebSockets.Client.dll -2023-03-10 17:56:42.6039 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll -2023-03-10 17:56:42.6056 Info Copied System.Net.WebSockets.dll -2023-03-10 17:56:42.6060 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll -2023-03-10 17:56:42.6071 Info Copied System.Numerics.dll -2023-03-10 17:56:42.6071 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll -2023-03-10 17:56:42.6085 Info Copied System.Numerics.Vectors.dll -2023-03-10 17:56:42.6088 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll -2023-03-10 17:56:42.6104 Info Copied System.ObjectModel.dll -2023-03-10 17:56:42.6108 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll -2023-03-10 17:56:42.6580 Info Copied System.Private.CoreLib.dll -2023-03-10 17:56:42.6580 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll -2023-03-10 17:56:42.6637 Info Copied System.Private.DataContractSerialization.dll -2023-03-10 17:56:42.6637 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll -2023-03-10 17:56:42.6648 Info Copied System.Private.Uri.dll -2023-03-10 17:56:42.6648 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll -2023-03-10 17:56:42.8885 Info Copied System.Private.Xml.dll -2023-03-10 17:56:42.8892 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll -2023-03-10 17:56:42.8920 Info Copied System.Private.Xml.Linq.dll -2023-03-10 17:56:42.8920 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll -2023-03-10 17:56:42.8941 Info Copied System.Reflection.DispatchProxy.dll -2023-03-10 17:56:42.8941 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll -2023-03-10 17:56:42.8958 Info Copied System.Reflection.dll -2023-03-10 17:56:42.8958 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll -2023-03-10 17:56:42.8974 Info Copied System.Reflection.Emit.dll -2023-03-10 17:56:42.8977 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll -2023-03-10 17:56:42.8991 Info Copied System.Reflection.Emit.ILGeneration.dll -2023-03-10 17:56:42.8991 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll -2023-03-10 17:56:42.9011 Info Copied System.Reflection.Emit.Lightweight.dll -2023-03-10 17:56:42.9011 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll -2023-03-10 17:56:42.9029 Info Copied System.Reflection.Extensions.dll -2023-03-10 17:56:42.9029 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll -2023-03-10 17:56:42.9904 Info Copied System.Reflection.Metadata.dll -2023-03-10 17:56:42.9909 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll -2023-03-10 17:56:42.9920 Info Copied System.Reflection.Primitives.dll -2023-03-10 17:56:42.9920 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll -2023-03-10 17:56:42.9931 Info Copied System.Reflection.TypeExtensions.dll -2023-03-10 17:56:42.9931 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll -2023-03-10 17:56:42.9942 Info Copied System.Resources.Reader.dll -2023-03-10 17:56:42.9942 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll -2023-03-10 17:56:42.9953 Info Copied System.Resources.ResourceManager.dll -2023-03-10 17:56:42.9953 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll -2023-03-10 17:56:42.9965 Info Copied System.Resources.Writer.dll -2023-03-10 17:56:42.9967 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll -2023-03-10 17:56:42.9977 Info Copied System.Runtime.CompilerServices.Unsafe.dll -2023-03-10 17:56:42.9977 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll -2023-03-10 17:56:42.9989 Info Copied System.Runtime.CompilerServices.VisualC.dll -2023-03-10 17:56:42.9989 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll -2023-03-10 17:56:43.0001 Info Copied System.Runtime.dll -2023-03-10 17:56:43.0001 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll -2023-03-10 17:56:43.0012 Info Copied System.Runtime.Extensions.dll -2023-03-10 17:56:43.0012 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll -2023-03-10 17:56:43.0022 Info Copied System.Runtime.Handles.dll -2023-03-10 17:56:43.0022 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll -2023-03-10 17:56:43.0034 Info Copied System.Runtime.InteropServices.dll -2023-03-10 17:56:43.0037 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll -2023-03-10 17:56:43.0037 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll -2023-03-10 17:56:43.0048 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll -2023-03-10 17:56:43.0057 Info Copied System.Runtime.Intrinsics.dll -2023-03-10 17:56:43.0057 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll -2023-03-10 17:56:43.0068 Info Copied System.Runtime.Loader.dll -2023-03-10 17:56:43.0068 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll -2023-03-10 17:56:43.0086 Info Copied System.Runtime.Numerics.dll -2023-03-10 17:56:43.0089 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll -2023-03-10 17:56:43.0098 Info Copied System.Runtime.Serialization.dll -2023-03-10 17:56:43.0098 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll -2023-03-10 17:56:43.0350 Info Copied System.Runtime.Serialization.Formatters.dll -2023-03-10 17:56:43.0350 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll -2023-03-10 17:56:43.0362 Info Copied System.Runtime.Serialization.Json.dll -2023-03-10 17:56:43.0362 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll -2023-03-10 17:56:43.0373 Info Copied System.Runtime.Serialization.Primitives.dll -2023-03-10 17:56:43.0373 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll -2023-03-10 17:56:43.0384 Info Copied System.Runtime.Serialization.Xml.dll -2023-03-10 17:56:43.0388 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll -2023-03-10 17:56:43.0397 Info Copied System.Security.AccessControl.dll -2023-03-10 17:56:43.0397 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll -2023-03-10 17:56:43.0411 Info Copied System.Security.Claims.dll -2023-03-10 17:56:43.0411 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll -2023-03-10 17:56:43.0445 Info Copied System.Security.Cryptography.Algorithms.dll -2023-03-10 17:56:43.0448 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll -2023-03-10 17:56:43.0457 Info Copied System.Security.Cryptography.Cng.dll -2023-03-10 17:56:43.0457 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll -2023-03-10 17:56:43.0471 Info Copied System.Security.Cryptography.Csp.dll -2023-03-10 17:56:43.0471 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll -2023-03-10 17:56:43.0484 Info Copied System.Security.Cryptography.Encoding.dll -2023-03-10 17:56:43.0487 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll -2023-03-10 17:56:43.0502 Info Copied System.Security.Cryptography.OpenSsl.dll -2023-03-10 17:56:43.0502 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll -2023-03-10 17:56:43.0534 Info Copied System.Security.Cryptography.Pkcs.dll -2023-03-10 17:56:43.0537 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll -2023-03-10 17:56:43.1568 Info Copied System.Security.Cryptography.Primitives.dll -2023-03-10 17:56:43.1568 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll -2023-03-10 17:56:43.1588 Info Copied System.Security.Cryptography.ProtectedData.dll -2023-03-10 17:56:43.1588 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll -2023-03-10 17:56:43.1633 Info Copied System.Security.Cryptography.X509Certificates.dll -2023-03-10 17:56:43.1637 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll -2023-03-10 17:56:43.1666 Info Copied System.Security.Cryptography.Xml.dll -2023-03-10 17:56:43.1670 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll -2023-03-10 17:56:43.1680 Info Copied System.Security.dll -2023-03-10 17:56:43.1680 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll -2023-03-10 17:56:43.1694 Info Copied System.Security.Principal.dll -2023-03-10 17:56:43.1698 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll -2023-03-10 17:56:43.1710 Info Copied System.Security.Principal.Windows.dll -2023-03-10 17:56:43.1710 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll -2023-03-10 17:56:43.1724 Info Copied System.Security.SecureString.dll -2023-03-10 17:56:43.1728 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll -2023-03-10 17:56:43.1740 Info Copied System.ServiceModel.Web.dll -2023-03-10 17:56:43.1740 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll -2023-03-10 17:56:43.1754 Info Copied System.ServiceProcess.dll -2023-03-10 17:56:43.1758 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll -2023-03-10 17:56:43.1769 Info Copied System.ServiceProcess.ServiceController.dll -2023-03-10 17:56:43.1769 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll -2023-03-10 17:56:43.2092 Info Copied System.Text.Encoding.CodePages.dll -2023-03-10 17:56:43.2098 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll -2023-03-10 17:56:43.2110 Info Copied System.Text.Encoding.dll -2023-03-10 17:56:43.2110 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll -2023-03-10 17:56:43.2124 Info Copied System.Text.Encoding.Extensions.dll -2023-03-10 17:56:43.2127 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll -2023-03-10 17:56:43.2144 Info Copied System.Text.Encodings.Web.dll -2023-03-10 17:56:43.2148 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll -2023-03-10 17:56:43.2209 Info Copied System.Text.Json.dll -2023-03-10 17:56:43.2209 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll -2023-03-10 17:56:43.2252 Info Copied System.Text.RegularExpressions.dll -2023-03-10 17:56:43.2252 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll -2023-03-10 17:56:43.2271 Info Copied System.Threading.Channels.dll -2023-03-10 17:56:43.2271 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll -2023-03-10 17:56:43.2287 Info Copied System.Threading.dll -2023-03-10 17:56:43.2287 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll -2023-03-10 17:56:43.2641 Info Copied System.Threading.Overlapped.dll -2023-03-10 17:56:43.2641 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll -2023-03-10 17:56:43.2672 Info Copied System.Threading.Tasks.Dataflow.dll -2023-03-10 17:56:43.2672 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll -2023-03-10 17:56:43.2686 Info Copied System.Threading.Tasks.dll -2023-03-10 17:56:43.2690 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll -2023-03-10 17:56:43.2700 Info Copied System.Threading.Tasks.Extensions.dll -2023-03-10 17:56:43.2700 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll -2023-03-10 17:56:43.2719 Info Copied System.Threading.Tasks.Parallel.dll -2023-03-10 17:56:43.2719 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll -2023-03-10 17:56:43.2733 Info Copied System.Threading.Thread.dll -2023-03-10 17:56:43.2733 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll -2023-03-10 17:56:43.2747 Info Copied System.Threading.ThreadPool.dll -2023-03-10 17:56:43.2747 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll -2023-03-10 17:56:43.2761 Info Copied System.Threading.Timer.dll -2023-03-10 17:56:43.2761 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll -2023-03-10 17:56:43.2775 Info Copied System.Transactions.dll -2023-03-10 17:56:43.2779 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll -2023-03-10 17:56:43.2802 Info Copied System.Transactions.Local.dll -2023-03-10 17:56:43.2802 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll -2023-03-10 17:56:43.2815 Info Copied System.ValueTuple.dll -2023-03-10 17:56:43.2818 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll -2023-03-10 17:56:43.2829 Info Copied System.Web.dll -2023-03-10 17:56:43.2829 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll -2023-03-10 17:56:43.2843 Info Copied System.Web.HttpUtility.dll -2023-03-10 17:56:43.2843 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll -2023-03-10 17:56:43.3229 Info Copied System.Windows.dll -2023-03-10 17:56:43.3229 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll -2023-03-10 17:56:43.3245 Info Copied System.Xml.dll -2023-03-10 17:56:43.3249 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll -2023-03-10 17:56:43.3259 Info Copied System.Xml.Linq.dll -2023-03-10 17:56:43.3259 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll -2023-03-10 17:56:43.3273 Info Copied System.Xml.ReaderWriter.dll -2023-03-10 17:56:43.3277 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll -2023-03-10 17:56:43.3287 Info Copied System.Xml.Serialization.dll -2023-03-10 17:56:43.3287 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll -2023-03-10 17:56:43.3301 Info Copied System.Xml.XDocument.dll -2023-03-10 17:56:43.3301 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll -2023-03-10 17:56:43.3314 Info Copied System.Xml.XmlDocument.dll -2023-03-10 17:56:43.3318 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll -2023-03-10 17:56:43.3329 Info Copied System.Xml.XmlSerializer.dll -2023-03-10 17:56:43.3329 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll -2023-03-10 17:56:43.3342 Info Copied System.Xml.XPath.dll -2023-03-10 17:56:43.3342 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll -2023-03-10 17:56:43.3356 Info Copied System.Xml.XPath.XDocument.dll -2023-03-10 17:56:43.3360 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll -2023-03-10 17:56:43.3371 Info Copied WindowsBase.dll -2023-03-10 17:56:43.3371 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3579-638140677981119304/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll -2023-03-10 17:56:43.3394 Info Copied YamlDotNet.dll -2023-03-10 17:56:43.3398 Info File copying complete -2023-03-10 17:56:43.3452 Info Deleting file /app/Jackett/Definitions/pornleech.yml -2023-03-10 17:56:43.3720 Info Killing process 133 -2023-03-10 17:56:46.4497 Info Process 133 didn't exit within 2 seconds after a SIGTERM -2023-03-13 16:21:20.2342 Info Jackett Updater v0.20.3593 -2023-03-13 16:21:20.4545 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "133" "--NoRestart" -2023-03-13 16:21:20.4642 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-13 16:21:20.9378 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb -2023-03-13 16:21:20.9389 Info Deleted /app/Jackett/DateTimeRoutines.pdb -2023-03-13 16:21:20.9389 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb -2023-03-13 16:21:20.9402 Info Deleted /app/Jackett/Jackett.Common.pdb -2023-03-13 16:21:20.9402 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb -2023-03-13 16:21:20.9413 Info Deleted /app/Jackett/JackettUpdater.pdb -2023-03-13 16:21:20.9417 Info Attempting to remove: /app/Jackett/jackett.pdb -2023-03-13 16:21:20.9417 Info Deleted /app/Jackett/jackett.pdb -2023-03-13 16:21:20.9429 Info Attempting to remove: /app/Jackett/jackett -2023-03-13 16:21:20.9429 Info Deleted /app/Jackett/jackett -2023-03-13 16:21:20.9439 Info Finding files in: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/ -2023-03-13 16:21:20.9557 Info 890 update files found -2023-03-13 16:21:20.9580 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll -2023-03-13 16:21:20.9645 Info Copied AngleSharp.dll -2023-03-13 16:21:20.9650 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll -2023-03-13 16:21:20.9664 Info Copied AngleSharp.Xml.dll -2023-03-13 16:21:20.9668 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll -2023-03-13 16:21:20.9692 Info Copied Autofac.dll -2023-03-13 16:21:20.9697 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll -2023-03-13 16:21:20.9711 Info Copied Autofac.Extensions.DependencyInjection.dll -2023-03-13 16:21:20.9711 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll -2023-03-13 16:21:20.9736 Info Copied AutoMapper.dll -2023-03-13 16:21:20.9741 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll -2023-03-13 16:21:20.9754 Info Copied BencodeNET.dll -2023-03-13 16:21:20.9758 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll -2023-03-13 16:21:20.9777 Info Copied CommandLine.dll -2023-03-13 16:21:20.9777 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css -2023-03-13 16:21:20.9795 Info Copied animate.css -2023-03-13 16:21:20.9799 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png -2023-03-13 16:21:20.9809 Info Copied apple-touch-icon.png -2023-03-13 16:21:20.9809 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png -2023-03-13 16:21:20.9823 Info Copied binding_dark.png -2023-03-13 16:21:20.9828 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css -2023-03-13 16:21:20.9842 Info Copied bootstrap.min.css -2023-03-13 16:21:20.9847 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js -2023-03-13 16:21:20.9858 Info Copied bootstrap.min.js -2023-03-13 16:21:20.9858 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js -2023-03-13 16:21:20.9872 Info Copied common.js -2023-03-13 16:21:20.9872 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css -2023-03-13 16:21:20.9885 Info Copied bootstrap-multiselect.css -2023-03-13 16:21:20.9890 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css -2023-03-13 16:21:20.9900 Info Copied font-awesome.min.css -2023-03-13 16:21:20.9900 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css -2023-03-13 16:21:20.9916 Info Copied jquery.dataTables.min.css -2023-03-13 16:21:20.9920 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css -2023-03-13 16:21:20.9931 Info Copied tagify.css -2023-03-13 16:21:20.9931 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css -2023-03-13 16:21:20.9946 Info Copied custom_mobile.css -2023-03-13 16:21:20.9950 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css -2023-03-13 16:21:20.9960 Info Copied custom.css -2023-03-13 16:21:20.9960 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js -2023-03-13 16:21:20.9977 Info Copied custom.js -2023-03-13 16:21:20.9977 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico -2023-03-13 16:21:20.9996 Info Copied favicon.ico -2023-03-13 16:21:21.0002 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot -2023-03-13 16:21:21.0014 Info Copied fontawesome-webfont.eot -2023-03-13 16:21:21.0019 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg -2023-03-13 16:21:21.0042 Info Copied fontawesome-webfont.svg -2023-03-13 16:21:21.0047 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf -2023-03-13 16:21:21.0063 Info Copied fontawesome-webfont.ttf -2023-03-13 16:21:21.0068 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff -2023-03-13 16:21:21.0082 Info Copied fontawesome-webfont.woff -2023-03-13 16:21:21.0082 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 -2023-03-13 16:21:21.0111 Info Copied fontawesome-webfont.woff2 -2023-03-13 16:21:21.0111 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf -2023-03-13 16:21:21.0130 Info Copied FontAwesome.otf -2023-03-13 16:21:21.0130 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot -2023-03-13 16:21:21.0146 Info Copied glyphicons-halflings-regular.eot -2023-03-13 16:21:21.0150 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg -2023-03-13 16:21:21.0166 Info Copied glyphicons-halflings-regular.svg -2023-03-13 16:21:21.0170 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf -2023-03-13 16:21:21.0182 Info Copied glyphicons-halflings-regular.ttf -2023-03-13 16:21:21.0187 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff -2023-03-13 16:21:21.0199 Info Copied glyphicons-halflings-regular.woff -2023-03-13 16:21:21.0199 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 -2023-03-13 16:21:21.0213 Info Copied glyphicons-halflings-regular.woff2 -2023-03-13 16:21:21.0218 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png -2023-03-13 16:21:21.0229 Info Copied sort_asc_disabled.png -2023-03-13 16:21:21.0229 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png -2023-03-13 16:21:21.0242 Info Copied sort_asc.png -2023-03-13 16:21:21.0247 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png -2023-03-13 16:21:21.0257 Info Copied sort_both.png -2023-03-13 16:21:21.0257 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png -2023-03-13 16:21:21.0271 Info Copied sort_desc_disabled.png -2023-03-13 16:21:21.0271 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png -2023-03-13 16:21:21.0285 Info Copied sort_desc.png -2023-03-13 16:21:21.0291 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html -2023-03-13 16:21:21.0303 Info Copied index.html -2023-03-13 16:21:21.0308 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png -2023-03-13 16:21:21.0318 Info Copied jacket_medium.png -2023-03-13 16:21:21.0318 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js -2023-03-13 16:21:21.0332 Info Copied api.js -2023-03-13 16:21:21.0332 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js -2023-03-13 16:21:21.0349 Info Copied bootstrap-multiselect.js -2023-03-13 16:21:21.0349 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js -2023-03-13 16:21:21.0364 Info Copied bootstrap-notify.js -2023-03-13 16:21:21.0369 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js -2023-03-13 16:21:21.0379 Info Copied filesize.min.js -2023-03-13 16:21:21.0379 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js -2023-03-13 16:21:21.0397 Info Copied handlebars.min.js -2023-03-13 16:21:21.0397 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js -2023-03-13 16:21:21.0412 Info Copied handlebarsextend.js -2023-03-13 16:21:21.0412 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js -2023-03-13 16:21:21.0427 Info Copied handlebarsmoment.js -2023-03-13 16:21:21.0427 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js -2023-03-13 16:21:21.0445 Info Copied jquery.dataTables.min.js -2023-03-13 16:21:21.0450 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js -2023-03-13 16:21:21.0464 Info Copied jquery.min.js -2023-03-13 16:21:21.0468 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js -2023-03-13 16:21:21.0481 Info Copied jQuery.tagify.min.js -2023-03-13 16:21:21.0481 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js -2023-03-13 16:21:21.0497 Info Copied moment.min.js -2023-03-13 16:21:21.0497 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js -2023-03-13 16:21:21.0513 Info Copied tagify.min.js -2023-03-13 16:21:21.0518 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html -2023-03-13 16:21:21.0528 Info Copied login.html -2023-03-13 16:21:21.0528 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/createdump to destination: /app/Jackett/createdump -2023-03-13 16:21:21.0547 Info Copied createdump -2023-03-13 16:21:21.0547 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll -2023-03-13 16:21:21.0561 Info Copied DateTimeRoutines.dll -2023-03-13 16:21:21.0561 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb -2023-03-13 16:21:21.0577 Info Copied DateTimeRoutines.pdb -2023-03-13 16:21:21.0577 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml -2023-03-13 16:21:21.0591 Info Copied 0daykiev.yml -2023-03-13 16:21:21.0591 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml -2023-03-13 16:21:21.0606 Info Copied 0magnet.yml -2023-03-13 16:21:21.0610 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml -2023-03-13 16:21:21.0621 Info Copied 1337x.yml -2023-03-13 16:21:21.0621 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml -2023-03-13 16:21:21.0635 Info Copied 1ptbar.yml -2023-03-13 16:21:21.0640 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml -2023-03-13 16:21:21.0650 Info Copied 2fast4you.yml -2023-03-13 16:21:21.0650 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml -2023-03-13 16:21:21.0665 Info Copied 2xfree.yml -2023-03-13 16:21:21.0670 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml -2023-03-13 16:21:21.0680 Info Copied 3changtrai.yml -2023-03-13 16:21:21.0680 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml -2023-03-13 16:21:21.0693 Info Copied 3dtorrents.yml -2023-03-13 16:21:21.0698 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml -2023-03-13 16:21:21.0708 Info Copied 4thd.yml -2023-03-13 16:21:21.0708 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml -2023-03-13 16:21:21.0725 Info Copied 52pt.yml -2023-03-13 16:21:21.0731 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml -2023-03-13 16:21:21.0744 Info Copied abnormal.yml -2023-03-13 16:21:21.0749 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml -2023-03-13 16:21:21.0762 Info Copied abtorrents.yml -2023-03-13 16:21:21.0767 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml -2023-03-13 16:21:21.0780 Info Copied acervos-api.yml -2023-03-13 16:21:21.0780 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml -2023-03-13 16:21:21.0798 Info Copied acgrip.yml -2023-03-13 16:21:21.0798 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml -2023-03-13 16:21:21.0815 Info Copied acgsou.yml -2023-03-13 16:21:21.0821 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml -2023-03-13 16:21:21.0834 Info Copied acidlounge.yml -2023-03-13 16:21:21.0839 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml -2023-03-13 16:21:21.0852 Info Copied acrossthetasman.yml -2023-03-13 16:21:21.0857 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml -2023-03-13 16:21:21.0870 Info Copied aftershock.yml -2023-03-13 16:21:21.0870 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml -2023-03-13 16:21:21.0888 Info Copied aidoruonline.yml -2023-03-13 16:21:21.0888 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml -2023-03-13 16:21:21.0905 Info Copied aither-api.yml -2023-03-13 16:21:21.0923 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml -2023-03-13 16:21:21.1009 Info Copied amigosshare.yml -2023-03-13 16:21:21.1009 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml -2023-03-13 16:21:21.1031 Info Copied anilibria.yml -2023-03-13 16:21:21.1031 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml -2023-03-13 16:21:21.1050 Info Copied anime-free.yml -2023-03-13 16:21:21.1050 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml -2023-03-13 16:21:21.1071 Info Copied animelayer.yml -2023-03-13 16:21:21.1077 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml -2023-03-13 16:21:21.1091 Info Copied animetracker.yml -2023-03-13 16:21:21.1097 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml -2023-03-13 16:21:21.1112 Info Copied animeworld-api.yml -2023-03-13 16:21:21.1121 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml -2023-03-13 16:21:21.1135 Info Copied anirena.yml -2023-03-13 16:21:21.1141 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml -2023-03-13 16:21:21.1156 Info Copied anisource.yml -2023-03-13 16:21:21.1162 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml -2023-03-13 16:21:21.1180 Info Copied anthelion-api.yml -2023-03-13 16:21:21.1180 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml -2023-03-13 16:21:21.1202 Info Copied arabafenice.yml -2023-03-13 16:21:21.1208 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml -2023-03-13 16:21:21.1221 Info Copied arabp2p.yml -2023-03-13 16:21:21.1227 Info Attempting to copy arabtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/arabtorrents.yml to destination: /app/Jackett/Definitions/arabtorrents.yml -2023-03-13 16:21:21.1240 Info Copied arabtorrents.yml -2023-03-13 16:21:21.1240 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml -2023-03-13 16:21:21.1260 Info Copied arenabg.yml -2023-03-13 16:21:21.1260 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml -2023-03-13 16:21:21.1279 Info Copied asiancinema.yml -2023-03-13 16:21:21.1279 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml -2023-03-13 16:21:21.1297 Info Copied asiandvdclub.yml -2023-03-13 16:21:21.1297 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml -2023-03-13 16:21:21.1319 Info Copied audiences.yml -2023-03-13 16:21:21.1319 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml -2023-03-13 16:21:21.1338 Info Copied audionews.yml -2023-03-13 16:21:21.1338 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml -2023-03-13 16:21:21.1357 Info Copied aussierules.yml -2023-03-13 16:21:21.1357 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml -2023-03-13 16:21:21.1377 Info Copied backups.yml -2023-03-13 16:21:21.1377 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml -2023-03-13 16:21:21.1394 Info Copied badasstorrents.yml -2023-03-13 16:21:21.1400 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml -2023-03-13 16:21:21.1412 Info Copied bangumi-moe.yml -2023-03-13 16:21:21.1417 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml -2023-03-13 16:21:21.1431 Info Copied beitai.yml -2023-03-13 16:21:21.1431 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml -2023-03-13 16:21:21.1450 Info Copied bestcore.yml -2023-03-13 16:21:21.1450 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml -2023-03-13 16:21:21.1469 Info Copied beyond-hd.yml -2023-03-13 16:21:21.1469 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml -2023-03-13 16:21:21.1488 Info Copied bibliotik.yml -2023-03-13 16:21:21.1488 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml -2023-03-13 16:21:21.1508 Info Copied bigfangroup.yml -2023-03-13 16:21:21.1508 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml -2023-03-13 16:21:21.1524 Info Copied bitbazis.yml -2023-03-13 16:21:21.1527 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml -2023-03-13 16:21:21.1527 Info Copied bitded.yml -2023-03-13 16:21:21.1527 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml -2023-03-13 16:21:21.1540 Info Copied bithorlo.yml -2023-03-13 16:21:21.1540 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml -2023-03-13 16:21:21.1548 Info Copied bithumen.yml -2023-03-13 16:21:21.1548 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml -2023-03-13 16:21:21.1557 Info Copied bitnova.yml -2023-03-13 16:21:21.1557 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml -2023-03-13 16:21:21.1557 Info Copied bitofvalor.yml -2023-03-13 16:21:21.1566 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml -2023-03-13 16:21:21.1566 Info Copied bitru.yml -2023-03-13 16:21:21.1566 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml -2023-03-13 16:21:21.1580 Info Copied bitsearch.yml -2023-03-13 16:21:21.1580 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml -2023-03-13 16:21:21.1587 Info Copied bitsexy.yml -2023-03-13 16:21:21.1587 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml -2023-03-13 16:21:21.1587 Info Copied bitspyder.yml -2023-03-13 16:21:21.1597 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml -2023-03-13 16:21:21.1597 Info Copied Bittorrentfiles.yml -2023-03-13 16:21:21.1597 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml -2023-03-13 16:21:21.1610 Info Copied bitturk.yml -2023-03-13 16:21:21.1610 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml -2023-03-13 16:21:21.1618 Info Copied bluebird.yml -2023-03-13 16:21:21.1618 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml -2023-03-13 16:21:21.1618 Info Copied blutopia-api.yml -2023-03-13 16:21:21.1627 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml -2023-03-13 16:21:21.1627 Info Copied booktracker.yml -2023-03-13 16:21:21.1627 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml -2023-03-13 16:21:21.1641 Info Copied bootytape.yml -2023-03-13 16:21:21.1641 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml -2023-03-13 16:21:21.1648 Info Copied borgzelle.yml -2023-03-13 16:21:21.1648 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml -2023-03-13 16:21:21.1648 Info Copied boxingtorrents.yml -2023-03-13 16:21:21.1658 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml -2023-03-13 16:21:21.1658 Info Copied broadcity.yml -2023-03-13 16:21:21.1658 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml -2023-03-13 16:21:21.1671 Info Copied brsociety-api.yml -2023-03-13 16:21:21.1671 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml -2023-03-13 16:21:21.1678 Info Copied bt4g.yml -2023-03-13 16:21:21.1678 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml -2023-03-13 16:21:21.1678 Info Copied btdigg.yml -2023-03-13 16:21:21.1688 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml -2023-03-13 16:21:21.1688 Info Copied btetree.yml -2023-03-13 16:21:21.1688 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml -2023-03-13 16:21:21.1701 Info Copied btmet.yml -2023-03-13 16:21:21.1701 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml -2023-03-13 16:21:21.1708 Info Copied btnext.yml -2023-03-13 16:21:21.1708 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml -2023-03-13 16:21:21.1708 Info Copied btschool.yml -2023-03-13 16:21:21.1717 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml -2023-03-13 16:21:21.1717 Info Copied btsow.yml -2023-03-13 16:21:21.1717 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml -2023-03-13 16:21:21.1731 Info Copied bulltorrent.yml -2023-03-13 16:21:21.1731 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml -2023-03-13 16:21:21.1738 Info Copied bwtorrents.yml -2023-03-13 16:21:21.1738 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml -2023-03-13 16:21:21.1746 Info Copied byrbt.yml -2023-03-13 16:21:21.1746 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml -2023-03-13 16:21:21.1746 Info Copied byrutor.yml -2023-03-13 16:21:21.1746 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml -2023-03-13 16:21:21.1761 Info Copied carpathians.yml -2023-03-13 16:21:21.1761 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml -2023-03-13 16:21:21.1768 Info Copied carphunter.yml -2023-03-13 16:21:21.1768 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml -2023-03-13 16:21:21.1768 Info Copied carpt.yml -2023-03-13 16:21:21.1778 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml -2023-03-13 16:21:21.1778 Info Copied cartoonchaos.yml -2023-03-13 16:21:21.1778 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml -2023-03-13 16:21:21.1791 Info Copied cathoderaytube.yml -2023-03-13 16:21:21.1791 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml -2023-03-13 16:21:21.1799 Info Copied catorrent.yml -2023-03-13 16:21:21.1799 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml -2023-03-13 16:21:21.1809 Info Copied ccfbits.yml -2023-03-13 16:21:21.1809 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml -2023-03-13 16:21:21.1818 Info Copied ceskeforum.yml -2023-03-13 16:21:21.1818 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml -2023-03-13 16:21:21.1827 Info Copied chdbits.yml -2023-03-13 16:21:21.1827 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml -2023-03-13 16:21:21.1827 Info Copied chilebt.yml -2023-03-13 16:21:21.1838 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml -2023-03-13 16:21:21.1838 Info Copied cinemageddon.yml -2023-03-13 16:21:21.1847 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml -2023-03-13 16:21:21.1847 Info Copied cinemamovies.yml -2023-03-13 16:21:21.1847 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml -2023-03-13 16:21:21.1862 Info Copied cinematik.yml -2023-03-13 16:21:21.1862 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml -2023-03-13 16:21:21.1871 Info Copied classix.yml -2023-03-13 16:21:21.1871 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml -2023-03-13 16:21:21.1880 Info Copied coastalcrew.yml -2023-03-13 16:21:21.1880 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml -2023-03-13 16:21:21.1889 Info Copied comicat.yml -2023-03-13 16:21:21.1889 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml -2023-03-13 16:21:21.1898 Info Copied concen.yml -2023-03-13 16:21:21.1898 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml -2023-03-13 16:21:21.1907 Info Copied concertos.yml -2023-03-13 16:21:21.1907 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml -2023-03-13 16:21:21.1907 Info Copied cpabien.yml -2023-03-13 16:21:21.1917 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml -2023-03-13 16:21:21.1917 Info Copied cpasbienclone.yml -2023-03-13 16:21:21.1917 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml -2023-03-13 16:21:21.1930 Info Copied cpasbiensi.yml -2023-03-13 16:21:21.1930 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml -2023-03-13 16:21:21.1937 Info Copied crackingpatching.yml -2023-03-13 16:21:21.1937 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml -2023-03-13 16:21:21.1937 Info Copied crazyhd.yml -2023-03-13 16:21:21.1947 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml -2023-03-13 16:21:21.1947 Info Copied crazyspirits.yml -2023-03-13 16:21:21.1947 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml -2023-03-13 16:21:21.1960 Info Copied crnaberza.yml -2023-03-13 16:21:21.1960 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml -2023-03-13 16:21:21.1968 Info Copied crt2fa.yml -2023-03-13 16:21:21.1968 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml -2023-03-13 16:21:21.1968 Info Copied danishbytes-api.yml -2023-03-13 16:21:21.1977 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml -2023-03-13 16:21:21.1977 Info Copied dariustracker.yml -2023-03-13 16:21:21.1977 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml -2023-03-13 16:21:21.1990 Info Copied dark-shadow.yml -2023-03-13 16:21:21.1990 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml -2023-03-13 16:21:21.1998 Info Copied datascene-api.yml -2023-03-13 16:21:21.1998 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml -2023-03-13 16:21:21.1998 Info Copied datatalli.yml -2023-03-13 16:21:21.2008 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml -2023-03-13 16:21:21.2008 Info Copied deildu.yml -2023-03-13 16:21:21.2008 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml -2023-03-13 16:21:21.2021 Info Copied demonoid.yml -2023-03-13 16:21:21.2021 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml -2023-03-13 16:21:21.2028 Info Copied desitorrents-api.yml -2023-03-13 16:21:21.2028 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml -2023-03-13 16:21:21.2028 Info Copied devil-torrents.yml -2023-03-13 16:21:21.2038 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml -2023-03-13 16:21:21.2038 Info Copied diablotorrent.yml -2023-03-13 16:21:21.2038 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml -2023-03-13 16:21:21.2050 Info Copied digitalcore.yml -2023-03-13 16:21:21.2050 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml -2023-03-13 16:21:21.2058 Info Copied dimeadozen.yml -2023-03-13 16:21:21.2058 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml -2023-03-13 16:21:21.2058 Info Copied discfan.yml -2023-03-13 16:21:21.2075 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml -2023-03-13 16:21:21.2081 Info Copied divteam.yml -2023-03-13 16:21:21.2081 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml -2023-03-13 16:21:21.2088 Info Copied dmhy.yml -2023-03-13 16:21:21.2088 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml -2023-03-13 16:21:21.2088 Info Copied docspedia.yml -2023-03-13 16:21:21.2097 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml -2023-03-13 16:21:21.2097 Info Copied dodder.yml -2023-03-13 16:21:21.2097 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml -2023-03-13 16:21:21.2110 Info Copied dreamtracker.yml -2023-03-13 16:21:21.2110 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml -2023-03-13 16:21:21.2118 Info Copied dxp.yml -2023-03-13 16:21:21.2118 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml -2023-03-13 16:21:21.2118 Info Copied ebookbay.yml -2023-03-13 16:21:21.2127 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml -2023-03-13 16:21:21.2127 Info Copied ebooks-shares.yml -2023-03-13 16:21:21.2127 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml -2023-03-13 16:21:21.2140 Info Copied ehentai.yml -2023-03-13 16:21:21.2140 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml -2023-03-13 16:21:21.2149 Info Copied electro-torrent.yml -2023-03-13 16:21:21.2149 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml -2023-03-13 16:21:21.2149 Info Copied empornium.yml -2023-03-13 16:21:21.2157 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml -2023-03-13 16:21:21.2157 Info Copied empornium2fa.yml -2023-03-13 16:21:21.2157 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml -2023-03-13 16:21:21.2168 Info Copied eniahd.yml -2023-03-13 16:21:21.2168 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml -2023-03-13 16:21:21.2168 Info Copied esharenet.yml -2023-03-13 16:21:21.2168 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml -2023-03-13 16:21:21.2180 Info Copied estone.yml -2023-03-13 16:21:21.2180 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml -2023-03-13 16:21:21.2187 Info Copied exkinoray.yml -2023-03-13 16:21:21.2187 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml -2023-03-13 16:21:21.2187 Info Copied extratorrent-st.yml -2023-03-13 16:21:21.2187 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml -2023-03-13 16:21:21.2200 Info Copied extremebits.yml -2023-03-13 16:21:21.2200 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml -2023-03-13 16:21:21.2206 Info Copied extremetorrents.yml -2023-03-13 16:21:21.2206 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml -2023-03-13 16:21:21.2206 Info Copied extremlymtorrents.yml -2023-03-13 16:21:21.2206 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml -2023-03-13 16:21:21.2219 Info Copied exttorrents.yml -2023-03-13 16:21:21.2219 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml -2023-03-13 16:21:21.2219 Info Copied eztv.yml -2023-03-13 16:21:21.2227 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml -2023-03-13 16:21:21.2227 Info Copied falkonvisionteam.yml -2023-03-13 16:21:21.2227 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml -2023-03-13 16:21:21.2239 Info Copied fanoin.yml -2023-03-13 16:21:21.2239 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml -2023-03-13 16:21:21.2239 Info Copied fantasticheaven.yml -2023-03-13 16:21:21.2247 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml -2023-03-13 16:21:21.2247 Info Copied fantastiko.yml -2023-03-13 16:21:21.2247 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml -2023-03-13 16:21:21.2258 Info Copied femdomcult.yml -2023-03-13 16:21:21.2258 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml -2023-03-13 16:21:21.2258 Info Copied fenyarnyek-tracker.yml -2023-03-13 16:21:21.2258 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml -2023-03-13 16:21:21.2271 Info Copied file-tracker.yml -2023-03-13 16:21:21.2271 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml -2023-03-13 16:21:21.2278 Info Copied filelisting.yml -2023-03-13 16:21:21.2278 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml -2023-03-13 16:21:21.2278 Info Copied finelite.yml -2023-03-13 16:21:21.2278 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml -2023-03-13 16:21:21.2291 Info Copied finvip.yml -2023-03-13 16:21:21.2291 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml -2023-03-13 16:21:21.2297 Info Copied firebit.yml -2023-03-13 16:21:21.2297 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml -2023-03-13 16:21:21.2297 Info Copied fluxzone.yml -2023-03-13 16:21:21.2297 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml -2023-03-13 16:21:21.2310 Info Copied freshmeat.yml -2023-03-13 16:21:21.2310 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml -2023-03-13 16:21:21.2317 Info Copied frozenlayer.yml -2023-03-13 16:21:21.2317 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml -2023-03-13 16:21:21.2317 Info Copied ftuapps.yml -2023-03-13 16:21:21.2317 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml -2023-03-13 16:21:21.2329 Info Copied funkytorrents.yml -2023-03-13 16:21:21.2329 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml -2023-03-13 16:21:21.2329 Info Copied fuzer.yml -2023-03-13 16:21:21.2337 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml -2023-03-13 16:21:21.2337 Info Copied gainbound.yml -2023-03-13 16:21:21.2337 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml -2023-03-13 16:21:21.2348 Info Copied gamestorrents.yml -2023-03-13 16:21:21.2348 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml -2023-03-13 16:21:21.2348 Info Copied gay-torrents.yml -2023-03-13 16:21:21.2348 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml -2023-03-13 16:21:21.2360 Info Copied gay-torrentsorg.yml -2023-03-13 16:21:21.2360 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml -2023-03-13 16:21:21.2366 Info Copied gaytorrentru.yml -2023-03-13 16:21:21.2366 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml -2023-03-13 16:21:21.2366 Info Copied generationfree-api.yml -2023-03-13 16:21:21.2366 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml -2023-03-13 16:21:21.2378 Info Copied genesismovement.yml -2023-03-13 16:21:21.2378 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml -2023-03-13 16:21:21.2378 Info Copied gigatorrents.yml -2023-03-13 16:21:21.2387 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml -2023-03-13 16:21:21.2387 Info Copied gimmepeers.yml -2023-03-13 16:21:21.2387 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml -2023-03-13 16:21:21.2398 Info Copied girotorrent.yml -2023-03-13 16:21:21.2398 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml -2023-03-13 16:21:21.2398 Info Copied gktorrent.yml -2023-03-13 16:21:21.2398 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml -2023-03-13 16:21:21.2410 Info Copied glodls.yml -2023-03-13 16:21:21.2410 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml -2023-03-13 16:21:21.2410 Info Copied greekdiamond.yml -2023-03-13 16:21:21.2418 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml -2023-03-13 16:21:21.2418 Info Copied greekteam.yml -2023-03-13 16:21:21.2418 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml -2023-03-13 16:21:21.2428 Info Copied gtorrentpro.yml -2023-03-13 16:21:21.2428 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml -2023-03-13 16:21:21.2428 Info Copied haidan.yml -2023-03-13 16:21:21.2436 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml -2023-03-13 16:21:21.2436 Info Copied haitang.yml -2023-03-13 16:21:21.2436 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml -2023-03-13 16:21:21.2447 Info Copied happyfappy.yml -2023-03-13 16:21:21.2447 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml -2023-03-13 16:21:21.2447 Info Copied hawke-uno.yml -2023-03-13 16:21:21.2447 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml -2023-03-13 16:21:21.2460 Info Copied hd-unit3d-api.yml -2023-03-13 16:21:21.2460 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml -2023-03-13 16:21:21.2460 Info Copied hd4fans.yml -2023-03-13 16:21:21.2468 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml -2023-03-13 16:21:21.2468 Info Copied hdarea.yml -2023-03-13 16:21:21.2468 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml -2023-03-13 16:21:21.2479 Info Copied hdatmos.yml -2023-03-13 16:21:21.2479 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml -2023-03-13 16:21:21.2479 Info Copied hdc.yml -2023-03-13 16:21:21.2487 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml -2023-03-13 16:21:21.2487 Info Copied hdchina.yml -2023-03-13 16:21:21.2487 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml -2023-03-13 16:21:21.2498 Info Copied hdcztorrent.yml -2023-03-13 16:21:21.2498 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml -2023-03-13 16:21:21.2498 Info Copied hddolby.yml -2023-03-13 16:21:21.2507 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml -2023-03-13 16:21:21.2507 Info Copied hdfans.yml -2023-03-13 16:21:21.2507 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml -2023-03-13 16:21:21.2517 Info Copied hdforever.yml -2023-03-13 16:21:21.2517 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml -2023-03-13 16:21:21.2517 Info Copied hdgalaktik.yml -2023-03-13 16:21:21.2517 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml -2023-03-13 16:21:21.2530 Info Copied hdhome.yml -2023-03-13 16:21:21.2530 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml -2023-03-13 16:21:21.2530 Info Copied hdmayi.yml -2023-03-13 16:21:21.2538 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml -2023-03-13 16:21:21.2538 Info Copied hdmonkey.yml -2023-03-13 16:21:21.2538 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml -2023-03-13 16:21:21.2549 Info Copied hdolimpo-api.yml -2023-03-13 16:21:21.2549 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml -2023-03-13 16:21:21.2549 Info Copied hdonly.yml -2023-03-13 16:21:21.2557 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml -2023-03-13 16:21:21.2557 Info Copied hdroute.yml -2023-03-13 16:21:21.2557 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml -2023-03-13 16:21:21.2568 Info Copied hdsky.yml -2023-03-13 16:21:21.2568 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml -2023-03-13 16:21:21.2568 Info Copied hdtime.yml -2023-03-13 16:21:21.2568 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml -2023-03-13 16:21:21.2580 Info Copied hdtorrentsit.yml -2023-03-13 16:21:21.2580 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml -2023-03-13 16:21:21.2587 Info Copied hdturk.yml -2023-03-13 16:21:21.2587 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml -2023-03-13 16:21:21.2587 Info Copied hdu.yml -2023-03-13 16:21:21.2587 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml -2023-03-13 16:21:21.2599 Info Copied hdzone.yml -2023-03-13 16:21:21.2599 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml -2023-03-13 16:21:21.2599 Info Copied hebits.yml -2023-03-13 16:21:21.2607 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml -2023-03-13 16:21:21.2607 Info Copied hellashut.yml -2023-03-13 16:21:21.2607 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml -2023-03-13 16:21:21.2617 Info Copied hhanclub.yml -2023-03-13 16:21:21.2617 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml -2023-03-13 16:21:21.2617 Info Copied houseofdevil.yml -2023-03-13 16:21:21.2617 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml -2023-03-13 16:21:21.2630 Info Copied hqmusic.yml -2023-03-13 16:21:21.2630 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml -2023-03-13 16:21:21.2636 Info Copied huntorrent.yml -2023-03-13 16:21:21.2636 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml -2023-03-13 16:21:21.2636 Info Copied icc2022.yml -2023-03-13 16:21:21.2636 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml -2023-03-13 16:21:21.2648 Info Copied idope.yml -2023-03-13 16:21:21.2648 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml -2023-03-13 16:21:21.2648 Info Copied ihdbits.yml -2023-03-13 16:21:21.2656 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml -2023-03-13 16:21:21.2656 Info Copied ilcorsaroblu.yml -2023-03-13 16:21:21.2656 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml -2023-03-13 16:21:21.2667 Info Copied ilcorsaronero.yml -2023-03-13 16:21:21.2667 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml -2023-03-13 16:21:21.2667 Info Copied immortuos.yml -2023-03-13 16:21:21.2667 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml -2023-03-13 16:21:21.2680 Info Copied indietorrents.yml -2023-03-13 16:21:21.2680 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml -2023-03-13 16:21:21.2686 Info Copied insanetracker.yml -2023-03-13 16:21:21.2686 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml -2023-03-13 16:21:21.2686 Info Copied internetarchive.yml -2023-03-13 16:21:21.2686 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml -2023-03-13 16:21:21.2699 Info Copied isohunt2.yml -2023-03-13 16:21:21.2699 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml -2023-03-13 16:21:21.2699 Info Copied itorrent.yml -2023-03-13 16:21:21.2707 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml -2023-03-13 16:21:21.2707 Info Copied jav-torrent.yml -2023-03-13 16:21:21.2707 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml -2023-03-13 16:21:21.2718 Info Copied jme-reunit3d-api.yml -2023-03-13 16:21:21.2718 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml -2023-03-13 16:21:21.2718 Info Copied joyhd.yml -2023-03-13 16:21:21.2718 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml -2023-03-13 16:21:21.2730 Info Copied jpopsuki.yml -2023-03-13 16:21:21.2730 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml -2023-03-13 16:21:21.2737 Info Copied jptv.yml -2023-03-13 16:21:21.2737 Info Attempting to copy kamept.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/kamept.yml to destination: /app/Jackett/Definitions/kamept.yml -2023-03-13 16:21:21.2737 Info Copied kamept.yml -2023-03-13 16:21:21.2737 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml -2023-03-13 16:21:21.2749 Info Copied karagarga.yml -2023-03-13 16:21:21.2749 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml -2023-03-13 16:21:21.2749 Info Copied keepfriends.yml -2023-03-13 16:21:21.2758 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml -2023-03-13 16:21:21.2758 Info Copied kickasstorrents-to.yml -2023-03-13 16:21:21.2758 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml -2023-03-13 16:21:21.2768 Info Copied kickasstorrents-ws.yml -2023-03-13 16:21:21.2768 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml -2023-03-13 16:21:21.2768 Info Copied kinorun.yml -2023-03-13 16:21:21.2776 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml -2023-03-13 16:21:21.2776 Info Copied kinozal.yml -2023-03-13 16:21:21.2776 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml -2023-03-13 16:21:21.2787 Info Copied knaben.yml -2023-03-13 16:21:21.2787 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml -2023-03-13 16:21:21.2787 Info Copied korsar.yml -2023-03-13 16:21:21.2787 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml -2023-03-13 16:21:21.2800 Info Copied krazyzone.yml -2023-03-13 16:21:21.2800 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml -2023-03-13 16:21:21.2807 Info Copied kufirc.yml -2023-03-13 16:21:21.2807 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml -2023-03-13 16:21:21.2807 Info Copied lastfiles.yml -2023-03-13 16:21:21.2807 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml -2023-03-13 16:21:21.2820 Info Copied lat-team-api.yml -2023-03-13 16:21:21.2820 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml -2023-03-13 16:21:21.2827 Info Copied learnbits.yml -2023-03-13 16:21:21.2827 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml -2023-03-13 16:21:21.2827 Info Copied learnflakes.yml -2023-03-13 16:21:21.2827 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml -2023-03-13 16:21:21.2840 Info Copied leech24.yml -2023-03-13 16:21:21.2840 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml -2023-03-13 16:21:21.2846 Info Copied lemonhd.yml -2023-03-13 16:21:21.2846 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml -2023-03-13 16:21:21.2846 Info Copied lepornoinfo.yml -2023-03-13 16:21:21.2846 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml -2023-03-13 16:21:21.2859 Info Copied les-cinephiles.yml -2023-03-13 16:21:21.2859 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml -2023-03-13 16:21:21.2859 Info Copied lesaloon.yml -2023-03-13 16:21:21.2867 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml -2023-03-13 16:21:21.2867 Info Copied libranet.yml -2023-03-13 16:21:21.2867 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml -2023-03-13 16:21:21.2878 Info Copied limetorrents.yml -2023-03-13 16:21:21.2878 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml -2023-03-13 16:21:21.2878 Info Copied limetorrentsclone.yml -2023-03-13 16:21:21.2886 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml -2023-03-13 16:21:21.2886 Info Copied linkomanija.yml -2023-03-13 16:21:21.2886 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml -2023-03-13 16:21:21.2898 Info Copied linuxtracker.yml -2023-03-13 16:21:21.2898 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml -2023-03-13 16:21:21.2898 Info Copied locadora.yml -2023-03-13 16:21:21.2907 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml -2023-03-13 16:21:21.2907 Info Copied losslessclub.yml -2023-03-13 16:21:21.2907 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml -2023-03-13 16:21:21.2918 Info Copied lst.yml -2023-03-13 16:21:21.2918 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml -2023-03-13 16:21:21.2918 Info Copied mactorrentsdownload.yml -2023-03-13 16:21:21.2918 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml -2023-03-13 16:21:21.2931 Info Copied madsrevolution.yml -2023-03-13 16:21:21.2931 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml -2023-03-13 16:21:21.2937 Info Copied magicheaven.yml -2023-03-13 16:21:21.2937 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml -2023-03-13 16:21:21.2937 Info Copied magico.yml -2023-03-13 16:21:21.2937 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml -2023-03-13 16:21:21.2951 Info Copied majomparade.yml -2023-03-13 16:21:21.2951 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml -2023-03-13 16:21:21.2958 Info Copied marinetracker.yml -2023-03-13 16:21:21.2958 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml -2023-03-13 16:21:21.2958 Info Copied mazepa.yml -2023-03-13 16:21:21.2966 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml -2023-03-13 16:21:21.2966 Info Copied megamixtracker.yml -2023-03-13 16:21:21.2966 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml -2023-03-13 16:21:21.2977 Info Copied megapeer.yml -2023-03-13 16:21:21.2977 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml -2023-03-13 16:21:21.2977 Info Copied mesevilag.yml -2023-03-13 16:21:21.2977 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml -2023-03-13 16:21:21.2991 Info Copied metaltracker.yml -2023-03-13 16:21:21.2991 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml -2023-03-13 16:21:21.2997 Info Copied mikan.yml -2023-03-13 16:21:21.2997 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml -2023-03-13 16:21:21.2997 Info Copied milkie.yml -2023-03-13 16:21:21.2997 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml -2023-03-13 16:21:21.3009 Info Copied miobt.yml -2023-03-13 16:21:21.3009 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml -2023-03-13 16:21:21.3009 Info Copied mircrew.yml -2023-03-13 16:21:21.3017 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml -2023-03-13 16:21:21.3017 Info Copied mixtapetorrent.yml -2023-03-13 16:21:21.3017 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml -2023-03-13 16:21:21.3028 Info Copied mma-torrents.yml -2023-03-13 16:21:21.3028 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml -2023-03-13 16:21:21.3028 Info Copied mnv.yml -2023-03-13 16:21:21.3037 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml -2023-03-13 16:21:21.3037 Info Copied mojblink.yml -2023-03-13 16:21:21.3037 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml -2023-03-13 16:21:21.3047 Info Copied mousebits.yml -2023-03-13 16:21:21.3047 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml -2023-03-13 16:21:21.3047 Info Copied moviesdvdr.yml -2023-03-13 16:21:21.3047 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml -2023-03-13 16:21:21.3059 Info Copied moviesite.yml -2023-03-13 16:21:21.3059 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml -2023-03-13 16:21:21.3059 Info Copied movietorrent.yml -2023-03-13 16:21:21.3067 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml -2023-03-13 16:21:21.3067 Info Copied movietorrentz.yml -2023-03-13 16:21:21.3067 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml -2023-03-13 16:21:21.3078 Info Copied mteamtp.yml -2023-03-13 16:21:21.3078 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml -2023-03-13 16:21:21.3078 Info Copied mteamtp2fa.yml -2023-03-13 16:21:21.3078 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml -2023-03-13 16:21:21.3091 Info Copied muziekfabriek.yml -2023-03-13 16:21:21.3091 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml -2023-03-13 16:21:21.3097 Info Copied mvgroupforum.yml -2023-03-13 16:21:21.3097 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml -2023-03-13 16:21:21.3097 Info Copied mvgroupmain.yml -2023-03-13 16:21:21.3097 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml -2023-03-13 16:21:21.3109 Info Copied mypornclub.yml -2023-03-13 16:21:21.3109 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml -2023-03-13 16:21:21.3109 Info Copied myspleen.yml -2023-03-13 16:21:21.3118 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml -2023-03-13 16:21:21.3118 Info Copied nethd.yml -2023-03-13 16:21:21.3118 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml -2023-03-13 16:21:21.3129 Info Copied newretro.yml -2023-03-13 16:21:21.3129 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml -2023-03-13 16:21:21.3129 Info Copied newstudio.yml -2023-03-13 16:21:21.3137 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml -2023-03-13 16:21:21.3137 Info Copied newstudiol.yml -2023-03-13 16:21:21.3137 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml -2023-03-13 16:21:21.3147 Info Copied nicept.yml -2023-03-13 16:21:21.3147 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml -2023-03-13 16:21:21.3147 Info Copied nipponsei.yml -2023-03-13 16:21:21.3147 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml -2023-03-13 16:21:21.3160 Info Copied nntt.yml -2023-03-13 16:21:21.3160 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml -2023-03-13 16:21:21.3168 Info Copied noname-club.yml -2023-03-13 16:21:21.3168 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml -2023-03-13 16:21:21.3168 Info Copied noname-clubl.yml -2023-03-13 16:21:21.3177 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml -2023-03-13 16:21:21.3177 Info Copied nyaasi.yml -2023-03-13 16:21:21.3190 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml -2023-03-13 16:21:21.3190 Info Copied oldtoonsworld.yml -2023-03-13 16:21:21.3197 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml -2023-03-13 16:21:21.3197 Info Copied onejav.yml -2023-03-13 16:21:21.3197 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml -2023-03-13 16:21:21.3207 Info Copied opencd.yml -2023-03-13 16:21:21.3207 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml -2023-03-13 16:21:21.3207 Info Copied oshenpt.yml -2023-03-13 16:21:21.3207 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml -2023-03-13 16:21:21.3220 Info Copied ourbits.yml -2023-03-13 16:21:21.3220 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml -2023-03-13 16:21:21.3226 Info Copied p2pbg.yml -2023-03-13 16:21:21.3226 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml -2023-03-13 16:21:21.3226 Info Copied parnuxi.yml -2023-03-13 16:21:21.3226 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml -2023-03-13 16:21:21.3238 Info Copied partis.yml -2023-03-13 16:21:21.3238 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml -2023-03-13 16:21:21.3238 Info Copied pctorrent.yml -2023-03-13 16:21:21.3279 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml -2023-03-13 16:21:21.3279 Info Copied peeratiko.yml -2023-03-13 16:21:21.3279 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml -2023-03-13 16:21:21.3289 Info Copied peersfm.yml -2023-03-13 16:21:21.3289 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml -2023-03-13 16:21:21.3289 Info Copied pier720.yml -2023-03-13 16:21:21.3297 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml -2023-03-13 16:21:21.3297 Info Copied pignetwork.yml -2023-03-13 16:21:21.3297 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml -2023-03-13 16:21:21.3308 Info Copied piratbit.yml -2023-03-13 16:21:21.3308 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml -2023-03-13 16:21:21.3322 Info Copied piratbitl.yml -2023-03-13 16:21:21.3322 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml -2023-03-13 16:21:21.3328 Info Copied pixelcove.yml -2023-03-13 16:21:21.3328 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml -2023-03-13 16:21:21.3328 Info Copied pixelcove2fa.yml -2023-03-13 16:21:21.3328 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml -2023-03-13 16:21:21.3340 Info Copied polishsource.yml -2023-03-13 16:21:21.3340 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml -2023-03-13 16:21:21.3340 Info Copied polishtracker-api.yml -2023-03-13 16:21:21.3347 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml -2023-03-13 16:21:21.3347 Info Copied pornbay.yml -2023-03-13 16:21:21.3347 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml -2023-03-13 16:21:21.3357 Info Copied pornoslab.yml -2023-03-13 16:21:21.3357 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml -2023-03-13 16:21:21.3357 Info Copied pornotorrent.yml -2023-03-13 16:21:21.3357 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml -2023-03-13 16:21:21.3368 Info Copied portugas-api.yml -2023-03-13 16:21:21.3368 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml -2023-03-13 16:21:21.3368 Info Copied potuk.yml -2023-03-13 16:21:21.3368 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml -2023-03-13 16:21:21.3379 Info Copied proaudiotorrents.yml -2023-03-13 16:21:21.3379 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml -2023-03-13 16:21:21.3379 Info Copied proporno.yml -2023-03-13 16:21:21.3379 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml -2023-03-13 16:21:21.3390 Info Copied ptchina.yml -2023-03-13 16:21:21.3390 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml -2023-03-13 16:21:21.3390 Info Copied pterclub.yml -2023-03-13 16:21:21.3398 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml -2023-03-13 16:21:21.3398 Info Copied ptfiles.yml -2023-03-13 16:21:21.3398 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml -2023-03-13 16:21:21.3408 Info Copied pthome.yml -2023-03-13 16:21:21.3408 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml -2023-03-13 16:21:21.3408 Info Copied ptmsg.yml -2023-03-13 16:21:21.3408 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml -2023-03-13 16:21:21.3419 Info Copied ptsbao.yml -2023-03-13 16:21:21.3419 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml -2023-03-13 16:21:21.3419 Info Copied pttime.yml -2023-03-13 16:21:21.3427 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml -2023-03-13 16:21:21.3427 Info Copied punkshorror.yml -2023-03-13 16:21:21.3427 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml -2023-03-13 16:21:21.3437 Info Copied puntotorrent.yml -2023-03-13 16:21:21.3437 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml -2023-03-13 16:21:21.3437 Info Copied pussytorrents.yml -2023-03-13 16:21:21.3437 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml -2023-03-13 16:21:21.3448 Info Copied putao.yml -2023-03-13 16:21:21.3448 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml -2023-03-13 16:21:21.3448 Info Copied puurhollands.yml -2023-03-13 16:21:21.3448 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml -2023-03-13 16:21:21.3459 Info Copied pwtorrents.yml -2023-03-13 16:21:21.3459 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml -2023-03-13 16:21:21.3459 Info Copied r3vwtf.yml -2023-03-13 16:21:21.3467 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml -2023-03-13 16:21:21.3467 Info Copied racing4everyone-api.yml -2023-03-13 16:21:21.3467 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml -2023-03-13 16:21:21.3477 Info Copied racingforme.yml -2023-03-13 16:21:21.3477 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml -2023-03-13 16:21:21.3477 Info Copied rainbowtracker.yml -2023-03-13 16:21:21.3477 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml -2023-03-13 16:21:21.3488 Info Copied rapidzona.yml -2023-03-13 16:21:21.3488 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml -2023-03-13 16:21:21.3488 Info Copied redbits-api.yml -2023-03-13 16:21:21.3488 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml -2023-03-13 16:21:21.3499 Info Copied redstartorrent.yml -2023-03-13 16:21:21.3499 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml -2023-03-13 16:21:21.3499 Info Copied reelflix-api.yml -2023-03-13 16:21:21.3507 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml -2023-03-13 16:21:21.3507 Info Copied resurrectthenet.yml -2023-03-13 16:21:21.3507 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml -2023-03-13 16:21:21.3517 Info Copied rgfootball.yml -2023-03-13 16:21:21.3517 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml -2023-03-13 16:21:21.3517 Info Copied rintor.yml -2023-03-13 16:21:21.3517 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml -2023-03-13 16:21:21.3528 Info Copied rintornet.yml -2023-03-13 16:21:21.3528 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml -2023-03-13 16:21:21.3528 Info Copied riperam.yml -2023-03-13 16:21:21.3536 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml -2023-03-13 16:21:21.3536 Info Copied rockbox.yml -2023-03-13 16:21:21.3536 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml -2023-03-13 16:21:21.3548 Info Copied romanianmetaltorrents.yml -2023-03-13 16:21:21.3548 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml -2023-03-13 16:21:21.3548 Info Copied rptorrents.yml -2023-03-13 16:21:21.3548 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml -2023-03-13 16:21:21.3559 Info Copied rudub.yml -2023-03-13 16:21:21.3559 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml -2023-03-13 16:21:21.3559 Info Copied rus-media.yml -2023-03-13 16:21:21.3566 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml -2023-03-13 16:21:21.3566 Info Copied rustorka.yml -2023-03-13 16:21:21.3566 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml -2023-03-13 16:21:21.3577 Info Copied rutor.yml -2023-03-13 16:21:21.3577 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml -2023-03-13 16:21:21.3577 Info Copied rutracker-ru.yml -2023-03-13 16:21:21.3577 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml -2023-03-13 16:21:21.3589 Info Copied satclubbing.yml -2023-03-13 16:21:21.3589 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml -2023-03-13 16:21:21.3589 Info Copied scenerush.yml -2023-03-13 16:21:21.3597 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml -2023-03-13 16:21:21.3597 Info Copied sdbits.yml -2023-03-13 16:21:21.3597 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml -2023-03-13 16:21:21.3597 Info Copied seedfile.yml -2023-03-13 16:21:21.3608 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml -2023-03-13 16:21:21.3608 Info Copied seedoff.yml -2023-03-13 16:21:21.3608 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml -2023-03-13 16:21:21.3618 Info Copied selezen.yml -2023-03-13 16:21:21.3618 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml -2023-03-13 16:21:21.3618 Info Copied sexypics.yml -2023-03-13 16:21:21.3618 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml -2023-03-13 16:21:21.3629 Info Copied shanaproject.yml -2023-03-13 16:21:21.3629 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml -2023-03-13 16:21:21.3629 Info Copied shareisland-api.yml -2023-03-13 16:21:21.3637 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml -2023-03-13 16:21:21.3637 Info Copied sharewood.yml -2023-03-13 16:21:21.3637 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml -2023-03-13 16:21:21.3647 Info Copied sharkpt.yml -2023-03-13 16:21:21.3647 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml -2023-03-13 16:21:21.3647 Info Copied showrss.yml -2023-03-13 16:21:21.3647 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml -2023-03-13 16:21:21.3658 Info Copied siambit.yml -2023-03-13 16:21:21.3658 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml -2023-03-13 16:21:21.3658 Info Copied skipthecommercials-api.yml -2023-03-13 16:21:21.3658 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml -2023-03-13 16:21:21.3670 Info Copied skipthetrailers.yml -2023-03-13 16:21:21.3670 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml -2023-03-13 16:21:21.3670 Info Copied sktorrent-org.yml -2023-03-13 16:21:21.3678 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml -2023-03-13 16:21:21.3678 Info Copied sktorrent.yml -2023-03-13 16:21:21.3678 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml -2023-03-13 16:21:21.3688 Info Copied slosoul.yml -2023-03-13 16:21:21.3688 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml -2023-03-13 16:21:21.3688 Info Copied snowpt.yml -2023-03-13 16:21:21.3688 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml -2023-03-13 16:21:21.3699 Info Copied solidtorrents.yml -2023-03-13 16:21:21.3699 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml -2023-03-13 16:21:21.3699 Info Copied sosulki.yml -2023-03-13 16:21:21.3699 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml -2023-03-13 16:21:21.3710 Info Copied soulvoice.yml -2023-03-13 16:21:21.3710 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml -2023-03-13 16:21:21.3710 Info Copied speedmasterhd.yml -2023-03-13 16:21:21.3718 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml -2023-03-13 16:21:21.3718 Info Copied speedtorrentreloaded.yml -2023-03-13 16:21:21.3718 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml -2023-03-13 16:21:21.3727 Info Copied spidertk.yml -2023-03-13 16:21:21.3727 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml -2023-03-13 16:21:21.3727 Info Copied spiritofrevolution.yml -2023-03-13 16:21:21.3727 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml -2023-03-13 16:21:21.3739 Info Copied sporthd.yml -2023-03-13 16:21:21.3739 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml -2023-03-13 16:21:21.3739 Info Copied sportscult.yml -2023-03-13 16:21:21.3739 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml -2023-03-13 16:21:21.3750 Info Copied springsunday.yml -2023-03-13 16:21:21.3750 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml -2023-03-13 16:21:21.3750 Info Copied sugoimusic.yml -2023-03-13 16:21:21.3758 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml -2023-03-13 16:21:21.3758 Info Copied sukebeinyaasi.yml -2023-03-13 16:21:21.3758 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml -2023-03-13 16:21:21.3767 Info Copied superbits.yml -2023-03-13 16:21:21.3767 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml -2023-03-13 16:21:21.3767 Info Copied swarmazon-api.yml -2023-03-13 16:21:21.3767 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml -2023-03-13 16:21:21.3779 Info Copied tapochek.yml -2023-03-13 16:21:21.3779 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml -2023-03-13 16:21:21.3779 Info Copied tasmanit.yml -2023-03-13 16:21:21.3787 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml -2023-03-13 16:21:21.3787 Info Copied teamctgame.yml -2023-03-13 16:21:21.3787 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml -2023-03-13 16:21:21.3797 Info Copied teamhd.yml -2023-03-13 16:21:21.3797 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml -2023-03-13 16:21:21.3797 Info Copied teamos.yml -2023-03-13 16:21:21.3797 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml -2023-03-13 16:21:21.3808 Info Copied tekno3d.yml -2023-03-13 16:21:21.3808 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml -2023-03-13 16:21:21.3808 Info Copied tellytorrent-api.yml -2023-03-13 16:21:21.3808 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml -2023-03-13 16:21:21.3820 Info Copied teracod.yml -2023-03-13 16:21:21.3820 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml -2023-03-13 16:21:21.3820 Info Copied the-crazy-ones.yml -2023-03-13 16:21:21.3828 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml -2023-03-13 16:21:21.3828 Info Copied thedarkcommunity-api.yml -2023-03-13 16:21:21.3828 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml -2023-03-13 16:21:21.3838 Info Copied theempire.yml -2023-03-13 16:21:21.3838 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml -2023-03-13 16:21:21.3838 Info Copied thefallingangels.yml -2023-03-13 16:21:21.3838 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml -2023-03-13 16:21:21.3849 Info Copied thegeeks.yml -2023-03-13 16:21:21.3849 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml -2023-03-13 16:21:21.3849 Info Copied theleachzone.yml -2023-03-13 16:21:21.3857 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml -2023-03-13 16:21:21.3857 Info Copied themixingbowl.yml -2023-03-13 16:21:21.3857 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml -2023-03-13 16:21:21.3867 Info Copied thenewfun.yml -2023-03-13 16:21:21.3867 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml -2023-03-13 16:21:21.3867 Info Copied theoccult.yml -2023-03-13 16:21:21.3867 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml -2023-03-13 16:21:21.3878 Info Copied theoldschool-api.yml -2023-03-13 16:21:21.3878 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml -2023-03-13 16:21:21.3878 Info Copied thepiratebay.yml -2023-03-13 16:21:21.3878 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml -2023-03-13 16:21:21.3890 Info Copied theplace.yml -2023-03-13 16:21:21.3890 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml -2023-03-13 16:21:21.3890 Info Copied thesceneplace.yml -2023-03-13 16:21:21.3897 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml -2023-03-13 16:21:21.3897 Info Copied theshinning-api.yml -2023-03-13 16:21:21.3897 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml -2023-03-13 16:21:21.3907 Info Copied theshow.yml -2023-03-13 16:21:21.3907 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml -2023-03-13 16:21:21.3907 Info Copied thevault.yml -2023-03-13 16:21:21.3907 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml -2023-03-13 16:21:21.3918 Info Copied tjupt.yml -2023-03-13 16:21:21.3918 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml -2023-03-13 16:21:21.3918 Info Copied tlfbits.yml -2023-03-13 16:21:21.3918 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml -2023-03-13 16:21:21.3930 Info Copied tmghub.yml -2023-03-13 16:21:21.3930 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml -2023-03-13 16:21:21.3930 Info Copied tokyotosho.yml -2023-03-13 16:21:21.3938 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml -2023-03-13 16:21:21.3938 Info Copied torlock.yml -2023-03-13 16:21:21.3938 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml -2023-03-13 16:21:21.3948 Info Copied tornado.yml -2023-03-13 16:21:21.3948 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml -2023-03-13 16:21:21.3948 Info Copied torrent-explosiv.yml -2023-03-13 16:21:21.3948 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml -2023-03-13 16:21:21.3959 Info Copied torrent-pirat.yml -2023-03-13 16:21:21.3959 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml -2023-03-13 16:21:21.3959 Info Copied torrent-turk.yml -2023-03-13 16:21:21.3967 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml -2023-03-13 16:21:21.3967 Info Copied torrent9.yml -2023-03-13 16:21:21.3967 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml -2023-03-13 16:21:21.3977 Info Copied torrent911.yml -2023-03-13 16:21:21.3977 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml -2023-03-13 16:21:21.3977 Info Copied torrent9clone.yml -2023-03-13 16:21:21.3977 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml -2023-03-13 16:21:21.3989 Info Copied torrentbd.yml -2023-03-13 16:21:21.3989 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml -2023-03-13 16:21:21.3989 Info Copied torrentby.yml -2023-03-13 16:21:21.3989 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml -2023-03-13 16:21:21.4000 Info Copied torrentccf.yml -2023-03-13 16:21:21.4000 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml -2023-03-13 16:21:21.4000 Info Copied torrentcore.yml -2023-03-13 16:21:21.4007 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml -2023-03-13 16:21:21.4007 Info Copied torrentdownload.yml -2023-03-13 16:21:21.4007 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml -2023-03-13 16:21:21.4017 Info Copied torrentdownloads.yml -2023-03-13 16:21:21.4017 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml -2023-03-13 16:21:21.4017 Info Copied torrentfunk.yml -2023-03-13 16:21:21.4017 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml -2023-03-13 16:21:21.4029 Info Copied torrentgalaxy.yml -2023-03-13 16:21:21.4029 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml -2023-03-13 16:21:21.4029 Info Copied torrenthr.yml -2023-03-13 16:21:21.4029 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml -2023-03-13 16:21:21.4040 Info Copied torrenting.yml -2023-03-13 16:21:21.4040 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml -2023-03-13 16:21:21.4040 Info Copied torrentkitty.yml -2023-03-13 16:21:21.4048 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml -2023-03-13 16:21:21.4048 Info Copied torrentland.yml -2023-03-13 16:21:21.4048 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml -2023-03-13 16:21:21.4058 Info Copied torrentleech-pl.yml -2023-03-13 16:21:21.4058 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml -2023-03-13 16:21:21.4058 Info Copied torrentleech.yml -2023-03-13 16:21:21.4058 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml -2023-03-13 16:21:21.4069 Info Copied torrentlt.yml -2023-03-13 16:21:21.4069 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml -2023-03-13 16:21:21.4069 Info Copied torrentmasters.yml -2023-03-13 16:21:21.4077 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml -2023-03-13 16:21:21.4077 Info Copied torrentoyunindir.yml -2023-03-13 16:21:21.4077 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml -2023-03-13 16:21:21.4086 Info Copied torrentproject2.yml -2023-03-13 16:21:21.4086 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml -2023-03-13 16:21:21.4086 Info Copied torrentqq.yml -2023-03-13 16:21:21.4086 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml -2023-03-13 16:21:21.4098 Info Copied torrentsectorcrew.yml -2023-03-13 16:21:21.4098 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml -2023-03-13 16:21:21.4098 Info Copied torrentseeds-api.yml -2023-03-13 16:21:21.4098 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml -2023-03-13 16:21:21.4110 Info Copied torrentsir.yml -2023-03-13 16:21:21.4110 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml -2023-03-13 16:21:21.4110 Info Copied torrentslocal.yml -2023-03-13 16:21:21.4117 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml -2023-03-13 16:21:21.4117 Info Copied torrentv.yml -2023-03-13 16:21:21.4117 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml -2023-03-13 16:21:21.4127 Info Copied torrentview.yml -2023-03-13 16:21:21.4127 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml -2023-03-13 16:21:21.4127 Info Copied torrentwhiz.yml -2023-03-13 16:21:21.4127 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml -2023-03-13 16:21:21.4138 Info Copied torrentz2eu.yml -2023-03-13 16:21:21.4138 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml -2023-03-13 16:21:21.4138 Info Copied torrentz2nz.yml -2023-03-13 16:21:21.4138 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml -2023-03-13 16:21:21.4149 Info Copied totallykids.yml -2023-03-13 16:21:21.4149 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml -2023-03-13 16:21:21.4149 Info Copied totheglory.yml -2023-03-13 16:21:21.4157 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml -2023-03-13 16:21:21.4157 Info Copied totheglorycookie.yml -2023-03-13 16:21:21.4157 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml -2023-03-13 16:21:21.4157 Info Copied traht.yml -2023-03-13 16:21:21.4168 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml -2023-03-13 16:21:21.4168 Info Copied trancetraffic.yml -2023-03-13 16:21:21.4168 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml -2023-03-13 16:21:21.4177 Info Copied trezzor.yml -2023-03-13 16:21:21.4177 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml -2023-03-13 16:21:21.4177 Info Copied tribalmixes.yml -2023-03-13 16:21:21.4177 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml -2023-03-13 16:21:21.4189 Info Copied trupornolabs.yml -2023-03-13 16:21:21.4189 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml -2023-03-13 16:21:21.4189 Info Copied turkseed.yml -2023-03-13 16:21:21.4189 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml -2023-03-13 16:21:21.4200 Info Copied turktorrent.yml -2023-03-13 16:21:21.4200 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml -2023-03-13 16:21:21.4200 Info Copied tvchaosuk.yml -2023-03-13 16:21:21.4207 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml -2023-03-13 16:21:21.4207 Info Copied tvroad.yml -2023-03-13 16:21:21.4207 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml -2023-03-13 16:21:21.4217 Info Copied twilight.yml -2023-03-13 16:21:21.4217 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml -2023-03-13 16:21:21.4217 Info Copied u2.yml -2023-03-13 16:21:21.4217 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml -2023-03-13 16:21:21.4229 Info Copied uhdbits.yml -2023-03-13 16:21:21.4229 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml -2023-03-13 16:21:21.4229 Info Copied uniondht.yml -2023-03-13 16:21:21.4237 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml -2023-03-13 16:21:21.4237 Info Copied unionfansub.yml -2023-03-13 16:21:21.4237 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml -2023-03-13 16:21:21.4246 Info Copied uniongang.yml -2023-03-13 16:21:21.4246 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml -2023-03-13 16:21:21.4246 Info Copied unleashthecartoons.yml -2023-03-13 16:21:21.4246 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml -2023-03-13 16:21:21.4258 Info Copied unlimitz.yml -2023-03-13 16:21:21.4258 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml -2023-03-13 16:21:21.4258 Info Copied vsthouse.yml -2023-03-13 16:21:21.4258 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml -2023-03-13 16:21:21.4270 Info Copied vsttorrents.yml -2023-03-13 16:21:21.4270 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml -2023-03-13 16:21:21.4270 Info Copied vtorrent.yml -2023-03-13 16:21:21.4277 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml -2023-03-13 16:21:21.4277 Info Copied whiteangel.yml -2023-03-13 16:21:21.4277 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml -2023-03-13 16:21:21.4287 Info Copied wihd.yml -2023-03-13 16:21:21.4287 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml -2023-03-13 16:21:21.4287 Info Copied world-of-tomorrow.yml -2023-03-13 16:21:21.4287 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml -2023-03-13 16:21:21.4299 Info Copied x-ite.me.yml -2023-03-13 16:21:21.4299 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml -2023-03-13 16:21:21.4299 Info Copied xbytes2.yml -2023-03-13 16:21:21.4299 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml -2023-03-13 16:21:21.4310 Info Copied xthor-api.yml -2023-03-13 16:21:21.4310 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml -2023-03-13 16:21:21.4317 Info Copied xtorrenty.yml -2023-03-13 16:21:21.4317 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml -2023-03-13 16:21:21.4317 Info Copied xtremebytes.yml -2023-03-13 16:21:21.4317 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml -2023-03-13 16:21:21.4328 Info Copied xwtclassics.yml -2023-03-13 16:21:21.4328 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml -2023-03-13 16:21:21.4328 Info Copied xwtorrents.yml -2023-03-13 16:21:21.4328 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml -2023-03-13 16:21:21.4340 Info Copied xxxadulttorrent.yml -2023-03-13 16:21:21.4340 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml -2023-03-13 16:21:21.4340 Info Copied xxxtor.yml -2023-03-13 16:21:21.4347 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml -2023-03-13 16:21:21.4347 Info Copied xxxtorrents.yml -2023-03-13 16:21:21.4347 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml -2023-03-13 16:21:21.4357 Info Copied ydypt.yml -2023-03-13 16:21:21.4357 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml -2023-03-13 16:21:21.4357 Info Copied yggcookie.yml -2023-03-13 16:21:21.4357 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml -2023-03-13 16:21:21.4369 Info Copied yggtorrent.yml -2023-03-13 16:21:21.4369 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml -2023-03-13 16:21:21.4369 Info Copied yourbittorrent.yml -2023-03-13 16:21:21.4369 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml -2023-03-13 16:21:21.4380 Info Copied yts.yml -2023-03-13 16:21:21.4380 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml -2023-03-13 16:21:21.4386 Info Copied zamundanet.yml -2023-03-13 16:21:21.4386 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml -2023-03-13 16:21:21.4386 Info Copied zelkaorg.yml -2023-03-13 16:21:21.4386 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml -2023-03-13 16:21:21.4398 Info Copied zetorrents.yml -2023-03-13 16:21:21.4398 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml -2023-03-13 16:21:21.4398 Info Copied zmpt.yml -2023-03-13 16:21:21.4398 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml -2023-03-13 16:21:21.4409 Info Copied zomb.yml -2023-03-13 16:21:21.4409 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml -2023-03-13 16:21:21.4409 Info Copied ztracker.yml -2023-03-13 16:21:21.4409 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll -2023-03-13 16:21:21.4420 Info Copied FlareSolverrSharp.dll -2023-03-13 16:21:21.4420 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll -2023-03-13 16:21:21.4430 Info Copied ICSharpCode.SharpZipLib.dll -2023-03-13 16:21:21.4430 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh -2023-03-13 16:21:21.4430 Info Copied install_service_systemd.sh -2023-03-13 16:21:21.4437 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/jackett to destination: /app/Jackett/jackett -2023-03-13 16:21:21.4437 Info Copied jackett -2023-03-13 16:21:21.4437 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh -2023-03-13 16:21:21.4449 Info Copied jackett_launcher.sh -2023-03-13 16:21:21.4449 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll -2023-03-13 16:21:21.4473 Info Copied Jackett.Common.dll -2023-03-13 16:21:21.4473 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb -2023-03-13 16:21:21.4491 Info Copied Jackett.Common.pdb -2023-03-13 16:21:21.4491 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json -2023-03-13 16:21:21.4499 Info Copied jackett.deps.json -2023-03-13 16:21:21.4499 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll -2023-03-13 16:21:21.4512 Info Copied jackett.dll -2023-03-13 16:21:21.4512 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb -2023-03-13 16:21:21.4518 Info Copied jackett.pdb -2023-03-13 16:21:21.4518 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json -2023-03-13 16:21:21.4518 Info Copied jackett.runtimeconfig.json -2023-03-13 16:21:21.4518 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater -2023-03-13 16:21:21.4531 Info Copied JackettUpdater -2023-03-13 16:21:21.4531 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json -2023-03-13 16:21:21.4538 Info Copied JackettUpdater.deps.json -2023-03-13 16:21:21.4538 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll -2023-03-13 16:21:21.4549 Info Copied JackettUpdater.dll -2023-03-13 16:21:21.4549 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb -2023-03-13 16:21:21.4549 Info Copied JackettUpdater.pdb -2023-03-13 16:21:21.4557 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json -2023-03-13 16:21:21.4557 Info Copied JackettUpdater.runtimeconfig.json -2023-03-13 16:21:21.4557 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so -2023-03-13 16:21:21.4615 Info Copied libclrjit.so -2023-03-13 16:21:21.4617 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so -2023-03-13 16:21:21.4734 Info Copied libcoreclr.so -2023-03-13 16:21:21.4738 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so -2023-03-13 16:21:21.4757 Info Copied libcoreclrtraceptprovider.so -2023-03-13 16:21:21.4757 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so -2023-03-13 16:21:21.4775 Info Copied libdbgshim.so -2023-03-13 16:21:21.4776 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so -2023-03-13 16:21:21.4787 Info Copied libhostfxr.so -2023-03-13 16:21:21.4787 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so -2023-03-13 16:21:21.4797 Info Copied libhostpolicy.so -2023-03-13 16:21:21.4797 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so -2023-03-13 16:21:21.4797 Info Copied libMono.Unix.so -2023-03-13 16:21:21.4807 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so -2023-03-13 16:21:21.4864 Info Copied libmscordaccore.so -2023-03-13 16:21:21.4867 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so -2023-03-13 16:21:21.4900 Info Copied libmscordbi.so -2023-03-13 16:21:21.4900 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so -2023-03-13 16:21:21.4908 Info Copied libSystem.Globalization.Native.so -2023-03-13 16:21:21.4908 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so -2023-03-13 16:21:21.4929 Info Copied libSystem.IO.Compression.Native.so -2023-03-13 16:21:21.4929 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so -2023-03-13 16:21:21.4929 Info Copied libSystem.Native.so -2023-03-13 16:21:21.4938 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so -2023-03-13 16:21:21.4938 Info Copied libSystem.Net.Security.Native.so -2023-03-13 16:21:21.4938 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so -2023-03-13 16:21:21.4951 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so -2023-03-13 16:21:21.4951 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/LICENSE to destination: /app/Jackett/LICENSE -2023-03-13 16:21:21.4958 Info Copied LICENSE -2023-03-13 16:21:21.4958 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll -2023-03-13 16:21:21.4958 Info Copied Microsoft.AspNetCore.Antiforgery.dll -2023-03-13 16:21:21.4967 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-03-13 16:21:21.4967 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-03-13 16:21:21.4967 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll -2023-03-13 16:21:21.4979 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll -2023-03-13 16:21:21.4979 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll -2023-03-13 16:21:21.4987 Info Copied Microsoft.AspNetCore.Authentication.Core.dll -2023-03-13 16:21:21.4987 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll -2023-03-13 16:21:21.4987 Info Copied Microsoft.AspNetCore.Authentication.dll -2023-03-13 16:21:21.4997 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll -2023-03-13 16:21:21.4997 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll -2023-03-13 16:21:21.4997 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll -2023-03-13 16:21:21.5010 Info Copied Microsoft.AspNetCore.Authorization.dll -2023-03-13 16:21:21.5010 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll -2023-03-13 16:21:21.5017 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll -2023-03-13 16:21:21.5017 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll -2023-03-13 16:21:21.5017 Info Copied Microsoft.AspNetCore.Components.Authorization.dll -2023-03-13 16:21:21.5017 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll -2023-03-13 16:21:21.5038 Info Copied Microsoft.AspNetCore.Components.dll -2023-03-13 16:21:21.5038 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll -2023-03-13 16:21:21.5038 Info Copied Microsoft.AspNetCore.Components.Forms.dll -2023-03-13 16:21:21.5047 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll -2023-03-13 16:21:21.5062 Info Copied Microsoft.AspNetCore.Components.Server.dll -2023-03-13 16:21:21.5062 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll -2023-03-13 16:21:21.5074 Info Copied Microsoft.AspNetCore.Components.Web.dll -2023-03-13 16:21:21.5074 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll -2023-03-13 16:21:21.5081 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll -2023-03-13 16:21:21.5081 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll -2023-03-13 16:21:21.5088 Info Copied Microsoft.AspNetCore.CookiePolicy.dll -2023-03-13 16:21:21.5088 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll -2023-03-13 16:21:21.5088 Info Copied Microsoft.AspNetCore.Cors.dll -2023-03-13 16:21:21.5097 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll -2023-03-13 16:21:21.5097 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll -2023-03-13 16:21:21.5097 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-03-13 16:21:21.5109 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-03-13 16:21:21.5109 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-03-13 16:21:21.5109 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-03-13 16:21:21.5117 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll -2023-03-13 16:21:21.5127 Info Copied Microsoft.AspNetCore.DataProtection.dll -2023-03-13 16:21:21.5127 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-03-13 16:21:21.5127 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-03-13 16:21:21.5127 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-03-13 16:21:21.5140 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-03-13 16:21:21.5140 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll -2023-03-13 16:21:21.5153 Info Copied Microsoft.AspNetCore.Diagnostics.dll -2023-03-13 16:21:21.5153 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-03-13 16:21:21.5160 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-03-13 16:21:21.5160 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll -2023-03-13 16:21:21.5168 Info Copied Microsoft.AspNetCore.dll -2023-03-13 16:21:21.5168 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll -2023-03-13 16:21:21.5168 Info Copied Microsoft.AspNetCore.HostFiltering.dll -2023-03-13 16:21:21.5168 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-03-13 16:21:21.5180 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-03-13 16:21:21.5180 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll -2023-03-13 16:21:21.5192 Info Copied Microsoft.AspNetCore.Hosting.dll -2023-03-13 16:21:21.5192 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-03-13 16:21:21.5198 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-03-13 16:21:21.5198 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll -2023-03-13 16:21:21.5198 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll -2023-03-13 16:21:21.5207 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll -2023-03-13 16:21:21.5207 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll -2023-03-13 16:21:21.5207 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll -2023-03-13 16:21:21.5221 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll -2023-03-13 16:21:21.5221 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll -2023-03-13 16:21:21.5232 Info Copied Microsoft.AspNetCore.Http.Connections.dll -2023-03-13 16:21:21.5232 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll -2023-03-13 16:21:21.5242 Info Copied Microsoft.AspNetCore.Http.dll -2023-03-13 16:21:21.5242 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll -2023-03-13 16:21:21.5253 Info Copied Microsoft.AspNetCore.Http.Extensions.dll -2023-03-13 16:21:21.5253 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll -2023-03-13 16:21:21.5260 Info Copied Microsoft.AspNetCore.Http.Features.dll -2023-03-13 16:21:21.5260 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll -2023-03-13 16:21:21.5269 Info Copied Microsoft.AspNetCore.Http.Results.dll -2023-03-13 16:21:21.5269 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll -2023-03-13 16:21:21.5277 Info Copied Microsoft.AspNetCore.HttpLogging.dll -2023-03-13 16:21:21.5277 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll -2023-03-13 16:21:21.5277 Info Copied Microsoft.AspNetCore.HttpOverrides.dll -2023-03-13 16:21:21.5277 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll -2023-03-13 16:21:21.5291 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll -2023-03-13 16:21:21.5291 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll -2023-03-13 16:21:21.5300 Info Copied Microsoft.AspNetCore.Identity.dll -2023-03-13 16:21:21.5300 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll -2023-03-13 16:21:21.5306 Info Copied Microsoft.AspNetCore.JsonPatch.dll -2023-03-13 16:21:21.5306 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll -2023-03-13 16:21:21.5306 Info Copied Microsoft.AspNetCore.Localization.dll -2023-03-13 16:21:21.5306 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll -2023-03-13 16:21:21.5319 Info Copied Microsoft.AspNetCore.Localization.Routing.dll -2023-03-13 16:21:21.5319 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll -2023-03-13 16:21:21.5319 Info Copied Microsoft.AspNetCore.Metadata.dll -2023-03-13 16:21:21.5328 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-03-13 16:21:21.5328 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-03-13 16:21:21.5337 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-03-13 16:21:21.5337 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-03-13 16:21:21.5337 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll -2023-03-13 16:21:21.5383 Info Copied Microsoft.AspNetCore.Mvc.Core.dll -2023-03-13 16:21:21.5383 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll -2023-03-13 16:21:21.5390 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll -2023-03-13 16:21:21.5390 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-03-13 16:21:21.5398 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-03-13 16:21:21.5398 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll -2023-03-13 16:21:21.5398 Info Copied Microsoft.AspNetCore.Mvc.dll -2023-03-13 16:21:21.5398 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-03-13 16:21:21.5410 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-03-13 16:21:21.5410 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-03-13 16:21:21.5426 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-03-13 16:21:21.5427 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll -2023-03-13 16:21:21.5427 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll -2023-03-13 16:21:21.5427 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-03-13 16:21:21.5439 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-03-13 16:21:21.5439 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll -2023-03-13 16:21:21.5448 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll -2023-03-13 16:21:21.5448 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-03-13 16:21:21.5461 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-03-13 16:21:21.5461 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-03-13 16:21:21.5472 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-03-13 16:21:21.5472 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-03-13 16:21:21.5491 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-03-13 16:21:21.5491 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll -2023-03-13 16:21:21.5498 Info Copied Microsoft.AspNetCore.Razor.dll -2023-03-13 16:21:21.5498 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll -2023-03-13 16:21:21.5498 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll -2023-03-13 16:21:21.5507 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-03-13 16:21:21.5507 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-03-13 16:21:21.5507 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll -2023-03-13 16:21:21.5520 Info Copied Microsoft.AspNetCore.ResponseCaching.dll -2023-03-13 16:21:21.5520 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll -2023-03-13 16:21:21.5527 Info Copied Microsoft.AspNetCore.ResponseCompression.dll -2023-03-13 16:21:21.5527 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll -2023-03-13 16:21:21.5537 Info Copied Microsoft.AspNetCore.Rewrite.dll -2023-03-13 16:21:21.5537 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll -2023-03-13 16:21:21.5537 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll -2023-03-13 16:21:21.5537 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll -2023-03-13 16:21:21.5561 Info Copied Microsoft.AspNetCore.Routing.dll -2023-03-13 16:21:21.5561 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll -2023-03-13 16:21:21.5575 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll -2023-03-13 16:21:21.5577 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll -2023-03-13 16:21:21.5590 Info Copied Microsoft.AspNetCore.Server.IIS.dll -2023-03-13 16:21:21.5590 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll -2023-03-13 16:21:21.5596 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll -2023-03-13 16:21:21.5596 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-03-13 16:21:21.5638 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-03-13 16:21:21.5638 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll -2023-03-13 16:21:21.5638 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll -2023-03-13 16:21:21.5647 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-03-13 16:21:21.5647 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-03-13 16:21:21.5657 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-03-13 16:21:21.5657 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-03-13 16:21:21.5657 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll -2023-03-13 16:21:21.5671 Info Copied Microsoft.AspNetCore.Session.dll -2023-03-13 16:21:21.5671 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll -2023-03-13 16:21:21.5678 Info Copied Microsoft.AspNetCore.SignalR.Common.dll -2023-03-13 16:21:21.5678 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll -2023-03-13 16:21:21.5690 Info Copied Microsoft.AspNetCore.SignalR.Core.dll -2023-03-13 16:21:21.5690 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll -2023-03-13 16:21:21.5690 Info Copied Microsoft.AspNetCore.SignalR.dll -2023-03-13 16:21:21.5697 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-03-13 16:21:21.5697 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-03-13 16:21:21.5697 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll -2023-03-13 16:21:21.5711 Info Copied Microsoft.AspNetCore.StaticFiles.dll -2023-03-13 16:21:21.5711 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll -2023-03-13 16:21:21.5718 Info Copied Microsoft.AspNetCore.WebSockets.dll -2023-03-13 16:21:21.5718 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll -2023-03-13 16:21:21.5727 Info Copied Microsoft.AspNetCore.WebUtilities.dll -2023-03-13 16:21:21.5727 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll -2023-03-13 16:21:21.5747 Info Copied Microsoft.CSharp.dll -2023-03-13 16:21:21.5747 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll -2023-03-13 16:21:21.5747 Info Copied Microsoft.Extensions.Caching.Abstractions.dll -2023-03-13 16:21:21.5747 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll -2023-03-13 16:21:21.5761 Info Copied Microsoft.Extensions.Caching.Memory.dll -2023-03-13 16:21:21.5761 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll -2023-03-13 16:21:21.5767 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll -2023-03-13 16:21:21.5767 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll -2023-03-13 16:21:21.5767 Info Copied Microsoft.Extensions.Configuration.Binder.dll -2023-03-13 16:21:21.5767 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll -2023-03-13 16:21:21.5779 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll -2023-03-13 16:21:21.5779 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll -2023-03-13 16:21:21.5787 Info Copied Microsoft.Extensions.Configuration.dll -2023-03-13 16:21:21.5787 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-03-13 16:21:21.5787 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-03-13 16:21:21.5787 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll -2023-03-13 16:21:21.5798 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll -2023-03-13 16:21:21.5798 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll -2023-03-13 16:21:21.5798 Info Copied Microsoft.Extensions.Configuration.Ini.dll -2023-03-13 16:21:21.5798 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll -2023-03-13 16:21:21.5810 Info Copied Microsoft.Extensions.Configuration.Json.dll -2023-03-13 16:21:21.5810 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-03-13 16:21:21.5810 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-03-13 16:21:21.5817 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll -2023-03-13 16:21:21.5817 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll -2023-03-13 16:21:21.5817 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll -2023-03-13 16:21:21.5828 Info Copied Microsoft.Extensions.Configuration.Xml.dll -2023-03-13 16:21:21.5828 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-03-13 16:21:21.6906 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-03-13 16:21:21.6909 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll -2023-03-13 16:21:21.6918 Info Copied Microsoft.Extensions.DependencyInjection.dll -2023-03-13 16:21:21.6918 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-03-13 16:21:21.6918 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-03-13 16:21:21.6918 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-03-13 16:21:21.6933 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-03-13 16:21:21.6933 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll -2023-03-13 16:21:21.6939 Info Copied Microsoft.Extensions.Features.dll -2023-03-13 16:21:21.6939 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll -2023-03-13 16:21:21.6939 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll -2023-03-13 16:21:21.6947 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll -2023-03-13 16:21:21.6947 Info Copied Microsoft.Extensions.FileProviders.Composite.dll -2023-03-13 16:21:21.6947 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll -2023-03-13 16:21:21.6959 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll -2023-03-13 16:21:21.6959 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll -2023-03-13 16:21:21.6967 Info Copied Microsoft.Extensions.FileProviders.Physical.dll -2023-03-13 16:21:21.6967 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll -2023-03-13 16:21:21.6967 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll -2023-03-13 16:21:21.6977 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll -2023-03-13 16:21:21.6977 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll -2023-03-13 16:21:21.6977 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll -2023-03-13 16:21:21.6991 Info Copied Microsoft.Extensions.Hosting.dll -2023-03-13 16:21:21.6991 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll -2023-03-13 16:21:21.6999 Info Copied Microsoft.Extensions.Http.dll -2023-03-13 16:21:21.6999 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll -2023-03-13 16:21:21.7012 Info Copied Microsoft.Extensions.Identity.Core.dll -2023-03-13 16:21:21.7012 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll -2023-03-13 16:21:21.7020 Info Copied Microsoft.Extensions.Identity.Stores.dll -2023-03-13 16:21:21.7020 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll -2023-03-13 16:21:21.7020 Info Copied Microsoft.Extensions.Localization.Abstractions.dll -2023-03-13 16:21:21.7027 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll -2023-03-13 16:21:21.7027 Info Copied Microsoft.Extensions.Localization.dll -2023-03-13 16:21:21.7027 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll -2023-03-13 16:21:21.7040 Info Copied Microsoft.Extensions.Logging.Abstractions.dll -2023-03-13 16:21:21.7040 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll -2023-03-13 16:21:21.7047 Info Copied Microsoft.Extensions.Logging.Configuration.dll -2023-03-13 16:21:21.7047 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll -2023-03-13 16:21:21.7047 Info Copied Microsoft.Extensions.Logging.Console.dll -2023-03-13 16:21:21.7047 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll -2023-03-13 16:21:21.7060 Info Copied Microsoft.Extensions.Logging.Debug.dll -2023-03-13 16:21:21.7060 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll -2023-03-13 16:21:21.7068 Info Copied Microsoft.Extensions.Logging.dll -2023-03-13 16:21:21.7068 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll -2023-03-13 16:21:21.7068 Info Copied Microsoft.Extensions.Logging.EventLog.dll -2023-03-13 16:21:21.7077 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll -2023-03-13 16:21:21.7077 Info Copied Microsoft.Extensions.Logging.EventSource.dll -2023-03-13 16:21:21.7077 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll -2023-03-13 16:21:21.7088 Info Copied Microsoft.Extensions.Logging.TraceSource.dll -2023-03-13 16:21:21.7088 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll -2023-03-13 16:21:21.7088 Info Copied Microsoft.Extensions.ObjectPool.dll -2023-03-13 16:21:21.7097 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-03-13 16:21:21.8331 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-03-13 16:21:21.8331 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll -2023-03-13 16:21:21.8342 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll -2023-03-13 16:21:21.8342 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll -2023-03-13 16:21:21.8351 Info Copied Microsoft.Extensions.Options.dll -2023-03-13 16:21:21.8351 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll -2023-03-13 16:21:21.8360 Info Copied Microsoft.Extensions.Primitives.dll -2023-03-13 16:21:21.8360 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll -2023-03-13 16:21:21.8367 Info Copied Microsoft.Extensions.WebEncoders.dll -2023-03-13 16:21:21.8367 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll -2023-03-13 16:21:21.8377 Info Copied Microsoft.JSInterop.dll -2023-03-13 16:21:21.8377 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll -2023-03-13 16:21:21.8387 Info Copied Microsoft.Net.Http.Headers.dll -2023-03-13 16:21:21.8387 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll -2023-03-13 16:21:21.8417 Info Copied Microsoft.VisualBasic.Core.dll -2023-03-13 16:21:21.8417 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll -2023-03-13 16:21:21.8417 Info Copied Microsoft.VisualBasic.dll -2023-03-13 16:21:21.8417 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll -2023-03-13 16:21:21.8430 Info Copied Microsoft.Win32.Primitives.dll -2023-03-13 16:21:21.8430 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll -2023-03-13 16:21:21.8438 Info Copied Microsoft.Win32.Registry.dll -2023-03-13 16:21:21.8438 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll -2023-03-13 16:21:21.8458 Info Copied MimeMapping.dll -2023-03-13 16:21:21.8458 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll -2023-03-13 16:21:21.8458 Info Copied Mono.Posix.dll -2023-03-13 16:21:21.8468 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll -2023-03-13 16:21:21.8468 Info Copied Mono.Unix.dll -2023-03-13 16:21:21.8478 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll -2023-03-13 16:21:21.8478 Info Copied mscorlib.dll -2023-03-13 16:21:21.8478 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll -2023-03-13 16:21:21.8492 Info Copied netstandard.dll -2023-03-13 16:21:21.8492 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll -2023-03-13 16:21:21.8501 Info Copied Newtonsoft.Json.Bson.dll -2023-03-13 16:21:21.8501 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll -2023-03-13 16:21:21.8518 Info Copied Newtonsoft.Json.dll -2023-03-13 16:21:21.8518 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll -2023-03-13 16:21:21.9147 Info Copied NLog.dll -2023-03-13 16:21:21.9147 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll -2023-03-13 16:21:21.9147 Info Copied NLog.Extensions.Logging.dll -2023-03-13 16:21:21.9158 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll -2023-03-13 16:21:21.9158 Info Copied NLog.Web.AspNetCore.dll -2023-03-13 16:21:21.9167 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll -2023-03-13 16:21:21.9167 Info Copied Org.Mentalis.dll -2023-03-13 16:21:21.9167 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll -2023-03-13 16:21:21.9182 Info Copied Polly.dll -2023-03-13 16:21:21.9182 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/README.md to destination: /app/Jackett/README.md -2023-03-13 16:21:21.9190 Info Copied README.md -2023-03-13 16:21:21.9190 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll -2023-03-13 16:21:21.9197 Info Copied SocksWebProxy.dll -2023-03-13 16:21:21.9197 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll -2023-03-13 16:21:21.9197 Info Copied System.AppContext.dll -2023-03-13 16:21:21.9197 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll -2023-03-13 16:21:21.9209 Info Copied System.Buffers.dll -2023-03-13 16:21:21.9209 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll -2023-03-13 16:21:21.9220 Info Copied System.Collections.Concurrent.dll -2023-03-13 16:21:21.9220 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll -2023-03-13 16:21:21.9231 Info Copied System.Collections.dll -2023-03-13 16:21:21.9231 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll -2023-03-13 16:21:21.9249 Info Copied System.Collections.Immutable.dll -2023-03-13 16:21:21.9249 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll -2023-03-13 16:21:21.9259 Info Copied System.Collections.NonGeneric.dll -2023-03-13 16:21:21.9259 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll -2023-03-13 16:21:21.9267 Info Copied System.Collections.Specialized.dll -2023-03-13 16:21:21.9267 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll -2023-03-13 16:21:21.9278 Info Copied System.ComponentModel.Annotations.dll -2023-03-13 16:21:21.9309 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll -2023-03-13 16:21:21.9309 Info Copied System.ComponentModel.DataAnnotations.dll -2023-03-13 16:21:21.9309 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll -2023-03-13 16:21:21.9321 Info Copied System.ComponentModel.dll -2023-03-13 16:21:21.9321 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll -2023-03-13 16:21:21.9327 Info Copied System.ComponentModel.EventBasedAsync.dll -2023-03-13 16:21:21.9327 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll -2023-03-13 16:21:21.9327 Info Copied System.ComponentModel.Primitives.dll -2023-03-13 16:21:21.9327 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll -2023-03-13 16:21:21.9870 Info Copied System.ComponentModel.TypeConverter.dll -2023-03-13 16:21:21.9870 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll -2023-03-13 16:21:21.9879 Info Copied System.Configuration.dll -2023-03-13 16:21:21.9879 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll -2023-03-13 16:21:21.9889 Info Copied System.Console.dll -2023-03-13 16:21:21.9889 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll -2023-03-13 16:21:21.9889 Info Copied System.Core.dll -2023-03-13 16:21:21.9897 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll -2023-03-13 16:21:21.9990 Info Copied System.Data.Common.dll -2023-03-13 16:21:21.9990 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll -2023-03-13 16:21:21.9998 Info Copied System.Data.DataSetExtensions.dll -2023-03-13 16:21:21.9998 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll -2023-03-13 16:21:21.9998 Info Copied System.Data.dll -2023-03-13 16:21:21.9998 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll -2023-03-13 16:21:22.0010 Info Copied System.Diagnostics.Contracts.dll -2023-03-13 16:21:22.0010 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll -2023-03-13 16:21:22.0010 Info Copied System.Diagnostics.Debug.dll -2023-03-13 16:21:22.0017 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll -2023-03-13 16:21:22.0029 Info Copied System.Diagnostics.DiagnosticSource.dll -2023-03-13 16:21:22.0029 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll -2023-03-13 16:21:22.0029 Info Copied System.Diagnostics.EventLog.dll -2023-03-13 16:21:22.0038 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll -2023-03-13 16:21:22.0038 Info Copied System.Diagnostics.FileVersionInfo.dll -2023-03-13 16:21:22.0038 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll -2023-03-13 16:21:22.0054 Info Copied System.Diagnostics.Process.dll -2023-03-13 16:21:22.0054 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll -2023-03-13 16:21:22.0061 Info Copied System.Diagnostics.StackTrace.dll -2023-03-13 16:21:22.0061 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll -2023-03-13 16:21:22.1097 Info Copied System.Diagnostics.TextWriterTraceListener.dll -2023-03-13 16:21:22.1097 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll -2023-03-13 16:21:22.1107 Info Copied System.Diagnostics.Tools.dll -2023-03-13 16:21:22.1107 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll -2023-03-13 16:21:22.1117 Info Copied System.Diagnostics.TraceSource.dll -2023-03-13 16:21:22.1117 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll -2023-03-13 16:21:22.1117 Info Copied System.Diagnostics.Tracing.dll -2023-03-13 16:21:22.1117 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.dll to destination: /app/Jackett/System.dll -2023-03-13 16:21:22.1129 Info Copied System.dll -2023-03-13 16:21:22.1129 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll -2023-03-13 16:21:22.1129 Info Copied System.Drawing.dll -2023-03-13 16:21:22.1137 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll -2023-03-13 16:21:22.1137 Info Copied System.Drawing.Primitives.dll -2023-03-13 16:21:22.1137 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll -2023-03-13 16:21:22.1150 Info Copied System.Dynamic.Runtime.dll -2023-03-13 16:21:22.1150 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll -2023-03-13 16:21:22.1161 Info Copied System.Formats.Asn1.dll -2023-03-13 16:21:22.1161 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll -2023-03-13 16:21:22.1167 Info Copied System.Globalization.Calendars.dll -2023-03-13 16:21:22.1167 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll -2023-03-13 16:21:22.1167 Info Copied System.Globalization.dll -2023-03-13 16:21:22.1167 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll -2023-03-13 16:21:22.1178 Info Copied System.Globalization.Extensions.dll -2023-03-13 16:21:22.1178 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll -2023-03-13 16:21:22.1178 Info Copied System.IO.Compression.Brotli.dll -2023-03-13 16:21:22.1187 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll -2023-03-13 16:21:22.1198 Info Copied System.IO.Compression.dll -2023-03-13 16:21:22.1198 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll -2023-03-13 16:21:22.1198 Info Copied System.IO.Compression.FileSystem.dll -2023-03-13 16:21:22.1198 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll -2023-03-13 16:21:22.1211 Info Copied System.IO.Compression.ZipFile.dll -2023-03-13 16:21:22.1211 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll -2023-03-13 16:21:22.1217 Info Copied System.IO.dll -2023-03-13 16:21:22.1217 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll -2023-03-13 16:21:22.1217 Info Copied System.IO.FileSystem.AccessControl.dll -2023-03-13 16:21:22.1217 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll -2023-03-13 16:21:22.1230 Info Copied System.IO.FileSystem.dll -2023-03-13 16:21:22.1230 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll -2023-03-13 16:21:22.1237 Info Copied System.IO.FileSystem.DriveInfo.dll -2023-03-13 16:21:22.1237 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll -2023-03-13 16:21:22.1237 Info Copied System.IO.FileSystem.Primitives.dll -2023-03-13 16:21:22.1237 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll -2023-03-13 16:21:22.1251 Info Copied System.IO.FileSystem.Watcher.dll -2023-03-13 16:21:22.1251 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll -2023-03-13 16:21:22.1259 Info Copied System.IO.IsolatedStorage.dll -2023-03-13 16:21:22.1259 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll -2023-03-13 16:21:22.1259 Info Copied System.IO.MemoryMappedFiles.dll -2023-03-13 16:21:22.1268 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll -2023-03-13 16:21:22.1268 Info Copied System.IO.Pipelines.dll -2023-03-13 16:21:22.1277 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll -2023-03-13 16:21:22.1277 Info Copied System.IO.Pipes.AccessControl.dll -2023-03-13 16:21:22.1277 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll -2023-03-13 16:21:22.1290 Info Copied System.IO.Pipes.dll -2023-03-13 16:21:22.1290 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll -2023-03-13 16:21:22.1290 Info Copied System.IO.UnmanagedMemoryStream.dll -2023-03-13 16:21:22.1297 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll -2023-03-13 16:21:22.1954 Info Copied System.Linq.dll -2023-03-13 16:21:22.1961 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll -2023-03-13 16:21:22.2122 Info Copied System.Linq.Expressions.dll -2023-03-13 16:21:22.2128 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll -2023-03-13 16:21:22.2321 Info Copied System.Linq.Parallel.dll -2023-03-13 16:21:22.2321 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll -2023-03-13 16:21:22.2366 Info Copied System.Linq.Queryable.dll -2023-03-13 16:21:22.2371 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll -2023-03-13 16:21:22.2393 Info Copied System.Memory.dll -2023-03-13 16:21:22.2397 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll -2023-03-13 16:21:22.2410 Info Copied System.Net.dll -2023-03-13 16:21:22.2410 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll -2023-03-13 16:21:22.2486 Info Copied System.Net.Http.dll -2023-03-13 16:21:22.2490 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll -2023-03-13 16:21:22.2508 Info Copied System.Net.Http.Json.dll -2023-03-13 16:21:22.2508 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll -2023-03-13 16:21:22.2733 Info Copied System.Net.HttpListener.dll -2023-03-13 16:21:22.2738 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll -2023-03-13 16:21:22.2770 Info Copied System.Net.Mail.dll -2023-03-13 16:21:22.2770 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll -2023-03-13 16:21:22.2791 Info Copied System.Net.NameResolution.dll -2023-03-13 16:21:22.2791 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll -2023-03-13 16:21:22.2816 Info Copied System.Net.NetworkInformation.dll -2023-03-13 16:21:22.2820 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll -2023-03-13 16:21:22.2838 Info Copied System.Net.Ping.dll -2023-03-13 16:21:22.2838 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll -2023-03-13 16:21:22.2862 Info Copied System.Net.Primitives.dll -2023-03-13 16:21:22.2867 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll -2023-03-13 16:21:22.2890 Info Copied System.Net.Quic.dll -2023-03-13 16:21:22.2890 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll -2023-03-13 16:21:22.2920 Info Copied System.Net.Requests.dll -2023-03-13 16:21:22.2920 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll -2023-03-13 16:21:22.3062 Info Copied System.Net.Security.dll -2023-03-13 16:21:22.3067 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll -2023-03-13 16:21:22.3082 Info Copied System.Net.ServicePoint.dll -2023-03-13 16:21:22.3082 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll -2023-03-13 16:21:22.3115 Info Copied System.Net.Sockets.dll -2023-03-13 16:21:22.3120 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll -2023-03-13 16:21:22.3140 Info Copied System.Net.WebClient.dll -2023-03-13 16:21:22.3140 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll -2023-03-13 16:21:22.3157 Info Copied System.Net.WebHeaderCollection.dll -2023-03-13 16:21:22.3157 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll -2023-03-13 16:21:22.3174 Info Copied System.Net.WebProxy.dll -2023-03-13 16:21:22.3179 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll -2023-03-13 16:21:22.3194 Info Copied System.Net.WebSockets.Client.dll -2023-03-13 16:21:22.3198 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll -2023-03-13 16:21:22.3218 Info Copied System.Net.WebSockets.dll -2023-03-13 16:21:22.3218 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll -2023-03-13 16:21:22.3234 Info Copied System.Numerics.dll -2023-03-13 16:21:22.3237 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll -2023-03-13 16:21:22.3250 Info Copied System.Numerics.Vectors.dll -2023-03-13 16:21:22.3250 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll -2023-03-13 16:21:22.3518 Info Copied System.ObjectModel.dll -2023-03-13 16:21:22.3518 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll -2023-03-13 16:21:22.3962 Info Copied System.Private.CoreLib.dll -2023-03-13 16:21:22.3968 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll -2023-03-13 16:21:22.4085 Info Copied System.Private.DataContractSerialization.dll -2023-03-13 16:21:22.4091 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll -2023-03-13 16:21:22.4114 Info Copied System.Private.Uri.dll -2023-03-13 16:21:22.4119 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll -2023-03-13 16:21:22.5255 Info Copied System.Private.Xml.dll -2023-03-13 16:21:22.5262 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll -2023-03-13 16:21:22.5299 Info Copied System.Private.Xml.Linq.dll -2023-03-13 16:21:22.5299 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll -2023-03-13 16:21:22.5321 Info Copied System.Reflection.DispatchProxy.dll -2023-03-13 16:21:22.5321 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll -2023-03-13 16:21:22.5337 Info Copied System.Reflection.dll -2023-03-13 16:21:22.5337 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll -2023-03-13 16:21:22.5353 Info Copied System.Reflection.Emit.dll -2023-03-13 16:21:22.5357 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll -2023-03-13 16:21:22.5369 Info Copied System.Reflection.Emit.ILGeneration.dll -2023-03-13 16:21:22.5369 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll -2023-03-13 16:21:22.5385 Info Copied System.Reflection.Emit.Lightweight.dll -2023-03-13 16:21:22.5390 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll -2023-03-13 16:21:22.5401 Info Copied System.Reflection.Extensions.dll -2023-03-13 16:21:22.5401 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll -2023-03-13 16:21:22.7582 Info Copied System.Reflection.Metadata.dll -2023-03-13 16:21:22.7582 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll -2023-03-13 16:21:22.7600 Info Copied System.Reflection.Primitives.dll -2023-03-13 16:21:22.7600 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll -2023-03-13 16:21:22.7614 Info Copied System.Reflection.TypeExtensions.dll -2023-03-13 16:21:22.7617 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll -2023-03-13 16:21:22.7627 Info Copied System.Resources.Reader.dll -2023-03-13 16:21:22.7627 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll -2023-03-13 16:21:22.7641 Info Copied System.Resources.ResourceManager.dll -2023-03-13 16:21:22.7641 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll -2023-03-13 16:21:22.7655 Info Copied System.Resources.Writer.dll -2023-03-13 16:21:22.7659 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll -2023-03-13 16:21:22.7670 Info Copied System.Runtime.CompilerServices.Unsafe.dll -2023-03-13 16:21:22.7670 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll -2023-03-13 16:21:22.7684 Info Copied System.Runtime.CompilerServices.VisualC.dll -2023-03-13 16:21:22.7688 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll -2023-03-13 16:21:22.7698 Info Copied System.Runtime.dll -2023-03-13 16:21:22.7698 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll -2023-03-13 16:21:22.7711 Info Copied System.Runtime.Extensions.dll -2023-03-13 16:21:22.7711 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll -2023-03-13 16:21:22.7723 Info Copied System.Runtime.Handles.dll -2023-03-13 16:21:22.7727 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll -2023-03-13 16:21:22.7739 Info Copied System.Runtime.InteropServices.dll -2023-03-13 16:21:22.7739 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll -2023-03-13 16:21:22.7753 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll -2023-03-13 16:21:22.7758 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll -2023-03-13 16:21:22.7768 Info Copied System.Runtime.Intrinsics.dll -2023-03-13 16:21:22.7768 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll -2023-03-13 16:21:22.7782 Info Copied System.Runtime.Loader.dll -2023-03-13 16:21:22.7782 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll -2023-03-13 16:21:22.8295 Info Copied System.Runtime.Numerics.dll -2023-03-13 16:21:22.8301 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll -2023-03-13 16:21:22.8313 Info Copied System.Runtime.Serialization.dll -2023-03-13 16:21:22.8313 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll -2023-03-13 16:21:22.8350 Info Copied System.Runtime.Serialization.Formatters.dll -2023-03-13 16:21:22.8350 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll -2023-03-13 16:21:22.8364 Info Copied System.Runtime.Serialization.Json.dll -2023-03-13 16:21:22.8368 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll -2023-03-13 16:21:22.8386 Info Copied System.Runtime.Serialization.Primitives.dll -2023-03-13 16:21:22.8390 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll -2023-03-13 16:21:22.8401 Info Copied System.Runtime.Serialization.Xml.dll -2023-03-13 16:21:22.8401 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll -2023-03-13 16:21:22.8417 Info Copied System.Security.AccessControl.dll -2023-03-13 16:21:22.8417 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll -2023-03-13 16:21:22.8444 Info Copied System.Security.Claims.dll -2023-03-13 16:21:22.8447 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll -2023-03-13 16:21:22.8572 Info Copied System.Security.Cryptography.Algorithms.dll -2023-03-13 16:21:22.8578 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll -2023-03-13 16:21:22.8591 Info Copied System.Security.Cryptography.Cng.dll -2023-03-13 16:21:22.8591 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll -2023-03-13 16:21:22.8618 Info Copied System.Security.Cryptography.Csp.dll -2023-03-13 16:21:22.8618 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll -2023-03-13 16:21:22.8638 Info Copied System.Security.Cryptography.Encoding.dll -2023-03-13 16:21:22.8638 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll -2023-03-13 16:21:22.8668 Info Copied System.Security.Cryptography.OpenSsl.dll -2023-03-13 16:21:22.8668 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll -2023-03-13 16:21:22.8715 Info Copied System.Security.Cryptography.Pkcs.dll -2023-03-13 16:21:22.8718 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll -2023-03-13 16:21:22.8735 Info Copied System.Security.Cryptography.Primitives.dll -2023-03-13 16:21:22.8739 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll -2023-03-13 16:21:22.8750 Info Copied System.Security.Cryptography.ProtectedData.dll -2023-03-13 16:21:22.8750 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll -2023-03-13 16:21:22.9011 Info Copied System.Security.Cryptography.X509Certificates.dll -2023-03-13 16:21:22.9011 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll -2023-03-13 16:21:22.9051 Info Copied System.Security.Cryptography.Xml.dll -2023-03-13 16:21:22.9051 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll -2023-03-13 16:21:22.9066 Info Copied System.Security.dll -2023-03-13 16:21:22.9100 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll -2023-03-13 16:21:22.9110 Info Copied System.Security.Principal.dll -2023-03-13 16:21:22.9110 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll -2023-03-13 16:21:22.9155 Info Copied System.Security.Principal.Windows.dll -2023-03-13 16:21:22.9159 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll -2023-03-13 16:21:22.9169 Info Copied System.Security.SecureString.dll -2023-03-13 16:21:22.9169 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll -2023-03-13 16:21:22.9222 Info Copied System.ServiceModel.Web.dll -2023-03-13 16:21:22.9227 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll -2023-03-13 16:21:22.9237 Info Copied System.ServiceProcess.dll -2023-03-13 16:21:22.9237 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll -2023-03-13 16:21:22.9291 Info Copied System.ServiceProcess.ServiceController.dll -2023-03-13 16:21:22.9291 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll -2023-03-13 16:21:22.9382 Info Copied System.Text.Encoding.CodePages.dll -2023-03-13 16:21:22.9427 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll -2023-03-13 16:21:22.9618 Info Copied System.Text.Encoding.dll -2023-03-13 16:21:22.9618 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll -2023-03-13 16:21:22.9636 Info Copied System.Text.Encoding.Extensions.dll -2023-03-13 16:21:22.9646 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll -2023-03-13 16:21:22.9664 Info Copied System.Text.Encodings.Web.dll -2023-03-13 16:21:22.9668 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll -2023-03-13 16:21:22.9841 Info Copied System.Text.Json.dll -2023-03-13 16:21:22.9841 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll -2023-03-13 16:21:22.9960 Info Copied System.Text.RegularExpressions.dll -2023-03-13 16:21:22.9960 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll -2023-03-13 16:21:22.9980 Info Copied System.Threading.Channels.dll -2023-03-13 16:21:22.9980 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll -2023-03-13 16:21:23.0239 Info Copied System.Threading.dll -2023-03-13 16:21:23.0239 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll -2023-03-13 16:21:23.0254 Info Copied System.Threading.Overlapped.dll -2023-03-13 16:21:23.0258 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll -2023-03-13 16:21:23.0293 Info Copied System.Threading.Tasks.Dataflow.dll -2023-03-13 16:21:23.0293 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll -2023-03-13 16:21:23.0305 Info Copied System.Threading.Tasks.dll -2023-03-13 16:21:23.0309 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll -2023-03-13 16:21:23.0358 Info Copied System.Threading.Tasks.Extensions.dll -2023-03-13 16:21:23.0358 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll -2023-03-13 16:21:23.0377 Info Copied System.Threading.Tasks.Parallel.dll -2023-03-13 16:21:23.0377 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll -2023-03-13 16:21:23.0432 Info Copied System.Threading.Thread.dll -2023-03-13 16:21:23.0432 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll -2023-03-13 16:21:23.0555 Info Copied System.Threading.ThreadPool.dll -2023-03-13 16:21:23.0561 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll -2023-03-13 16:21:23.0572 Info Copied System.Threading.Timer.dll -2023-03-13 16:21:23.0572 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll -2023-03-13 16:21:23.0588 Info Copied System.Transactions.dll -2023-03-13 16:21:23.0588 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll -2023-03-13 16:21:23.0617 Info Copied System.Transactions.Local.dll -2023-03-13 16:21:23.0617 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll -2023-03-13 16:21:23.0701 Info Copied System.ValueTuple.dll -2023-03-13 16:21:23.0701 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll -2023-03-13 16:21:23.0715 Info Copied System.Web.dll -2023-03-13 16:21:23.0719 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll -2023-03-13 16:21:23.0731 Info Copied System.Web.HttpUtility.dll -2023-03-13 16:21:23.0731 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll -2023-03-13 16:21:23.0745 Info Copied System.Windows.dll -2023-03-13 16:21:23.0748 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll -2023-03-13 16:21:23.0995 Info Copied System.Xml.dll -2023-03-13 16:21:23.1001 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll -2023-03-13 16:21:23.1012 Info Copied System.Xml.Linq.dll -2023-03-13 16:21:23.1012 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll -2023-03-13 16:21:23.1027 Info Copied System.Xml.ReaderWriter.dll -2023-03-13 16:21:23.1031 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll -2023-03-13 16:21:23.1041 Info Copied System.Xml.Serialization.dll -2023-03-13 16:21:23.1041 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll -2023-03-13 16:21:23.1054 Info Copied System.Xml.XDocument.dll -2023-03-13 16:21:23.1057 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll -2023-03-13 16:21:23.1068 Info Copied System.Xml.XmlDocument.dll -2023-03-13 16:21:23.1068 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll -2023-03-13 16:21:23.1081 Info Copied System.Xml.XmlSerializer.dll -2023-03-13 16:21:23.1081 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll -2023-03-13 16:21:23.1094 Info Copied System.Xml.XPath.dll -2023-03-13 16:21:23.1138 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll -2023-03-13 16:21:23.1149 Info Copied System.Xml.XPath.XDocument.dll -2023-03-13 16:21:23.1149 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll -2023-03-13 16:21:23.1162 Info Copied WindowsBase.dll -2023-03-13 16:21:23.1162 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3593-638143212772413046/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll -2023-03-13 16:21:23.1300 Info Copied YamlDotNet.dll -2023-03-13 16:21:23.1300 Info File copying complete -2023-03-13 16:21:23.1372 Info Deleting file /app/Jackett/Definitions/pornforall.yml -2023-03-13 16:21:23.1477 Info Deleting file /app/Jackett/Definitions/woot.yml -2023-03-13 16:21:23.2078 Info Killing process 133 -2023-03-13 16:21:26.2891 Info Process 133 didn't exit within 2 seconds after a SIGTERM -2023-03-14 17:21:38.2556 Info Jackett Updater v0.20.3599 -2023-03-14 17:21:38.3458 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "236" "--NoRestart" -2023-03-14 17:21:38.3493 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-14 17:21:38.5405 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb -2023-03-14 17:21:38.5412 Info Deleted /app/Jackett/DateTimeRoutines.pdb -2023-03-14 17:21:38.5412 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb -2023-03-14 17:21:38.5419 Info Deleted /app/Jackett/Jackett.Common.pdb -2023-03-14 17:21:38.5419 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb -2023-03-14 17:21:38.5419 Info Deleted /app/Jackett/JackettUpdater.pdb -2023-03-14 17:21:38.5419 Info Attempting to remove: /app/Jackett/jackett.pdb -2023-03-14 17:21:38.5430 Info Deleted /app/Jackett/jackett.pdb -2023-03-14 17:21:38.5430 Info Attempting to remove: /app/Jackett/jackett -2023-03-14 17:21:38.5430 Info Deleted /app/Jackett/jackett -2023-03-14 17:21:38.5437 Info Finding files in: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/ -2023-03-14 17:21:38.5490 Info 890 update files found -2023-03-14 17:21:38.5501 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll -2023-03-14 17:21:38.5527 Info Copied AngleSharp.dll -2023-03-14 17:21:38.5527 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll -2023-03-14 17:21:38.5537 Info Copied AngleSharp.Xml.dll -2023-03-14 17:21:38.5537 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll -2023-03-14 17:21:38.5550 Info Copied Autofac.dll -2023-03-14 17:21:38.5550 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll -2023-03-14 17:21:38.5560 Info Copied Autofac.Extensions.DependencyInjection.dll -2023-03-14 17:21:38.5560 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll -2023-03-14 17:21:38.5573 Info Copied AutoMapper.dll -2023-03-14 17:21:38.5573 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll -2023-03-14 17:21:38.5581 Info Copied BencodeNET.dll -2023-03-14 17:21:38.5581 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll -2023-03-14 17:21:38.5601 Info Copied CommandLine.dll -2023-03-14 17:21:38.5601 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css -2023-03-14 17:21:38.5610 Info Copied animate.css -2023-03-14 17:21:38.5610 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png -2023-03-14 17:21:38.5618 Info Copied apple-touch-icon.png -2023-03-14 17:21:38.5618 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png -2023-03-14 17:21:38.5618 Info Copied binding_dark.png -2023-03-14 17:21:38.5628 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css -2023-03-14 17:21:38.5628 Info Copied bootstrap.min.css -2023-03-14 17:21:38.5638 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js -2023-03-14 17:21:38.5638 Info Copied bootstrap.min.js -2023-03-14 17:21:38.5638 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js -2023-03-14 17:21:38.5650 Info Copied common.js -2023-03-14 17:21:38.5650 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css -2023-03-14 17:21:38.5657 Info Copied bootstrap-multiselect.css -2023-03-14 17:21:38.5657 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css -2023-03-14 17:21:38.5657 Info Copied font-awesome.min.css -2023-03-14 17:21:38.5667 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css -2023-03-14 17:21:38.5667 Info Copied jquery.dataTables.min.css -2023-03-14 17:21:38.5667 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css -2023-03-14 17:21:38.5681 Info Copied tagify.css -2023-03-14 17:21:38.5681 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css -2023-03-14 17:21:38.5688 Info Copied custom_mobile.css -2023-03-14 17:21:38.5688 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css -2023-03-14 17:21:38.5688 Info Copied custom.css -2023-03-14 17:21:38.5697 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js -2023-03-14 17:21:38.5697 Info Copied custom.js -2023-03-14 17:21:38.5697 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico -2023-03-14 17:21:38.5714 Info Copied favicon.ico -2023-03-14 17:21:38.5714 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot -2023-03-14 17:21:38.5724 Info Copied fontawesome-webfont.eot -2023-03-14 17:21:38.5733 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg -2023-03-14 17:21:38.5745 Info Copied fontawesome-webfont.svg -2023-03-14 17:21:38.5747 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf -2023-03-14 17:21:38.5747 Info Copied fontawesome-webfont.ttf -2023-03-14 17:21:38.5747 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff -2023-03-14 17:21:38.5763 Info Copied fontawesome-webfont.woff -2023-03-14 17:21:38.5763 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 -2023-03-14 17:21:38.5771 Info Copied fontawesome-webfont.woff2 -2023-03-14 17:21:38.5771 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf -2023-03-14 17:21:38.5781 Info Copied FontAwesome.otf -2023-03-14 17:21:38.5781 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot -2023-03-14 17:21:38.5789 Info Copied glyphicons-halflings-regular.eot -2023-03-14 17:21:38.5789 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg -2023-03-14 17:21:38.5799 Info Copied glyphicons-halflings-regular.svg -2023-03-14 17:21:38.5799 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf -2023-03-14 17:21:38.5807 Info Copied glyphicons-halflings-regular.ttf -2023-03-14 17:21:38.5807 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff -2023-03-14 17:21:38.5807 Info Copied glyphicons-halflings-regular.woff -2023-03-14 17:21:38.5818 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 -2023-03-14 17:21:38.5818 Info Copied glyphicons-halflings-regular.woff2 -2023-03-14 17:21:38.5826 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png -2023-03-14 17:21:38.5826 Info Copied sort_asc_disabled.png -2023-03-14 17:21:38.5826 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png -2023-03-14 17:21:38.5840 Info Copied sort_asc.png -2023-03-14 17:21:38.5840 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png -2023-03-14 17:21:38.5848 Info Copied sort_both.png -2023-03-14 17:21:38.5848 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png -2023-03-14 17:21:38.5848 Info Copied sort_desc_disabled.png -2023-03-14 17:21:38.5857 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png -2023-03-14 17:21:38.5857 Info Copied sort_desc.png -2023-03-14 17:21:38.5857 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html -2023-03-14 17:21:38.5872 Info Copied index.html -2023-03-14 17:21:38.5872 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png -2023-03-14 17:21:38.5879 Info Copied jacket_medium.png -2023-03-14 17:21:38.5879 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js -2023-03-14 17:21:38.5887 Info Copied api.js -2023-03-14 17:21:38.5887 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js -2023-03-14 17:21:38.5897 Info Copied bootstrap-multiselect.js -2023-03-14 17:21:38.5897 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js -2023-03-14 17:21:38.5897 Info Copied bootstrap-notify.js -2023-03-14 17:21:38.5907 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js -2023-03-14 17:21:38.5907 Info Copied filesize.min.js -2023-03-14 17:21:38.5907 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js -2023-03-14 17:21:38.5922 Info Copied handlebars.min.js -2023-03-14 17:21:38.5922 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js -2023-03-14 17:21:38.5930 Info Copied handlebarsextend.js -2023-03-14 17:21:38.5930 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js -2023-03-14 17:21:38.5938 Info Copied handlebarsmoment.js -2023-03-14 17:21:38.5938 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js -2023-03-14 17:21:38.5947 Info Copied jquery.dataTables.min.js -2023-03-14 17:21:38.5947 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js -2023-03-14 17:21:38.5957 Info Copied jquery.min.js -2023-03-14 17:21:38.5957 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js -2023-03-14 17:21:38.5957 Info Copied jQuery.tagify.min.js -2023-03-14 17:21:38.5967 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js -2023-03-14 17:21:38.5967 Info Copied moment.min.js -2023-03-14 17:21:38.5967 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js -2023-03-14 17:21:38.5981 Info Copied tagify.min.js -2023-03-14 17:21:38.5981 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html -2023-03-14 17:21:38.5989 Info Copied login.html -2023-03-14 17:21:38.5989 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/createdump to destination: /app/Jackett/createdump -2023-03-14 17:21:38.6008 Info Copied createdump -2023-03-14 17:21:38.6008 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll -2023-03-14 17:21:38.6017 Info Copied DateTimeRoutines.dll -2023-03-14 17:21:38.6017 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb -2023-03-14 17:21:38.6026 Info Copied DateTimeRoutines.pdb -2023-03-14 17:21:38.6026 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml -2023-03-14 17:21:38.6026 Info Copied 0daykiev.yml -2023-03-14 17:21:38.6026 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml -2023-03-14 17:21:38.6042 Info Copied 0magnet.yml -2023-03-14 17:21:38.6042 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml -2023-03-14 17:21:38.6050 Info Copied 1337x.yml -2023-03-14 17:21:38.6050 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml -2023-03-14 17:21:38.6058 Info Copied 1ptbar.yml -2023-03-14 17:21:38.6058 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml -2023-03-14 17:21:38.6058 Info Copied 2fast4you.yml -2023-03-14 17:21:38.6068 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml -2023-03-14 17:21:38.6068 Info Copied 2xfree.yml -2023-03-14 17:21:38.6077 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml -2023-03-14 17:21:38.6077 Info Copied 3changtrai.yml -2023-03-14 17:21:38.6077 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml -2023-03-14 17:21:38.6091 Info Copied 3dtorrents.yml -2023-03-14 17:21:38.6091 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml -2023-03-14 17:21:38.6099 Info Copied 4thd.yml -2023-03-14 17:21:38.6099 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml -2023-03-14 17:21:38.6107 Info Copied 52pt.yml -2023-03-14 17:21:38.6107 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml -2023-03-14 17:21:38.6107 Info Copied abnormal.yml -2023-03-14 17:21:38.6117 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml -2023-03-14 17:21:38.6117 Info Copied abtorrents.yml -2023-03-14 17:21:38.6117 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml -2023-03-14 17:21:38.6131 Info Copied acervos-api.yml -2023-03-14 17:21:38.6131 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml -2023-03-14 17:21:38.6139 Info Copied acgrip.yml -2023-03-14 17:21:38.6139 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml -2023-03-14 17:21:38.6147 Info Copied acgsou.yml -2023-03-14 17:21:38.6147 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml -2023-03-14 17:21:38.6147 Info Copied acidlounge.yml -2023-03-14 17:21:38.6158 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml -2023-03-14 17:21:38.6158 Info Copied acrossthetasman.yml -2023-03-14 17:21:38.6158 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml -2023-03-14 17:21:38.6171 Info Copied aftershock.yml -2023-03-14 17:21:38.6171 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml -2023-03-14 17:21:38.6179 Info Copied aidoruonline.yml -2023-03-14 17:21:38.6179 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml -2023-03-14 17:21:38.6187 Info Copied aither-api.yml -2023-03-14 17:21:38.6187 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml -2023-03-14 17:21:38.6187 Info Copied amigosshare.yml -2023-03-14 17:21:38.6187 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml -2023-03-14 17:21:38.6201 Info Copied anilibria.yml -2023-03-14 17:21:38.6201 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml -2023-03-14 17:21:38.6209 Info Copied anime-free.yml -2023-03-14 17:21:38.6209 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml -2023-03-14 17:21:38.6209 Info Copied animelayer.yml -2023-03-14 17:21:38.6218 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml -2023-03-14 17:21:38.6218 Info Copied animetracker.yml -2023-03-14 17:21:38.6218 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml -2023-03-14 17:21:38.6232 Info Copied animeworld-api.yml -2023-03-14 17:21:38.6232 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml -2023-03-14 17:21:38.6239 Info Copied anirena.yml -2023-03-14 17:21:38.6239 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml -2023-03-14 17:21:38.6239 Info Copied anisource.yml -2023-03-14 17:21:38.6248 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml -2023-03-14 17:21:38.6248 Info Copied anthelion-api.yml -2023-03-14 17:21:38.6248 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml -2023-03-14 17:21:38.6262 Info Copied arabafenice.yml -2023-03-14 17:21:38.6262 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml -2023-03-14 17:21:38.6270 Info Copied arabp2p.yml -2023-03-14 17:21:38.6270 Info Attempting to copy arabtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/arabtorrents.yml to destination: /app/Jackett/Definitions/arabtorrents.yml -2023-03-14 17:21:38.6278 Info Copied arabtorrents.yml -2023-03-14 17:21:38.6278 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml -2023-03-14 17:21:38.6278 Info Copied arenabg.yml -2023-03-14 17:21:38.6288 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml -2023-03-14 17:21:38.6288 Info Copied asiancinema.yml -2023-03-14 17:21:38.6288 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml -2023-03-14 17:21:38.6301 Info Copied asiandvdclub.yml -2023-03-14 17:21:38.6301 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml -2023-03-14 17:21:38.6309 Info Copied audiences.yml -2023-03-14 17:21:38.6309 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml -2023-03-14 17:21:38.6318 Info Copied audionews.yml -2023-03-14 17:21:38.6318 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml -2023-03-14 17:21:38.6318 Info Copied aussierules.yml -2023-03-14 17:21:38.6327 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml -2023-03-14 17:21:38.6327 Info Copied backups.yml -2023-03-14 17:21:38.6327 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml -2023-03-14 17:21:38.6341 Info Copied badasstorrents.yml -2023-03-14 17:21:38.6341 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml -2023-03-14 17:21:38.6348 Info Copied bangumi-moe.yml -2023-03-14 17:21:38.6348 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml -2023-03-14 17:21:38.6348 Info Copied beitai.yml -2023-03-14 17:21:38.6358 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml -2023-03-14 17:21:38.6358 Info Copied bestcore.yml -2023-03-14 17:21:38.6358 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml -2023-03-14 17:21:38.6370 Info Copied beyond-hd.yml -2023-03-14 17:21:38.6370 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml -2023-03-14 17:21:38.6377 Info Copied bibliotik.yml -2023-03-14 17:21:38.6377 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml -2023-03-14 17:21:38.6377 Info Copied bigfangroup.yml -2023-03-14 17:21:38.6388 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml -2023-03-14 17:21:38.6388 Info Copied bitbazis.yml -2023-03-14 17:21:38.6397 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml -2023-03-14 17:21:38.6397 Info Copied bitded.yml -2023-03-14 17:21:38.6397 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml -2023-03-14 17:21:38.6408 Info Copied bithorlo.yml -2023-03-14 17:21:38.6408 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml -2023-03-14 17:21:38.6408 Info Copied bithumen.yml -2023-03-14 17:21:38.6417 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml -2023-03-14 17:21:38.6417 Info Copied bitnova.yml -2023-03-14 17:21:38.6417 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml -2023-03-14 17:21:38.6429 Info Copied bitofvalor.yml -2023-03-14 17:21:38.6429 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml -2023-03-14 17:21:38.6437 Info Copied bitru.yml -2023-03-14 17:21:38.6437 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml -2023-03-14 17:21:38.6437 Info Copied bitsearch.yml -2023-03-14 17:21:38.6437 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml -2023-03-14 17:21:38.6451 Info Copied bitsexy.yml -2023-03-14 17:21:38.6451 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml -2023-03-14 17:21:38.6459 Info Copied bitspyder.yml -2023-03-14 17:21:38.6459 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml -2023-03-14 17:21:38.6459 Info Copied Bittorrentfiles.yml -2023-03-14 17:21:38.6468 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml -2023-03-14 17:21:38.6468 Info Copied bitturk.yml -2023-03-14 17:21:38.6468 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml -2023-03-14 17:21:38.6480 Info Copied bluebird.yml -2023-03-14 17:21:38.6480 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml -2023-03-14 17:21:38.6487 Info Copied blutopia-api.yml -2023-03-14 17:21:38.6487 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml -2023-03-14 17:21:38.6487 Info Copied booktracker.yml -2023-03-14 17:21:38.6497 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml -2023-03-14 17:21:38.6497 Info Copied bootytape.yml -2023-03-14 17:21:38.6497 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml -2023-03-14 17:21:38.6509 Info Copied borgzelle.yml -2023-03-14 17:21:38.6509 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml -2023-03-14 17:21:38.6509 Info Copied boxingtorrents.yml -2023-03-14 17:21:38.6517 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml -2023-03-14 17:21:38.6517 Info Copied broadcity.yml -2023-03-14 17:21:38.6517 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml -2023-03-14 17:21:38.6528 Info Copied brsociety-api.yml -2023-03-14 17:21:38.6528 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml -2023-03-14 17:21:38.6528 Info Copied bt4g.yml -2023-03-14 17:21:38.6528 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml -2023-03-14 17:21:38.6542 Info Copied btdigg.yml -2023-03-14 17:21:38.6542 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml -2023-03-14 17:21:38.6549 Info Copied btetree.yml -2023-03-14 17:21:38.6549 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml -2023-03-14 17:21:38.6549 Info Copied btmet.yml -2023-03-14 17:21:38.6558 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml -2023-03-14 17:21:38.6558 Info Copied btnext.yml -2023-03-14 17:21:38.6558 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml -2023-03-14 17:21:38.6571 Info Copied btschool.yml -2023-03-14 17:21:38.6571 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml -2023-03-14 17:21:38.6578 Info Copied btsow.yml -2023-03-14 17:21:38.6578 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml -2023-03-14 17:21:38.6578 Info Copied bulltorrent.yml -2023-03-14 17:21:38.6588 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml -2023-03-14 17:21:38.6588 Info Copied bwtorrents.yml -2023-03-14 17:21:38.6588 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml -2023-03-14 17:21:38.6601 Info Copied byrbt.yml -2023-03-14 17:21:38.6601 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml -2023-03-14 17:21:38.6608 Info Copied byrutor.yml -2023-03-14 17:21:38.6608 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml -2023-03-14 17:21:38.6608 Info Copied carpathians.yml -2023-03-14 17:21:38.6617 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml -2023-03-14 17:21:38.6617 Info Copied carphunter.yml -2023-03-14 17:21:38.6617 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml -2023-03-14 17:21:38.6631 Info Copied carpt.yml -2023-03-14 17:21:38.6631 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml -2023-03-14 17:21:38.6638 Info Copied cartoonchaos.yml -2023-03-14 17:21:38.6638 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml -2023-03-14 17:21:38.6638 Info Copied cathoderaytube.yml -2023-03-14 17:21:38.6647 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml -2023-03-14 17:21:38.6647 Info Copied catorrent.yml -2023-03-14 17:21:38.6647 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml -2023-03-14 17:21:38.6660 Info Copied ccfbits.yml -2023-03-14 17:21:38.6660 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml -2023-03-14 17:21:38.6667 Info Copied ceskeforum.yml -2023-03-14 17:21:38.6667 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml -2023-03-14 17:21:38.6667 Info Copied chdbits.yml -2023-03-14 17:21:38.6677 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml -2023-03-14 17:21:38.6677 Info Copied chilebt.yml -2023-03-14 17:21:38.6677 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml -2023-03-14 17:21:38.6689 Info Copied cinemageddon.yml -2023-03-14 17:21:38.6689 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml -2023-03-14 17:21:38.6697 Info Copied cinemamovies.yml -2023-03-14 17:21:38.6697 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml -2023-03-14 17:21:38.6697 Info Copied cinematik.yml -2023-03-14 17:21:38.6697 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml -2023-03-14 17:21:38.6711 Info Copied classix.yml -2023-03-14 17:21:38.6711 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml -2023-03-14 17:21:38.6718 Info Copied coastalcrew.yml -2023-03-14 17:21:38.6718 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml -2023-03-14 17:21:38.6718 Info Copied comicat.yml -2023-03-14 17:21:38.6727 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml -2023-03-14 17:21:38.6727 Info Copied concen.yml -2023-03-14 17:21:38.6727 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml -2023-03-14 17:21:38.6739 Info Copied concertos.yml -2023-03-14 17:21:38.6739 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml -2023-03-14 17:21:38.6739 Info Copied cpabien.yml -2023-03-14 17:21:38.6748 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml -2023-03-14 17:21:38.6748 Info Copied cpasbienclone.yml -2023-03-14 17:21:38.6748 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml -2023-03-14 17:21:38.6760 Info Copied cpasbiensi.yml -2023-03-14 17:21:38.6760 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml -2023-03-14 17:21:38.6767 Info Copied crackingpatching.yml -2023-03-14 17:21:38.6767 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml -2023-03-14 17:21:38.6767 Info Copied crazyhd.yml -2023-03-14 17:21:38.6776 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml -2023-03-14 17:21:38.6776 Info Copied crazyspirits.yml -2023-03-14 17:21:38.6776 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml -2023-03-14 17:21:38.6790 Info Copied crnaberza.yml -2023-03-14 17:21:38.6790 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml -2023-03-14 17:21:38.6797 Info Copied crt2fa.yml -2023-03-14 17:21:38.6797 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml -2023-03-14 17:21:38.6797 Info Copied danishbytes-api.yml -2023-03-14 17:21:38.6807 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml -2023-03-14 17:21:38.6807 Info Copied dariustracker.yml -2023-03-14 17:21:38.6807 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml -2023-03-14 17:21:38.6819 Info Copied dark-shadow.yml -2023-03-14 17:21:38.6819 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml -2023-03-14 17:21:38.6827 Info Copied datascene-api.yml -2023-03-14 17:21:38.6827 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml -2023-03-14 17:21:38.6827 Info Copied datatalli.yml -2023-03-14 17:21:38.6827 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml -2023-03-14 17:21:38.6842 Info Copied deildu.yml -2023-03-14 17:21:38.6842 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml -2023-03-14 17:21:38.6849 Info Copied demonoid.yml -2023-03-14 17:21:38.6849 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml -2023-03-14 17:21:38.6857 Info Copied desitorrents-api.yml -2023-03-14 17:21:38.6857 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml -2023-03-14 17:21:38.6857 Info Copied devil-torrents.yml -2023-03-14 17:21:38.6857 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml -2023-03-14 17:21:38.6871 Info Copied diablotorrent.yml -2023-03-14 17:21:38.6871 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml -2023-03-14 17:21:38.6878 Info Copied digitalcore.yml -2023-03-14 17:21:38.6878 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml -2023-03-14 17:21:38.6878 Info Copied dimeadozen.yml -2023-03-14 17:21:38.6887 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml -2023-03-14 17:21:38.6887 Info Copied discfan.yml -2023-03-14 17:21:38.6887 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml -2023-03-14 17:21:38.6900 Info Copied divteam.yml -2023-03-14 17:21:38.6900 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml -2023-03-14 17:21:38.6907 Info Copied dmhy.yml -2023-03-14 17:21:38.6907 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml -2023-03-14 17:21:38.6907 Info Copied docspedia.yml -2023-03-14 17:21:38.6916 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml -2023-03-14 17:21:38.6916 Info Copied dodder.yml -2023-03-14 17:21:38.6916 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml -2023-03-14 17:21:38.6929 Info Copied dreamtracker.yml -2023-03-14 17:21:38.6929 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml -2023-03-14 17:21:38.6929 Info Copied dxp.yml -2023-03-14 17:21:38.6938 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml -2023-03-14 17:21:38.6938 Info Copied ebookbay.yml -2023-03-14 17:21:38.6938 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml -2023-03-14 17:21:38.6949 Info Copied ebooks-shares.yml -2023-03-14 17:21:38.6949 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml -2023-03-14 17:21:38.6957 Info Copied ehentai.yml -2023-03-14 17:21:38.6957 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml -2023-03-14 17:21:38.6957 Info Copied electro-torrent.yml -2023-03-14 17:21:38.6967 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml -2023-03-14 17:21:38.6967 Info Copied empornium.yml -2023-03-14 17:21:38.6967 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml -2023-03-14 17:21:38.6979 Info Copied empornium2fa.yml -2023-03-14 17:21:38.6979 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml -2023-03-14 17:21:38.6986 Info Copied eniahd.yml -2023-03-14 17:21:38.6986 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml -2023-03-14 17:21:38.6986 Info Copied esharenet.yml -2023-03-14 17:21:38.6986 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml -2023-03-14 17:21:38.7000 Info Copied estone.yml -2023-03-14 17:21:38.7000 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml -2023-03-14 17:21:38.7007 Info Copied exkinoray.yml -2023-03-14 17:21:38.7007 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml -2023-03-14 17:21:38.7007 Info Copied extratorrent-st.yml -2023-03-14 17:21:38.7017 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml -2023-03-14 17:21:38.7017 Info Copied extremebits.yml -2023-03-14 17:21:38.7017 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml -2023-03-14 17:21:38.7029 Info Copied extremetorrents.yml -2023-03-14 17:21:38.7029 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml -2023-03-14 17:21:38.7029 Info Copied extremlymtorrents.yml -2023-03-14 17:21:38.7037 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml -2023-03-14 17:21:38.7037 Info Copied exttorrents.yml -2023-03-14 17:21:38.7037 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml -2023-03-14 17:21:38.7047 Info Copied eztv.yml -2023-03-14 17:21:38.7047 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml -2023-03-14 17:21:38.7047 Info Copied falkonvisionteam.yml -2023-03-14 17:21:38.7047 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml -2023-03-14 17:21:38.7060 Info Copied fanoin.yml -2023-03-14 17:21:38.7060 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml -2023-03-14 17:21:38.7067 Info Copied fantasticheaven.yml -2023-03-14 17:21:38.7067 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml -2023-03-14 17:21:38.7067 Info Copied fantastiko.yml -2023-03-14 17:21:38.7067 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml -2023-03-14 17:21:38.7079 Info Copied femdomcult.yml -2023-03-14 17:21:38.7079 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml -2023-03-14 17:21:38.7079 Info Copied fenyarnyek-tracker.yml -2023-03-14 17:21:38.7087 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml -2023-03-14 17:21:38.7087 Info Copied file-tracker.yml -2023-03-14 17:21:38.7087 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml -2023-03-14 17:21:38.7097 Info Copied filelisting.yml -2023-03-14 17:21:38.7097 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml -2023-03-14 17:21:38.7097 Info Copied finelite.yml -2023-03-14 17:21:38.7097 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml -2023-03-14 17:21:38.7110 Info Copied finvip.yml -2023-03-14 17:21:38.7110 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml -2023-03-14 17:21:38.7110 Info Copied firebit.yml -2023-03-14 17:21:38.7118 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml -2023-03-14 17:21:38.7118 Info Copied fluxzone.yml -2023-03-14 17:21:38.7118 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml -2023-03-14 17:21:38.7129 Info Copied freshmeat.yml -2023-03-14 17:21:38.7129 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml -2023-03-14 17:21:38.7129 Info Copied frozenlayer.yml -2023-03-14 17:21:38.7136 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml -2023-03-14 17:21:38.7136 Info Copied ftuapps.yml -2023-03-14 17:21:38.7136 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml -2023-03-14 17:21:38.7147 Info Copied funkytorrents.yml -2023-03-14 17:21:38.7147 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml -2023-03-14 17:21:38.7147 Info Copied fuzer.yml -2023-03-14 17:21:38.7147 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml -2023-03-14 17:21:38.7159 Info Copied gainbound.yml -2023-03-14 17:21:38.7159 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml -2023-03-14 17:21:38.7159 Info Copied gamestorrents.yml -2023-03-14 17:21:38.7167 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml -2023-03-14 17:21:38.7167 Info Copied gay-torrents.yml -2023-03-14 17:21:38.7167 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml -2023-03-14 17:21:38.7178 Info Copied gay-torrentsorg.yml -2023-03-14 17:21:38.7178 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml -2023-03-14 17:21:38.7178 Info Copied gaytorrentru.yml -2023-03-14 17:21:38.7178 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml -2023-03-14 17:21:38.7190 Info Copied generationfree-api.yml -2023-03-14 17:21:38.7190 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml -2023-03-14 17:21:38.7190 Info Copied genesismovement.yml -2023-03-14 17:21:38.7198 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml -2023-03-14 17:21:38.7198 Info Copied gigatorrents.yml -2023-03-14 17:21:38.7198 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml -2023-03-14 17:21:38.7208 Info Copied gimmepeers.yml -2023-03-14 17:21:38.7208 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml -2023-03-14 17:21:38.7208 Info Copied girotorrent.yml -2023-03-14 17:21:38.7216 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml -2023-03-14 17:21:38.7216 Info Copied gktorrent.yml -2023-03-14 17:21:38.7216 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml -2023-03-14 17:21:38.7227 Info Copied glodls.yml -2023-03-14 17:21:38.7227 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml -2023-03-14 17:21:38.7227 Info Copied greekdiamond.yml -2023-03-14 17:21:38.7227 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml -2023-03-14 17:21:38.7239 Info Copied greekteam.yml -2023-03-14 17:21:38.7239 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml -2023-03-14 17:21:38.7239 Info Copied gtorrentpro.yml -2023-03-14 17:21:38.7247 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml -2023-03-14 17:21:38.7247 Info Copied haidan.yml -2023-03-14 17:21:38.7247 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml -2023-03-14 17:21:38.7257 Info Copied haitang.yml -2023-03-14 17:21:38.7257 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml -2023-03-14 17:21:38.7257 Info Copied happyfappy.yml -2023-03-14 17:21:38.7257 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml -2023-03-14 17:21:38.7269 Info Copied hawke-uno.yml -2023-03-14 17:21:38.7269 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml -2023-03-14 17:21:38.7269 Info Copied hd-unit3d-api.yml -2023-03-14 17:21:38.7277 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml -2023-03-14 17:21:38.7277 Info Copied hd4fans.yml -2023-03-14 17:21:38.7277 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml -2023-03-14 17:21:38.7286 Info Copied hdarea.yml -2023-03-14 17:21:38.7286 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml -2023-03-14 17:21:38.7286 Info Copied hdatmos.yml -2023-03-14 17:21:38.7286 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml -2023-03-14 17:21:38.7299 Info Copied hdc.yml -2023-03-14 17:21:38.7299 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml -2023-03-14 17:21:38.7299 Info Copied hdchina.yml -2023-03-14 17:21:38.7307 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml -2023-03-14 17:21:38.7307 Info Copied hdcztorrent.yml -2023-03-14 17:21:38.7307 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml -2023-03-14 17:21:38.7317 Info Copied hddolby.yml -2023-03-14 17:21:38.7317 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml -2023-03-14 17:21:38.7317 Info Copied hdfans.yml -2023-03-14 17:21:38.7317 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml -2023-03-14 17:21:38.7329 Info Copied hdforever.yml -2023-03-14 17:21:38.7329 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml -2023-03-14 17:21:38.7329 Info Copied hdgalaktik.yml -2023-03-14 17:21:38.7337 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml -2023-03-14 17:21:38.7337 Info Copied hdhome.yml -2023-03-14 17:21:38.7337 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml -2023-03-14 17:21:38.7348 Info Copied hdmayi.yml -2023-03-14 17:21:38.7348 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml -2023-03-14 17:21:38.7348 Info Copied hdmonkey.yml -2023-03-14 17:21:38.7348 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml -2023-03-14 17:21:38.7359 Info Copied hdolimpo-api.yml -2023-03-14 17:21:38.7359 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml -2023-03-14 17:21:38.7359 Info Copied hdonly.yml -2023-03-14 17:21:38.7367 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml -2023-03-14 17:21:38.7367 Info Copied hdroute.yml -2023-03-14 17:21:38.7367 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml -2023-03-14 17:21:38.7378 Info Copied hdsky.yml -2023-03-14 17:21:38.7378 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml -2023-03-14 17:21:38.7378 Info Copied hdtime.yml -2023-03-14 17:21:38.7378 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml -2023-03-14 17:21:38.7390 Info Copied hdtorrentsit.yml -2023-03-14 17:21:38.7390 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml -2023-03-14 17:21:38.7390 Info Copied hdturk.yml -2023-03-14 17:21:38.7398 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml -2023-03-14 17:21:38.7398 Info Copied hdu.yml -2023-03-14 17:21:38.7398 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml -2023-03-14 17:21:38.7409 Info Copied hdzone.yml -2023-03-14 17:21:38.7409 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml -2023-03-14 17:21:38.7409 Info Copied hebits.yml -2023-03-14 17:21:38.7416 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml -2023-03-14 17:21:38.7416 Info Copied hellashut.yml -2023-03-14 17:21:38.7416 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml -2023-03-14 17:21:38.7427 Info Copied hhanclub.yml -2023-03-14 17:21:38.7427 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml -2023-03-14 17:21:38.7427 Info Copied houseofdevil.yml -2023-03-14 17:21:38.7427 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml -2023-03-14 17:21:38.7439 Info Copied hqmusic.yml -2023-03-14 17:21:38.7439 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml -2023-03-14 17:21:38.7439 Info Copied huntorrent.yml -2023-03-14 17:21:38.7446 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml -2023-03-14 17:21:38.7446 Info Copied icc2022.yml -2023-03-14 17:21:38.7446 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml -2023-03-14 17:21:38.7457 Info Copied idope.yml -2023-03-14 17:21:38.7457 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml -2023-03-14 17:21:38.7457 Info Copied ihdbits.yml -2023-03-14 17:21:38.7457 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml -2023-03-14 17:21:38.7469 Info Copied ilcorsaroblu.yml -2023-03-14 17:21:38.7469 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml -2023-03-14 17:21:38.7469 Info Copied ilcorsaronero.yml -2023-03-14 17:21:38.7477 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml -2023-03-14 17:21:38.7477 Info Copied immortuos.yml -2023-03-14 17:21:38.7477 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml -2023-03-14 17:21:38.7487 Info Copied indietorrents.yml -2023-03-14 17:21:38.7487 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml -2023-03-14 17:21:38.7487 Info Copied insanetracker.yml -2023-03-14 17:21:38.7487 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml -2023-03-14 17:21:38.7499 Info Copied internetarchive.yml -2023-03-14 17:21:38.7499 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml -2023-03-14 17:21:38.7499 Info Copied isohunt2.yml -2023-03-14 17:21:38.7507 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml -2023-03-14 17:21:38.7507 Info Copied itorrent.yml -2023-03-14 17:21:38.7507 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml -2023-03-14 17:21:38.7517 Info Copied jav-torrent.yml -2023-03-14 17:21:38.7517 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml -2023-03-14 17:21:38.7517 Info Copied jme-reunit3d-api.yml -2023-03-14 17:21:38.7517 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml -2023-03-14 17:21:38.7528 Info Copied joyhd.yml -2023-03-14 17:21:38.7563 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml -2023-03-14 17:21:38.7568 Info Copied jpopsuki.yml -2023-03-14 17:21:38.7568 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml -2023-03-14 17:21:38.7568 Info Copied jptv.yml -2023-03-14 17:21:38.7576 Info Attempting to copy kamept.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/kamept.yml to destination: /app/Jackett/Definitions/kamept.yml -2023-03-14 17:21:38.7576 Info Copied kamept.yml -2023-03-14 17:21:38.7576 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml -2023-03-14 17:21:38.7588 Info Copied karagarga.yml -2023-03-14 17:21:38.7588 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml -2023-03-14 17:21:38.7588 Info Copied keepfriends.yml -2023-03-14 17:21:38.7597 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml -2023-03-14 17:21:38.7597 Info Copied kickasstorrents-to.yml -2023-03-14 17:21:38.7597 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml -2023-03-14 17:21:38.7609 Info Copied kickasstorrents-ws.yml -2023-03-14 17:21:38.7609 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml -2023-03-14 17:21:38.7609 Info Copied kinorun.yml -2023-03-14 17:21:38.7618 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml -2023-03-14 17:21:38.7618 Info Copied kinozal.yml -2023-03-14 17:21:38.7618 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml -2023-03-14 17:21:38.7629 Info Copied knaben.yml -2023-03-14 17:21:38.7629 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml -2023-03-14 17:21:38.7629 Info Copied korsar.yml -2023-03-14 17:21:38.7638 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml -2023-03-14 17:21:38.7638 Info Copied krazyzone.yml -2023-03-14 17:21:38.7638 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml -2023-03-14 17:21:38.7649 Info Copied kufirc.yml -2023-03-14 17:21:38.7649 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml -2023-03-14 17:21:38.7649 Info Copied lastfiles.yml -2023-03-14 17:21:38.7657 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml -2023-03-14 17:21:38.7657 Info Copied lat-team-api.yml -2023-03-14 17:21:38.7657 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml -2023-03-14 17:21:38.7669 Info Copied learnbits.yml -2023-03-14 17:21:38.7669 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml -2023-03-14 17:21:38.7669 Info Copied learnflakes.yml -2023-03-14 17:21:38.7678 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml -2023-03-14 17:21:38.7678 Info Copied leech24.yml -2023-03-14 17:21:38.7678 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml -2023-03-14 17:21:38.7688 Info Copied lemonhd.yml -2023-03-14 17:21:38.7688 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml -2023-03-14 17:21:38.7688 Info Copied lepornoinfo.yml -2023-03-14 17:21:38.7688 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml -2023-03-14 17:21:38.7700 Info Copied les-cinephiles.yml -2023-03-14 17:21:38.7700 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml -2023-03-14 17:21:38.7700 Info Copied lesaloon.yml -2023-03-14 17:21:38.7708 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml -2023-03-14 17:21:38.7708 Info Copied libranet.yml -2023-03-14 17:21:38.7708 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml -2023-03-14 17:21:38.7718 Info Copied limetorrents.yml -2023-03-14 17:21:38.7718 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml -2023-03-14 17:21:38.7718 Info Copied limetorrentsclone.yml -2023-03-14 17:21:38.7718 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml -2023-03-14 17:21:38.7731 Info Copied linkomanija.yml -2023-03-14 17:21:38.7731 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml -2023-03-14 17:21:38.7737 Info Copied linuxtracker.yml -2023-03-14 17:21:38.7737 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml -2023-03-14 17:21:38.7737 Info Copied locadora.yml -2023-03-14 17:21:38.7737 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml -2023-03-14 17:21:38.7749 Info Copied losslessclub.yml -2023-03-14 17:21:38.7749 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml -2023-03-14 17:21:38.7749 Info Copied lst.yml -2023-03-14 17:21:38.7757 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml -2023-03-14 17:21:38.7757 Info Copied mactorrentsdownload.yml -2023-03-14 17:21:38.7757 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml -2023-03-14 17:21:38.7767 Info Copied madsrevolution.yml -2023-03-14 17:21:38.7767 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml -2023-03-14 17:21:38.7767 Info Copied magicheaven.yml -2023-03-14 17:21:38.7767 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml -2023-03-14 17:21:38.7779 Info Copied magico.yml -2023-03-14 17:21:38.7779 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml -2023-03-14 17:21:38.7779 Info Copied majomparade.yml -2023-03-14 17:21:38.7788 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml -2023-03-14 17:21:38.7788 Info Copied marinetracker.yml -2023-03-14 17:21:38.7788 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml -2023-03-14 17:21:38.7798 Info Copied mazepa.yml -2023-03-14 17:21:38.7798 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml -2023-03-14 17:21:38.7798 Info Copied megamixtracker.yml -2023-03-14 17:21:38.7798 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml -2023-03-14 17:21:38.7810 Info Copied megapeer.yml -2023-03-14 17:21:38.7810 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml -2023-03-14 17:21:38.7810 Info Copied mesevilag.yml -2023-03-14 17:21:38.7817 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml -2023-03-14 17:21:38.7817 Info Copied metaltracker.yml -2023-03-14 17:21:38.7817 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml -2023-03-14 17:21:38.7827 Info Copied mikan.yml -2023-03-14 17:21:38.7827 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml -2023-03-14 17:21:38.7827 Info Copied milkie.yml -2023-03-14 17:21:38.7827 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml -2023-03-14 17:21:38.7839 Info Copied miobt.yml -2023-03-14 17:21:38.7839 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml -2023-03-14 17:21:38.7839 Info Copied mircrew.yml -2023-03-14 17:21:38.7847 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml -2023-03-14 17:21:38.7847 Info Copied mixtapetorrent.yml -2023-03-14 17:21:38.7847 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml -2023-03-14 17:21:38.7857 Info Copied mma-torrents.yml -2023-03-14 17:21:38.7857 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml -2023-03-14 17:21:38.7857 Info Copied mnv.yml -2023-03-14 17:21:38.7857 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml -2023-03-14 17:21:38.7869 Info Copied mojblink.yml -2023-03-14 17:21:38.7869 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml -2023-03-14 17:21:38.7869 Info Copied mousebits.yml -2023-03-14 17:21:38.7877 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml -2023-03-14 17:21:38.7877 Info Copied moviesdvdr.yml -2023-03-14 17:21:38.7877 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml -2023-03-14 17:21:38.7887 Info Copied moviesite.yml -2023-03-14 17:21:38.7887 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml -2023-03-14 17:21:38.7887 Info Copied movietorrent.yml -2023-03-14 17:21:38.7887 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml -2023-03-14 17:21:38.7898 Info Copied movietorrentz.yml -2023-03-14 17:21:38.7898 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml -2023-03-14 17:21:38.7898 Info Copied mteamtp.yml -2023-03-14 17:21:38.7898 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml -2023-03-14 17:21:38.7910 Info Copied mteamtp2fa.yml -2023-03-14 17:21:38.7910 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml -2023-03-14 17:21:38.7917 Info Copied muziekfabriek.yml -2023-03-14 17:21:38.7917 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml -2023-03-14 17:21:38.7917 Info Copied mvgroupforum.yml -2023-03-14 17:21:38.7917 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml -2023-03-14 17:21:38.7929 Info Copied mvgroupmain.yml -2023-03-14 17:21:38.7929 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml -2023-03-14 17:21:38.7929 Info Copied mypornclub.yml -2023-03-14 17:21:38.7937 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml -2023-03-14 17:21:38.7937 Info Copied myspleen.yml -2023-03-14 17:21:38.7937 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml -2023-03-14 17:21:38.7947 Info Copied nethd.yml -2023-03-14 17:21:38.7947 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml -2023-03-14 17:21:38.7947 Info Copied newretro.yml -2023-03-14 17:21:38.7947 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml -2023-03-14 17:21:38.7959 Info Copied newstudio.yml -2023-03-14 17:21:38.7959 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml -2023-03-14 17:21:38.7959 Info Copied newstudiol.yml -2023-03-14 17:21:38.7966 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml -2023-03-14 17:21:38.7966 Info Copied nicept.yml -2023-03-14 17:21:38.7966 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml -2023-03-14 17:21:38.7977 Info Copied nipponsei.yml -2023-03-14 17:21:38.7977 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml -2023-03-14 17:21:38.7977 Info Copied nntt.yml -2023-03-14 17:21:38.7977 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml -2023-03-14 17:21:38.7990 Info Copied noname-club.yml -2023-03-14 17:21:38.7990 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml -2023-03-14 17:21:38.7996 Info Copied noname-clubl.yml -2023-03-14 17:21:38.7996 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml -2023-03-14 17:21:38.7996 Info Copied nyaasi.yml -2023-03-14 17:21:38.7996 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml -2023-03-14 17:21:38.8009 Info Copied oldtoonsworld.yml -2023-03-14 17:21:38.8009 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml -2023-03-14 17:21:38.8009 Info Copied onejav.yml -2023-03-14 17:21:38.8017 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml -2023-03-14 17:21:38.8017 Info Copied opencd.yml -2023-03-14 17:21:38.8017 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml -2023-03-14 17:21:38.8027 Info Copied oshenpt.yml -2023-03-14 17:21:38.8027 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml -2023-03-14 17:21:38.8027 Info Copied ourbits.yml -2023-03-14 17:21:38.8027 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml -2023-03-14 17:21:38.8039 Info Copied p2pbg.yml -2023-03-14 17:21:38.8039 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml -2023-03-14 17:21:38.8039 Info Copied parnuxi.yml -2023-03-14 17:21:38.8047 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml -2023-03-14 17:21:38.8047 Info Copied partis.yml -2023-03-14 17:21:38.8047 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml -2023-03-14 17:21:38.8057 Info Copied pctorrent.yml -2023-03-14 17:21:38.8057 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml -2023-03-14 17:21:38.8057 Info Copied peeratiko.yml -2023-03-14 17:21:38.8100 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml -2023-03-14 17:21:38.8100 Info Copied peersfm.yml -2023-03-14 17:21:38.8100 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml -2023-03-14 17:21:38.8110 Info Copied pier720.yml -2023-03-14 17:21:38.8110 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml -2023-03-14 17:21:38.8110 Info Copied pignetwork.yml -2023-03-14 17:21:38.8117 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml -2023-03-14 17:21:38.8117 Info Copied piratbit.yml -2023-03-14 17:21:38.8117 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml -2023-03-14 17:21:38.8128 Info Copied piratbitl.yml -2023-03-14 17:21:38.8128 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml -2023-03-14 17:21:38.8128 Info Copied pixelcove.yml -2023-03-14 17:21:38.8128 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml -2023-03-14 17:21:38.8139 Info Copied pixelcove2fa.yml -2023-03-14 17:21:38.8139 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml -2023-03-14 17:21:38.8139 Info Copied polishsource.yml -2023-03-14 17:21:38.8139 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml -2023-03-14 17:21:38.8150 Info Copied polishtracker-api.yml -2023-03-14 17:21:38.8150 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml -2023-03-14 17:21:38.8150 Info Copied pornbay.yml -2023-03-14 17:21:38.8157 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml -2023-03-14 17:21:38.8730 Info Copied pornoslab.yml -2023-03-14 17:21:38.8730 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml -2023-03-14 17:21:38.8737 Info Copied pornotorrent.yml -2023-03-14 17:21:38.8737 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml -2023-03-14 17:21:38.8737 Info Copied portugas-api.yml -2023-03-14 17:21:38.8737 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml -2023-03-14 17:21:38.8748 Info Copied potuk.yml -2023-03-14 17:21:38.8748 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml -2023-03-14 17:21:38.8748 Info Copied proaudiotorrents.yml -2023-03-14 17:21:38.8748 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml -2023-03-14 17:21:38.8759 Info Copied proporno.yml -2023-03-14 17:21:38.8759 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml -2023-03-14 17:21:38.8759 Info Copied ptchina.yml -2023-03-14 17:21:38.8759 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml -2023-03-14 17:21:38.8770 Info Copied pterclub.yml -2023-03-14 17:21:38.8770 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml -2023-03-14 17:21:38.8770 Info Copied ptfiles.yml -2023-03-14 17:21:38.8777 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml -2023-03-14 17:21:38.8777 Info Copied pthome.yml -2023-03-14 17:21:38.8777 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml -2023-03-14 17:21:38.8777 Info Copied ptmsg.yml -2023-03-14 17:21:38.8788 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml -2023-03-14 17:21:38.8788 Info Copied ptsbao.yml -2023-03-14 17:21:38.8788 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml -2023-03-14 17:21:38.8798 Info Copied pttime.yml -2023-03-14 17:21:38.8798 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml -2023-03-14 17:21:38.8798 Info Copied punkshorror.yml -2023-03-14 17:21:38.8798 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml -2023-03-14 17:21:38.8808 Info Copied puntotorrent.yml -2023-03-14 17:21:38.8808 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml -2023-03-14 17:21:38.8808 Info Copied pussytorrents.yml -2023-03-14 17:21:38.8808 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml -2023-03-14 17:21:38.8819 Info Copied putao.yml -2023-03-14 17:21:38.8819 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml -2023-03-14 17:21:38.8819 Info Copied puurhollands.yml -2023-03-14 17:21:38.8819 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml -2023-03-14 17:21:38.8830 Info Copied pwtorrents.yml -2023-03-14 17:21:38.8830 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml -2023-03-14 17:21:38.8830 Info Copied r3vwtf.yml -2023-03-14 17:21:38.8837 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml -2023-03-14 17:21:38.8837 Info Copied racing4everyone-api.yml -2023-03-14 17:21:38.8837 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml -2023-03-14 17:21:38.8837 Info Copied racingforme.yml -2023-03-14 17:21:38.8848 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml -2023-03-14 17:21:38.8848 Info Copied rainbowtracker.yml -2023-03-14 17:21:38.8848 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml -2023-03-14 17:21:38.8857 Info Copied rapidzona.yml -2023-03-14 17:21:38.8857 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml -2023-03-14 17:21:38.8857 Info Copied redbits-api.yml -2023-03-14 17:21:38.8857 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml -2023-03-14 17:21:38.8867 Info Copied redstartorrent.yml -2023-03-14 17:21:38.8867 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml -2023-03-14 17:21:38.8867 Info Copied reelflix-api.yml -2023-03-14 17:21:38.8867 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml -2023-03-14 17:21:38.8877 Info Copied resurrectthenet.yml -2023-03-14 17:21:38.8877 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml -2023-03-14 17:21:38.8877 Info Copied rgfootball.yml -2023-03-14 17:21:38.8877 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml -2023-03-14 17:21:38.8888 Info Copied rintor.yml -2023-03-14 17:21:38.8888 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml -2023-03-14 17:21:38.8888 Info Copied rintornet.yml -2023-03-14 17:21:38.8888 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml -2023-03-14 17:21:38.8900 Info Copied riperam.yml -2023-03-14 17:21:38.8900 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml -2023-03-14 17:21:38.8900 Info Copied rockbox.yml -2023-03-14 17:21:38.8906 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml -2023-03-14 17:21:38.8906 Info Copied romanianmetaltorrents.yml -2023-03-14 17:21:38.8906 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml -2023-03-14 17:21:38.8906 Info Copied rptorrents.yml -2023-03-14 17:21:38.8917 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml -2023-03-14 17:21:38.8917 Info Copied rudub.yml -2023-03-14 17:21:38.8917 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml -2023-03-14 17:21:38.8927 Info Copied rus-media.yml -2023-03-14 17:21:38.8927 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml -2023-03-14 17:21:38.8967 Info Copied rustorka.yml -2023-03-14 17:21:38.8967 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml -2023-03-14 17:21:38.8967 Info Copied rutor.yml -2023-03-14 17:21:38.8967 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml -2023-03-14 17:21:38.8979 Info Copied rutracker-ru.yml -2023-03-14 17:21:38.8979 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml -2023-03-14 17:21:38.8979 Info Copied satclubbing.yml -2023-03-14 17:21:38.8986 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml -2023-03-14 17:21:38.8986 Info Copied scenerush.yml -2023-03-14 17:21:38.8986 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml -2023-03-14 17:21:38.8986 Info Copied sdbits.yml -2023-03-14 17:21:38.8997 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml -2023-03-14 17:21:38.8997 Info Copied seedfile.yml -2023-03-14 17:21:38.8997 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml -2023-03-14 17:21:38.9007 Info Copied seedoff.yml -2023-03-14 17:21:38.9007 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml -2023-03-14 17:21:38.9007 Info Copied selezen.yml -2023-03-14 17:21:38.9007 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml -2023-03-14 17:21:38.9017 Info Copied sexypics.yml -2023-03-14 17:21:38.9017 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml -2023-03-14 17:21:38.9017 Info Copied shanaproject.yml -2023-03-14 17:21:38.9017 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml -2023-03-14 17:21:38.9029 Info Copied shareisland-api.yml -2023-03-14 17:21:38.9029 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml -2023-03-14 17:21:38.9029 Info Copied sharewood.yml -2023-03-14 17:21:38.9029 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml -2023-03-14 17:21:38.9039 Info Copied sharkpt.yml -2023-03-14 17:21:38.9039 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml -2023-03-14 17:21:38.9039 Info Copied showrss.yml -2023-03-14 17:21:38.9046 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml -2023-03-14 17:21:38.9046 Info Copied siambit.yml -2023-03-14 17:21:38.9046 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml -2023-03-14 17:21:38.9046 Info Copied skipthecommercials-api.yml -2023-03-14 17:21:38.9058 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml -2023-03-14 17:21:38.9058 Info Copied skipthetrailers.yml -2023-03-14 17:21:38.9058 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml -2023-03-14 17:21:38.9068 Info Copied sktorrent-org.yml -2023-03-14 17:21:38.9068 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml -2023-03-14 17:21:38.9068 Info Copied sktorrent.yml -2023-03-14 17:21:38.9068 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml -2023-03-14 17:21:38.9078 Info Copied slosoul.yml -2023-03-14 17:21:38.9078 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml -2023-03-14 17:21:38.9078 Info Copied snowpt.yml -2023-03-14 17:21:38.9078 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml -2023-03-14 17:21:38.9089 Info Copied solidtorrents.yml -2023-03-14 17:21:38.9089 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml -2023-03-14 17:21:38.9089 Info Copied sosulki.yml -2023-03-14 17:21:38.9089 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml -2023-03-14 17:21:38.9099 Info Copied soulvoice.yml -2023-03-14 17:21:38.9099 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml -2023-03-14 17:21:38.9099 Info Copied speedmasterhd.yml -2023-03-14 17:21:38.9099 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml -2023-03-14 17:21:38.9110 Info Copied speedtorrentreloaded.yml -2023-03-14 17:21:38.9110 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml -2023-03-14 17:21:38.9110 Info Copied spidertk.yml -2023-03-14 17:21:38.9117 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml -2023-03-14 17:21:38.9117 Info Copied spiritofrevolution.yml -2023-03-14 17:21:38.9117 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml -2023-03-14 17:21:38.9126 Info Copied sporthd.yml -2023-03-14 17:21:38.9126 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml -2023-03-14 17:21:38.9126 Info Copied sportscult.yml -2023-03-14 17:21:38.9126 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml -2023-03-14 17:21:38.9137 Info Copied springsunday.yml -2023-03-14 17:21:38.9137 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml -2023-03-14 17:21:38.9137 Info Copied sugoimusic.yml -2023-03-14 17:21:38.9137 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml -2023-03-14 17:21:38.9148 Info Copied sukebeinyaasi.yml -2023-03-14 17:21:38.9148 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml -2023-03-14 17:21:38.9148 Info Copied superbits.yml -2023-03-14 17:21:38.9148 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml -2023-03-14 17:21:38.9159 Info Copied swarmazon-api.yml -2023-03-14 17:21:38.9159 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml -2023-03-14 17:21:38.9159 Info Copied tapochek.yml -2023-03-14 17:21:38.9159 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml -2023-03-14 17:21:38.9170 Info Copied tasmanit.yml -2023-03-14 17:21:38.9170 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml -2023-03-14 17:21:38.9170 Info Copied teamctgame.yml -2023-03-14 17:21:38.9177 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml -2023-03-14 17:21:38.9177 Info Copied teamhd.yml -2023-03-14 17:21:38.9177 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml -2023-03-14 17:21:38.9187 Info Copied teamos.yml -2023-03-14 17:21:38.9187 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml -2023-03-14 17:21:38.9187 Info Copied tekno3d.yml -2023-03-14 17:21:38.9187 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml -2023-03-14 17:21:38.9197 Info Copied tellytorrent-api.yml -2023-03-14 17:21:38.9197 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml -2023-03-14 17:21:38.9197 Info Copied teracod.yml -2023-03-14 17:21:38.9197 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml -2023-03-14 17:21:38.9208 Info Copied the-crazy-ones.yml -2023-03-14 17:21:38.9208 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml -2023-03-14 17:21:38.9208 Info Copied thedarkcommunity-api.yml -2023-03-14 17:21:38.9208 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml -2023-03-14 17:21:38.9219 Info Copied theempire.yml -2023-03-14 17:21:38.9219 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml -2023-03-14 17:21:38.9219 Info Copied thefallingangels.yml -2023-03-14 17:21:38.9219 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml -2023-03-14 17:21:38.9230 Info Copied thegeeks.yml -2023-03-14 17:21:38.9230 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml -2023-03-14 17:21:38.9230 Info Copied theleachzone.yml -2023-03-14 17:21:38.9237 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml -2023-03-14 17:21:38.9237 Info Copied themixingbowl.yml -2023-03-14 17:21:38.9237 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml -2023-03-14 17:21:38.9237 Info Copied thenewfun.yml -2023-03-14 17:21:38.9248 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml -2023-03-14 17:21:38.9248 Info Copied theoccult.yml -2023-03-14 17:21:38.9248 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml -2023-03-14 17:21:38.9257 Info Copied theoldschool-api.yml -2023-03-14 17:21:38.9257 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml -2023-03-14 17:21:38.9257 Info Copied thepiratebay.yml -2023-03-14 17:21:38.9257 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml -2023-03-14 17:21:38.9267 Info Copied theplace.yml -2023-03-14 17:21:38.9267 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml -2023-03-14 17:21:38.9267 Info Copied thesceneplace.yml -2023-03-14 17:21:38.9267 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml -2023-03-14 17:21:38.9278 Info Copied theshinning-api.yml -2023-03-14 17:21:38.9278 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml -2023-03-14 17:21:38.9278 Info Copied theshow.yml -2023-03-14 17:21:38.9278 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml -2023-03-14 17:21:38.9288 Info Copied thevault.yml -2023-03-14 17:21:38.9288 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml -2023-03-14 17:21:38.9288 Info Copied tjupt.yml -2023-03-14 17:21:38.9288 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml -2023-03-14 17:21:38.9299 Info Copied tlfbits.yml -2023-03-14 17:21:38.9299 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml -2023-03-14 17:21:38.9299 Info Copied tmghub.yml -2023-03-14 17:21:38.9299 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml -2023-03-14 17:21:38.9310 Info Copied tokyotosho.yml -2023-03-14 17:21:38.9310 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml -2023-03-14 17:21:38.9310 Info Copied torlock.yml -2023-03-14 17:21:38.9317 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml -2023-03-14 17:21:38.9317 Info Copied tornado.yml -2023-03-14 17:21:38.9317 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml -2023-03-14 17:21:38.9317 Info Copied torrent-explosiv.yml -2023-03-14 17:21:38.9327 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml -2023-03-14 17:21:38.9327 Info Copied torrent-pirat.yml -2023-03-14 17:21:38.9327 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml -2023-03-14 17:21:38.9337 Info Copied torrent-turk.yml -2023-03-14 17:21:38.9337 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml -2023-03-14 17:21:38.9337 Info Copied torrent9.yml -2023-03-14 17:21:38.9337 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml -2023-03-14 17:21:38.9347 Info Copied torrent911.yml -2023-03-14 17:21:38.9347 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml -2023-03-14 17:21:38.9347 Info Copied torrent9clone.yml -2023-03-14 17:21:38.9347 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml -2023-03-14 17:21:38.9358 Info Copied torrentbd.yml -2023-03-14 17:21:38.9358 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml -2023-03-14 17:21:38.9358 Info Copied torrentby.yml -2023-03-14 17:21:38.9358 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml -2023-03-14 17:21:38.9369 Info Copied torrentccf.yml -2023-03-14 17:21:38.9369 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml -2023-03-14 17:21:38.9369 Info Copied torrentcore.yml -2023-03-14 17:21:38.9369 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml -2023-03-14 17:21:38.9379 Info Copied torrentdownload.yml -2023-03-14 17:21:38.9379 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml -2023-03-14 17:21:38.9379 Info Copied torrentdownloads.yml -2023-03-14 17:21:38.9386 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml -2023-03-14 17:21:38.9386 Info Copied torrentfunk.yml -2023-03-14 17:21:38.9386 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml -2023-03-14 17:21:38.9386 Info Copied torrentgalaxy.yml -2023-03-14 17:21:38.9397 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml -2023-03-14 17:21:38.9397 Info Copied torrenthr.yml -2023-03-14 17:21:38.9397 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml -2023-03-14 17:21:38.9397 Info Copied torrenting.yml -2023-03-14 17:21:38.9407 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml -2023-03-14 17:21:38.9407 Info Copied torrentkitty.yml -2023-03-14 17:21:38.9407 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml -2023-03-14 17:21:38.9407 Info Copied torrentland.yml -2023-03-14 17:21:38.9418 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml -2023-03-14 17:21:38.9418 Info Copied torrentleech-pl.yml -2023-03-14 17:21:38.9418 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml -2023-03-14 17:21:38.9434 Info Copied torrentleech.yml -2023-03-14 17:21:38.9434 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml -2023-03-14 17:21:38.9440 Info Copied torrentlt.yml -2023-03-14 17:21:38.9440 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml -2023-03-14 17:21:38.9440 Info Copied torrentmasters.yml -2023-03-14 17:21:38.9448 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml -2023-03-14 17:21:38.9448 Info Copied torrentoyunindir.yml -2023-03-14 17:21:38.9448 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml -2023-03-14 17:21:38.9457 Info Copied torrentproject2.yml -2023-03-14 17:21:38.9457 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml -2023-03-14 17:21:38.9457 Info Copied torrentqq.yml -2023-03-14 17:21:38.9457 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml -2023-03-14 17:21:38.9468 Info Copied torrentsectorcrew.yml -2023-03-14 17:21:38.9468 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml -2023-03-14 17:21:38.9468 Info Copied torrentseeds-api.yml -2023-03-14 17:21:38.9468 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml -2023-03-14 17:21:38.9479 Info Copied torrentsir.yml -2023-03-14 17:21:38.9479 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml -2023-03-14 17:21:38.9479 Info Copied torrentslocal.yml -2023-03-14 17:21:38.9487 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml -2023-03-14 17:21:38.9487 Info Copied torrentv.yml -2023-03-14 17:21:38.9487 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml -2023-03-14 17:21:38.9487 Info Copied torrentview.yml -2023-03-14 17:21:38.9497 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml -2023-03-14 17:21:38.9497 Info Copied torrentwhiz.yml -2023-03-14 17:21:38.9497 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml -2023-03-14 17:21:38.9506 Info Copied torrentz2eu.yml -2023-03-14 17:21:38.9506 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml -2023-03-14 17:21:38.9506 Info Copied torrentz2nz.yml -2023-03-14 17:21:38.9506 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml -2023-03-14 17:21:38.9517 Info Copied totallykids.yml -2023-03-14 17:21:38.9517 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml -2023-03-14 17:21:38.9517 Info Copied totheglory.yml -2023-03-14 17:21:38.9517 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml -2023-03-14 17:21:38.9528 Info Copied totheglorycookie.yml -2023-03-14 17:21:38.9528 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml -2023-03-14 17:21:38.9528 Info Copied traht.yml -2023-03-14 17:21:38.9528 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml -2023-03-14 17:21:38.9539 Info Copied trancetraffic.yml -2023-03-14 17:21:38.9539 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml -2023-03-14 17:21:38.9539 Info Copied trezzor.yml -2023-03-14 17:21:38.9539 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml -2023-03-14 17:21:38.9549 Info Copied tribalmixes.yml -2023-03-14 17:21:38.9549 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml -2023-03-14 17:21:38.9549 Info Copied trupornolabs.yml -2023-03-14 17:21:38.9549 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml -2023-03-14 17:21:38.9560 Info Copied turkseed.yml -2023-03-14 17:21:38.9560 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml -2023-03-14 17:21:38.9560 Info Copied turktorrent.yml -2023-03-14 17:21:38.9567 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml -2023-03-14 17:21:38.9567 Info Copied tvchaosuk.yml -2023-03-14 17:21:38.9567 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml -2023-03-14 17:21:38.9567 Info Copied tvroad.yml -2023-03-14 17:21:38.9577 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml -2023-03-14 17:21:38.9577 Info Copied twilight.yml -2023-03-14 17:21:38.9577 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml -2023-03-14 17:21:38.9587 Info Copied u2.yml -2023-03-14 17:21:38.9587 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml -2023-03-14 17:21:38.9587 Info Copied uhdbits.yml -2023-03-14 17:21:38.9587 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml -2023-03-14 17:21:38.9597 Info Copied uniondht.yml -2023-03-14 17:21:38.9597 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml -2023-03-14 17:21:38.9597 Info Copied unionfansub.yml -2023-03-14 17:21:38.9597 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml -2023-03-14 17:21:38.9608 Info Copied uniongang.yml -2023-03-14 17:21:38.9608 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml -2023-03-14 17:21:38.9608 Info Copied unleashthecartoons.yml -2023-03-14 17:21:38.9608 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml -2023-03-14 17:21:38.9619 Info Copied unlimitz.yml -2023-03-14 17:21:38.9619 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml -2023-03-14 17:21:38.9619 Info Copied vsthouse.yml -2023-03-14 17:21:38.9619 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml -2023-03-14 17:21:38.9629 Info Copied vsttorrents.yml -2023-03-14 17:21:38.9629 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml -2023-03-14 17:21:38.9629 Info Copied vtorrent.yml -2023-03-14 17:21:38.9629 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml -2023-03-14 17:21:38.9639 Info Copied whiteangel.yml -2023-03-14 17:21:38.9639 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml -2023-03-14 17:21:38.9863 Info Copied wihd.yml -2023-03-14 17:21:38.9863 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml -2023-03-14 17:21:38.9871 Info Copied world-of-tomorrow.yml -2023-03-14 17:21:38.9871 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml -2023-03-14 17:21:38.9871 Info Copied x-ite.me.yml -2023-03-14 17:21:38.9878 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml -2023-03-14 17:21:38.9878 Info Copied xbytes2.yml -2023-03-14 17:21:38.9878 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml -2023-03-14 17:21:38.9888 Info Copied xthor-api.yml -2023-03-14 17:21:38.9888 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml -2023-03-14 17:21:38.9888 Info Copied xtorrenty.yml -2023-03-14 17:21:38.9888 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml -2023-03-14 17:21:38.9900 Info Copied xtremebytes.yml -2023-03-14 17:21:38.9900 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml -2023-03-14 17:21:38.9900 Info Copied xwtclassics.yml -2023-03-14 17:21:38.9907 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml -2023-03-14 17:21:38.9907 Info Copied xwtorrents.yml -2023-03-14 17:21:38.9907 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml -2023-03-14 17:21:38.9907 Info Copied xxxadulttorrent.yml -2023-03-14 17:21:38.9918 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml -2023-03-14 17:21:38.9918 Info Copied xxxtor.yml -2023-03-14 17:21:38.9918 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml -2023-03-14 17:21:38.9927 Info Copied xxxtorrents.yml -2023-03-14 17:21:38.9927 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml -2023-03-14 17:21:38.9927 Info Copied ydypt.yml -2023-03-14 17:21:38.9927 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml -2023-03-14 17:21:38.9939 Info Copied yggcookie.yml -2023-03-14 17:21:38.9939 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml -2023-03-14 17:21:38.9939 Info Copied yggtorrent.yml -2023-03-14 17:21:38.9939 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml -2023-03-14 17:21:38.9950 Info Copied yourbittorrent.yml -2023-03-14 17:21:38.9950 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml -2023-03-14 17:21:38.9950 Info Copied yts.yml -2023-03-14 17:21:38.9956 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml -2023-03-14 17:21:38.9956 Info Copied zamundanet.yml -2023-03-14 17:21:38.9956 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml -2023-03-14 17:21:38.9956 Info Copied zelkaorg.yml -2023-03-14 17:21:38.9967 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml -2023-03-14 17:21:38.9967 Info Copied zetorrents.yml -2023-03-14 17:21:38.9967 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml -2023-03-14 17:21:38.9967 Info Copied zmpt.yml -2023-03-14 17:21:38.9978 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml -2023-03-14 17:21:38.9978 Info Copied zomb.yml -2023-03-14 17:21:38.9978 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml -2023-03-14 17:21:38.9987 Info Copied ztracker.yml -2023-03-14 17:21:38.9987 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll -2023-03-14 17:21:38.9987 Info Copied FlareSolverrSharp.dll -2023-03-14 17:21:38.9987 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll -2023-03-14 17:21:39.0002 Info Copied ICSharpCode.SharpZipLib.dll -2023-03-14 17:21:39.0002 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh -2023-03-14 17:21:39.0007 Info Copied install_service_systemd.sh -2023-03-14 17:21:39.0007 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/jackett to destination: /app/Jackett/jackett -2023-03-14 17:21:39.0007 Info Copied jackett -2023-03-14 17:21:39.0016 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh -2023-03-14 17:21:39.0016 Info Copied jackett_launcher.sh -2023-03-14 17:21:39.0016 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll -2023-03-14 17:21:39.0047 Info Copied Jackett.Common.dll -2023-03-14 17:21:39.0047 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb -2023-03-14 17:21:39.0057 Info Copied Jackett.Common.pdb -2023-03-14 17:21:39.0057 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json -2023-03-14 17:21:39.0136 Info Copied jackett.deps.json -2023-03-14 17:21:39.0138 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll -2023-03-14 17:21:39.0149 Info Copied jackett.dll -2023-03-14 17:21:39.0149 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb -2023-03-14 17:21:39.0149 Info Copied jackett.pdb -2023-03-14 17:21:39.0158 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json -2023-03-14 17:21:39.0158 Info Copied jackett.runtimeconfig.json -2023-03-14 17:21:39.0158 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater -2023-03-14 17:21:39.0169 Info Copied JackettUpdater -2023-03-14 17:21:39.0169 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json -2023-03-14 17:21:39.0169 Info Copied JackettUpdater.deps.json -2023-03-14 17:21:39.0177 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll -2023-03-14 17:21:39.0194 Info Copied JackettUpdater.dll -2023-03-14 17:21:39.0194 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb -2023-03-14 17:21:39.0201 Info Copied JackettUpdater.pdb -2023-03-14 17:21:39.0201 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json -2023-03-14 17:21:39.0201 Info Copied JackettUpdater.runtimeconfig.json -2023-03-14 17:21:39.0208 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so -2023-03-14 17:21:39.0260 Info Copied libclrjit.so -2023-03-14 17:21:39.0260 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so -2023-03-14 17:21:39.0418 Info Copied libcoreclr.so -2023-03-14 17:21:39.0418 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so -2023-03-14 17:21:39.0449 Info Copied libcoreclrtraceptprovider.so -2023-03-14 17:21:39.0449 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so -2023-03-14 17:21:39.0467 Info Copied libdbgshim.so -2023-03-14 17:21:39.0467 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so -2023-03-14 17:21:39.0479 Info Copied libhostfxr.so -2023-03-14 17:21:39.0479 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so -2023-03-14 17:21:39.0490 Info Copied libhostpolicy.so -2023-03-14 17:21:39.0490 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so -2023-03-14 17:21:39.0498 Info Copied libMono.Unix.so -2023-03-14 17:21:39.0498 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so -2023-03-14 17:21:39.0563 Info Copied libmscordaccore.so -2023-03-14 17:21:39.0563 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so -2023-03-14 17:21:39.0605 Info Copied libmscordbi.so -2023-03-14 17:21:39.0608 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so -2023-03-14 17:21:39.1512 Info Copied libSystem.Globalization.Native.so -2023-03-14 17:21:39.1518 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so -2023-03-14 17:21:39.1579 Info Copied libSystem.IO.Compression.Native.so -2023-03-14 17:21:39.1579 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so -2023-03-14 17:21:39.1597 Info Copied libSystem.Native.so -2023-03-14 17:21:39.1597 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so -2023-03-14 17:21:39.1611 Info Copied libSystem.Net.Security.Native.so -2023-03-14 17:21:39.1617 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so -2023-03-14 17:21:39.1633 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so -2023-03-14 17:21:39.1638 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/LICENSE to destination: /app/Jackett/LICENSE -2023-03-14 17:21:39.1649 Info Copied LICENSE -2023-03-14 17:21:39.1649 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll -2023-03-14 17:21:39.1668 Info Copied Microsoft.AspNetCore.Antiforgery.dll -2023-03-14 17:21:39.1668 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-03-14 17:21:39.1684 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-03-14 17:21:39.1688 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll -2023-03-14 17:21:39.1703 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll -2023-03-14 17:21:39.1708 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll -2023-03-14 17:21:39.1722 Info Copied Microsoft.AspNetCore.Authentication.Core.dll -2023-03-14 17:21:39.1722 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll -2023-03-14 17:21:39.1742 Info Copied Microsoft.AspNetCore.Authentication.dll -2023-03-14 17:21:39.1742 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll -2023-03-14 17:21:39.1760 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll -2023-03-14 17:21:39.1760 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll -2023-03-14 17:21:39.1779 Info Copied Microsoft.AspNetCore.Authorization.dll -2023-03-14 17:21:39.1779 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll -2023-03-14 17:21:39.1795 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll -2023-03-14 17:21:39.1799 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll -2023-03-14 17:21:39.1810 Info Copied Microsoft.AspNetCore.Components.Authorization.dll -2023-03-14 17:21:39.1810 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll -2023-03-14 17:21:39.1858 Info Copied Microsoft.AspNetCore.Components.dll -2023-03-14 17:21:39.1858 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll -2023-03-14 17:21:39.1875 Info Copied Microsoft.AspNetCore.Components.Forms.dll -2023-03-14 17:21:39.1879 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll -2023-03-14 17:21:39.2176 Info Copied Microsoft.AspNetCore.Components.Server.dll -2023-03-14 17:21:39.2181 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll -2023-03-14 17:21:39.2203 Info Copied Microsoft.AspNetCore.Components.Web.dll -2023-03-14 17:21:39.2208 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll -2023-03-14 17:21:39.2223 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll -2023-03-14 17:21:39.2228 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll -2023-03-14 17:21:39.2241 Info Copied Microsoft.AspNetCore.CookiePolicy.dll -2023-03-14 17:21:39.2241 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll -2023-03-14 17:21:39.2261 Info Copied Microsoft.AspNetCore.Cors.dll -2023-03-14 17:21:39.2261 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll -2023-03-14 17:21:39.2280 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll -2023-03-14 17:21:39.2280 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-03-14 17:21:39.2296 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-03-14 17:21:39.2300 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-03-14 17:21:39.2313 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-03-14 17:21:39.2317 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll -2023-03-14 17:21:39.2345 Info Copied Microsoft.AspNetCore.DataProtection.dll -2023-03-14 17:21:39.2350 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-03-14 17:21:39.2361 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-03-14 17:21:39.2361 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-03-14 17:21:39.2379 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-03-14 17:21:39.2379 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll -2023-03-14 17:21:39.2410 Info Copied Microsoft.AspNetCore.Diagnostics.dll -2023-03-14 17:21:39.2410 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-03-14 17:21:39.2427 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-03-14 17:21:39.2427 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll -2023-03-14 17:21:39.2448 Info Copied Microsoft.AspNetCore.dll -2023-03-14 17:21:39.2448 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll -2023-03-14 17:21:39.2463 Info Copied Microsoft.AspNetCore.HostFiltering.dll -2023-03-14 17:21:39.2468 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-03-14 17:21:39.2480 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-03-14 17:21:39.2480 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll -2023-03-14 17:21:39.2511 Info Copied Microsoft.AspNetCore.Hosting.dll -2023-03-14 17:21:39.2511 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-03-14 17:21:39.2528 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-03-14 17:21:39.2528 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll -2023-03-14 17:21:39.2544 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll -2023-03-14 17:21:39.2548 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll -2023-03-14 17:21:39.2569 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll -2023-03-14 17:21:39.2569 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll -2023-03-14 17:21:39.2587 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll -2023-03-14 17:21:39.2587 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll -2023-03-14 17:21:39.2614 Info Copied Microsoft.AspNetCore.Http.Connections.dll -2023-03-14 17:21:39.2618 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll -2023-03-14 17:21:39.2641 Info Copied Microsoft.AspNetCore.Http.dll -2023-03-14 17:21:39.2641 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll -2023-03-14 17:21:39.2667 Info Copied Microsoft.AspNetCore.Http.Extensions.dll -2023-03-14 17:21:39.2667 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll -2023-03-14 17:21:39.2685 Info Copied Microsoft.AspNetCore.Http.Features.dll -2023-03-14 17:21:39.2689 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll -2023-03-14 17:21:39.2706 Info Copied Microsoft.AspNetCore.Http.Results.dll -2023-03-14 17:21:39.2710 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll -2023-03-14 17:21:39.2728 Info Copied Microsoft.AspNetCore.HttpLogging.dll -2023-03-14 17:21:39.2728 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll -2023-03-14 17:21:39.2744 Info Copied Microsoft.AspNetCore.HttpOverrides.dll -2023-03-14 17:21:39.2749 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll -2023-03-14 17:21:39.2761 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll -2023-03-14 17:21:39.2761 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll -2023-03-14 17:21:39.2784 Info Copied Microsoft.AspNetCore.Identity.dll -2023-03-14 17:21:39.2789 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll -2023-03-14 17:21:39.2802 Info Copied Microsoft.AspNetCore.JsonPatch.dll -2023-03-14 17:21:39.2802 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll -2023-03-14 17:21:39.2818 Info Copied Microsoft.AspNetCore.Localization.dll -2023-03-14 17:21:39.2818 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll -2023-03-14 17:21:39.2834 Info Copied Microsoft.AspNetCore.Localization.Routing.dll -2023-03-14 17:21:39.2839 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll -2023-03-14 17:21:39.2850 Info Copied Microsoft.AspNetCore.Metadata.dll -2023-03-14 17:21:39.2850 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-03-14 17:21:39.2875 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-03-14 17:21:39.2880 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-03-14 17:21:39.2897 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-03-14 17:21:39.2897 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll -2023-03-14 17:21:39.2989 Info Copied Microsoft.AspNetCore.Mvc.Core.dll -2023-03-14 17:21:39.2989 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll -2023-03-14 17:21:39.3007 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll -2023-03-14 17:21:39.3007 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-03-14 17:21:39.3029 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-03-14 17:21:39.3029 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll -2023-03-14 17:21:39.3045 Info Copied Microsoft.AspNetCore.Mvc.dll -2023-03-14 17:21:39.3050 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-03-14 17:21:39.3061 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-03-14 17:21:39.3061 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-03-14 17:21:39.3082 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-03-14 17:21:39.3082 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll -2023-03-14 17:21:39.3100 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll -2023-03-14 17:21:39.3100 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-03-14 17:21:39.3118 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-03-14 17:21:39.3118 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll -2023-03-14 17:21:39.3143 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll -2023-03-14 17:21:39.3147 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-03-14 17:21:39.3176 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-03-14 17:21:39.3180 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-03-14 17:21:39.3202 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-03-14 17:21:39.3207 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-03-14 17:21:39.3251 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-03-14 17:21:39.3251 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll -2023-03-14 17:21:39.3268 Info Copied Microsoft.AspNetCore.Razor.dll -2023-03-14 17:21:39.3268 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll -2023-03-14 17:21:39.3286 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll -2023-03-14 17:21:39.3290 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-03-14 17:21:39.3302 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-03-14 17:21:39.3307 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll -2023-03-14 17:21:39.3323 Info Copied Microsoft.AspNetCore.ResponseCaching.dll -2023-03-14 17:21:39.3328 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll -2023-03-14 17:21:39.3343 Info Copied Microsoft.AspNetCore.ResponseCompression.dll -2023-03-14 17:21:39.3348 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll -2023-03-14 17:21:39.3367 Info Copied Microsoft.AspNetCore.Rewrite.dll -2023-03-14 17:21:39.3367 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll -2023-03-14 17:21:39.3384 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll -2023-03-14 17:21:39.3389 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll -2023-03-14 17:21:39.3430 Info Copied Microsoft.AspNetCore.Routing.dll -2023-03-14 17:21:39.3430 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll -2023-03-14 17:21:39.3464 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll -2023-03-14 17:21:39.3469 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll -2023-03-14 17:21:39.3501 Info Copied Microsoft.AspNetCore.Server.IIS.dll -2023-03-14 17:21:39.3501 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll -2023-03-14 17:21:39.3518 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll -2023-03-14 17:21:39.3518 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-03-14 17:21:39.3630 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-03-14 17:21:39.3630 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll -2023-03-14 17:21:39.3647 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll -2023-03-14 17:21:39.3647 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-03-14 17:21:39.3682 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-03-14 17:21:39.3687 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-03-14 17:21:39.3704 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-03-14 17:21:39.3708 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll -2023-03-14 17:21:39.3722 Info Copied Microsoft.AspNetCore.Session.dll -2023-03-14 17:21:39.3722 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll -2023-03-14 17:21:39.3739 Info Copied Microsoft.AspNetCore.SignalR.Common.dll -2023-03-14 17:21:39.3739 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll -2023-03-14 17:21:39.3767 Info Copied Microsoft.AspNetCore.SignalR.Core.dll -2023-03-14 17:21:39.3767 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll -2023-03-14 17:21:39.3782 Info Copied Microsoft.AspNetCore.SignalR.dll -2023-03-14 17:21:39.3782 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-03-14 17:21:39.3799 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-03-14 17:21:39.3799 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll -2023-03-14 17:21:39.3820 Info Copied Microsoft.AspNetCore.StaticFiles.dll -2023-03-14 17:21:39.3820 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll -2023-03-14 17:21:39.3837 Info Copied Microsoft.AspNetCore.WebSockets.dll -2023-03-14 17:21:39.3837 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll -2023-03-14 17:21:39.3862 Info Copied Microsoft.AspNetCore.WebUtilities.dll -2023-03-14 17:21:39.3862 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll -2023-03-14 17:21:39.3910 Info Copied Microsoft.CSharp.dll -2023-03-14 17:21:39.3910 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll -2023-03-14 17:21:39.3925 Info Copied Microsoft.Extensions.Caching.Abstractions.dll -2023-03-14 17:21:39.3930 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll -2023-03-14 17:21:39.3943 Info Copied Microsoft.Extensions.Caching.Memory.dll -2023-03-14 17:21:39.3948 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll -2023-03-14 17:21:39.3960 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll -2023-03-14 17:21:39.3960 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll -2023-03-14 17:21:39.3977 Info Copied Microsoft.Extensions.Configuration.Binder.dll -2023-03-14 17:21:39.3977 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll -2023-03-14 17:21:39.3992 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll -2023-03-14 17:21:39.3992 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll -2023-03-14 17:21:39.4010 Info Copied Microsoft.Extensions.Configuration.dll -2023-03-14 17:21:39.4010 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-03-14 17:21:39.4025 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-03-14 17:21:39.4029 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll -2023-03-14 17:21:39.4041 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll -2023-03-14 17:21:39.4041 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll -2023-03-14 17:21:39.4057 Info Copied Microsoft.Extensions.Configuration.Ini.dll -2023-03-14 17:21:39.4057 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll -2023-03-14 17:21:39.4072 Info Copied Microsoft.Extensions.Configuration.Json.dll -2023-03-14 17:21:39.4072 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-03-14 17:21:39.4088 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-03-14 17:21:39.4088 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll -2023-03-14 17:21:39.4103 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll -2023-03-14 17:21:39.4107 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll -2023-03-14 17:21:39.4119 Info Copied Microsoft.Extensions.Configuration.Xml.dll -2023-03-14 17:21:39.4119 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-03-14 17:21:39.4138 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-03-14 17:21:39.4138 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll -2023-03-14 17:21:39.4159 Info Copied Microsoft.Extensions.DependencyInjection.dll -2023-03-14 17:21:39.4159 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-03-14 17:21:39.4174 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-03-14 17:21:39.4178 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-03-14 17:21:39.4193 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-03-14 17:21:39.4197 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll -2023-03-14 17:21:39.5107 Info Copied Microsoft.Extensions.Features.dll -2023-03-14 17:21:39.5107 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll -2023-03-14 17:21:39.5127 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll -2023-03-14 17:21:39.5127 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll -2023-03-14 17:21:39.5141 Info Copied Microsoft.Extensions.FileProviders.Composite.dll -2023-03-14 17:21:39.5141 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll -2023-03-14 17:21:39.5158 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll -2023-03-14 17:21:39.5158 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll -2023-03-14 17:21:39.5175 Info Copied Microsoft.Extensions.FileProviders.Physical.dll -2023-03-14 17:21:39.5179 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll -2023-03-14 17:21:39.5194 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll -2023-03-14 17:21:39.5198 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll -2023-03-14 17:21:39.5210 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll -2023-03-14 17:21:39.5210 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll -2023-03-14 17:21:39.5228 Info Copied Microsoft.Extensions.Hosting.dll -2023-03-14 17:21:39.5228 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll -2023-03-14 17:21:39.5247 Info Copied Microsoft.Extensions.Http.dll -2023-03-14 17:21:39.5247 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll -2023-03-14 17:21:39.5277 Info Copied Microsoft.Extensions.Identity.Core.dll -2023-03-14 17:21:39.5277 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll -2023-03-14 17:21:39.5294 Info Copied Microsoft.Extensions.Identity.Stores.dll -2023-03-14 17:21:39.5298 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll -2023-03-14 17:21:39.5866 Info Copied Microsoft.Extensions.Localization.Abstractions.dll -2023-03-14 17:21:39.5873 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll -2023-03-14 17:21:39.5887 Info Copied Microsoft.Extensions.Localization.dll -2023-03-14 17:21:39.5887 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll -2023-03-14 17:21:39.5908 Info Copied Microsoft.Extensions.Logging.Abstractions.dll -2023-03-14 17:21:39.5908 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll -2023-03-14 17:21:39.5924 Info Copied Microsoft.Extensions.Logging.Configuration.dll -2023-03-14 17:21:39.5928 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll -2023-03-14 17:21:39.5943 Info Copied Microsoft.Extensions.Logging.Console.dll -2023-03-14 17:21:39.5947 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll -2023-03-14 17:21:39.5959 Info Copied Microsoft.Extensions.Logging.Debug.dll -2023-03-14 17:21:39.5959 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll -2023-03-14 17:21:39.5977 Info Copied Microsoft.Extensions.Logging.dll -2023-03-14 17:21:39.5977 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll -2023-03-14 17:21:39.5992 Info Copied Microsoft.Extensions.Logging.EventLog.dll -2023-03-14 17:21:39.5992 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll -2023-03-14 17:21:39.6009 Info Copied Microsoft.Extensions.Logging.EventSource.dll -2023-03-14 17:21:39.6009 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll -2023-03-14 17:21:39.6023 Info Copied Microsoft.Extensions.Logging.TraceSource.dll -2023-03-14 17:21:39.6027 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll -2023-03-14 17:21:39.6038 Info Copied Microsoft.Extensions.ObjectPool.dll -2023-03-14 17:21:39.6038 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-03-14 17:21:39.6055 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-03-14 17:21:39.6059 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll -2023-03-14 17:21:39.6524 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll -2023-03-14 17:21:39.6533 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll -2023-03-14 17:21:39.6551 Info Copied Microsoft.Extensions.Options.dll -2023-03-14 17:21:39.6551 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll -2023-03-14 17:21:39.6572 Info Copied Microsoft.Extensions.Primitives.dll -2023-03-14 17:21:39.6572 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll -2023-03-14 17:21:39.6589 Info Copied Microsoft.Extensions.WebEncoders.dll -2023-03-14 17:21:39.6589 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll -2023-03-14 17:21:39.6608 Info Copied Microsoft.JSInterop.dll -2023-03-14 17:21:39.6608 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll -2023-03-14 17:21:39.6636 Info Copied Microsoft.Net.Http.Headers.dll -2023-03-14 17:21:39.6640 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll -2023-03-14 17:21:39.6703 Info Copied Microsoft.VisualBasic.Core.dll -2023-03-14 17:21:39.6708 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll -2023-03-14 17:21:39.7195 Info Copied Microsoft.VisualBasic.dll -2023-03-14 17:21:39.7202 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll -2023-03-14 17:21:39.7216 Info Copied Microsoft.Win32.Primitives.dll -2023-03-14 17:21:39.7223 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll -2023-03-14 17:21:39.7238 Info Copied Microsoft.Win32.Registry.dll -2023-03-14 17:21:39.7238 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll -2023-03-14 17:21:39.7275 Info Copied MimeMapping.dll -2023-03-14 17:21:39.7280 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll -2023-03-14 17:21:39.7293 Info Copied Mono.Posix.dll -2023-03-14 17:21:39.7299 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll -2023-03-14 17:21:39.7320 Info Copied Mono.Unix.dll -2023-03-14 17:21:39.7320 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll -2023-03-14 17:21:39.7337 Info Copied mscorlib.dll -2023-03-14 17:21:39.7337 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll -2023-03-14 17:21:39.7358 Info Copied netstandard.dll -2023-03-14 17:21:39.7358 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll -2023-03-14 17:21:39.7380 Info Copied Newtonsoft.Json.Bson.dll -2023-03-14 17:21:39.7380 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll -2023-03-14 17:21:39.7429 Info Copied Newtonsoft.Json.dll -2023-03-14 17:21:39.7429 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll -2023-03-14 17:21:39.7482 Info Copied NLog.dll -2023-03-14 17:21:39.7487 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll -2023-03-14 17:21:39.7502 Info Copied NLog.Extensions.Logging.dll -2023-03-14 17:21:39.7507 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll -2023-03-14 17:21:39.7523 Info Copied NLog.Web.AspNetCore.dll -2023-03-14 17:21:39.7529 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll -2023-03-14 17:21:39.7541 Info Copied Org.Mentalis.dll -2023-03-14 17:21:39.7547 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll -2023-03-14 17:21:39.7568 Info Copied Polly.dll -2023-03-14 17:21:39.7568 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/README.md to destination: /app/Jackett/README.md -2023-03-14 17:21:39.7584 Info Copied README.md -2023-03-14 17:21:39.7589 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll -2023-03-14 17:21:39.7600 Info Copied SocksWebProxy.dll -2023-03-14 17:21:39.7600 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll -2023-03-14 17:21:39.7616 Info Copied System.AppContext.dll -2023-03-14 17:21:39.7621 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll -2023-03-14 17:21:39.7632 Info Copied System.Buffers.dll -2023-03-14 17:21:39.7632 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll -2023-03-14 17:21:39.7659 Info Copied System.Collections.Concurrent.dll -2023-03-14 17:21:39.7659 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll -2023-03-14 17:21:39.7685 Info Copied System.Collections.dll -2023-03-14 17:21:39.7690 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll -2023-03-14 17:21:39.8130 Info Copied System.Collections.Immutable.dll -2023-03-14 17:21:39.8130 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll -2023-03-14 17:21:39.8154 Info Copied System.Collections.NonGeneric.dll -2023-03-14 17:21:39.8160 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll -2023-03-14 17:21:39.8176 Info Copied System.Collections.Specialized.dll -2023-03-14 17:21:39.8181 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll -2023-03-14 17:21:39.8204 Info Copied System.ComponentModel.Annotations.dll -2023-03-14 17:21:39.8208 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll -2023-03-14 17:21:39.8220 Info Copied System.ComponentModel.DataAnnotations.dll -2023-03-14 17:21:39.8283 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll -2023-03-14 17:21:39.8295 Info Copied System.ComponentModel.dll -2023-03-14 17:21:39.8300 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll -2023-03-14 17:21:39.8313 Info Copied System.ComponentModel.EventBasedAsync.dll -2023-03-14 17:21:39.8313 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll -2023-03-14 17:21:39.8611 Info Copied System.ComponentModel.Primitives.dll -2023-03-14 17:21:39.8618 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll -2023-03-14 17:21:39.8665 Info Copied System.ComponentModel.TypeConverter.dll -2023-03-14 17:21:39.8669 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll -2023-03-14 17:21:39.8680 Info Copied System.Configuration.dll -2023-03-14 17:21:39.8680 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll -2023-03-14 17:21:39.8704 Info Copied System.Console.dll -2023-03-14 17:21:39.8710 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll -2023-03-14 17:21:39.8720 Info Copied System.Core.dll -2023-03-14 17:21:39.8720 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll -2023-03-14 17:21:39.8871 Info Copied System.Data.Common.dll -2023-03-14 17:21:39.8877 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll -2023-03-14 17:21:39.8889 Info Copied System.Data.DataSetExtensions.dll -2023-03-14 17:21:39.8889 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll -2023-03-14 17:21:39.8903 Info Copied System.Data.dll -2023-03-14 17:21:39.8908 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll -2023-03-14 17:21:39.8919 Info Copied System.Diagnostics.Contracts.dll -2023-03-14 17:21:39.8919 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll -2023-03-14 17:21:39.8933 Info Copied System.Diagnostics.Debug.dll -2023-03-14 17:21:39.8937 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll -2023-03-14 17:21:39.8961 Info Copied System.Diagnostics.DiagnosticSource.dll -2023-03-14 17:21:39.8961 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll -2023-03-14 17:21:39.8976 Info Copied System.Diagnostics.EventLog.dll -2023-03-14 17:21:39.8980 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll -2023-03-14 17:21:39.8991 Info Copied System.Diagnostics.FileVersionInfo.dll -2023-03-14 17:21:39.8991 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll -2023-03-14 17:21:39.9015 Info Copied System.Diagnostics.Process.dll -2023-03-14 17:21:39.9019 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll -2023-03-14 17:21:39.9031 Info Copied System.Diagnostics.StackTrace.dll -2023-03-14 17:21:39.9031 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll -2023-03-14 17:21:39.9047 Info Copied System.Diagnostics.TextWriterTraceListener.dll -2023-03-14 17:21:39.9047 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll -2023-03-14 17:21:39.9061 Info Copied System.Diagnostics.Tools.dll -2023-03-14 17:21:39.9061 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll -2023-03-14 17:21:39.9080 Info Copied System.Diagnostics.TraceSource.dll -2023-03-14 17:21:39.9080 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll -2023-03-14 17:21:39.9094 Info Copied System.Diagnostics.Tracing.dll -2023-03-14 17:21:39.9098 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.dll to destination: /app/Jackett/System.dll -2023-03-14 17:21:39.9109 Info Copied System.dll -2023-03-14 17:21:39.9109 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll -2023-03-14 17:21:39.9123 Info Copied System.Drawing.dll -2023-03-14 17:21:39.9127 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll -2023-03-14 17:21:39.9142 Info Copied System.Drawing.Primitives.dll -2023-03-14 17:21:39.9142 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll -2023-03-14 17:21:39.9155 Info Copied System.Dynamic.Runtime.dll -2023-03-14 17:21:39.9159 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll -2023-03-14 17:21:39.9179 Info Copied System.Formats.Asn1.dll -2023-03-14 17:21:39.9179 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll -2023-03-14 17:21:39.9192 Info Copied System.Globalization.Calendars.dll -2023-03-14 17:21:39.9192 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll -2023-03-14 17:21:39.9205 Info Copied System.Globalization.dll -2023-03-14 17:21:39.9209 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll -2023-03-14 17:21:39.9219 Info Copied System.Globalization.Extensions.dll -2023-03-14 17:21:39.9219 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll -2023-03-14 17:21:39.9237 Info Copied System.IO.Compression.Brotli.dll -2023-03-14 17:21:39.9237 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll -2023-03-14 17:21:39.9261 Info Copied System.IO.Compression.dll -2023-03-14 17:21:39.9261 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll -2023-03-14 17:21:39.9274 Info Copied System.IO.Compression.FileSystem.dll -2023-03-14 17:21:39.9278 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll -2023-03-14 17:21:39.9289 Info Copied System.IO.Compression.ZipFile.dll -2023-03-14 17:21:39.9289 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll -2023-03-14 17:21:39.9302 Info Copied System.IO.dll -2023-03-14 17:21:39.9302 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll -2023-03-14 17:21:39.9318 Info Copied System.IO.FileSystem.AccessControl.dll -2023-03-14 17:21:39.9318 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll -2023-03-14 17:21:39.9331 Info Copied System.IO.FileSystem.dll -2023-03-14 17:21:39.9331 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll -2023-03-14 17:21:39.9743 Info Copied System.IO.FileSystem.DriveInfo.dll -2023-03-14 17:21:39.9750 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll -2023-03-14 17:21:39.9762 Info Copied System.IO.FileSystem.Primitives.dll -2023-03-14 17:21:39.9762 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll -2023-03-14 17:21:39.9780 Info Copied System.IO.FileSystem.Watcher.dll -2023-03-14 17:21:39.9780 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll -2023-03-14 17:21:39.9798 Info Copied System.IO.IsolatedStorage.dll -2023-03-14 17:21:39.9798 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll -2023-03-14 17:21:39.9815 Info Copied System.IO.MemoryMappedFiles.dll -2023-03-14 17:21:39.9818 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll -2023-03-14 17:21:39.9835 Info Copied System.IO.Pipelines.dll -2023-03-14 17:21:39.9839 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll -2023-03-14 17:21:39.9849 Info Copied System.IO.Pipes.AccessControl.dll -2023-03-14 17:21:39.9849 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll -2023-03-14 17:21:39.9868 Info Copied System.IO.Pipes.dll -2023-03-14 17:21:39.9868 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll -2023-03-14 17:21:39.9882 Info Copied System.IO.UnmanagedMemoryStream.dll -2023-03-14 17:21:39.9882 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll -2023-03-14 17:21:39.9915 Info Copied System.Linq.dll -2023-03-14 17:21:39.9919 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll -2023-03-14 17:21:40.0336 Info Copied System.Linq.Expressions.dll -2023-03-14 17:21:40.0342 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll -2023-03-14 17:21:40.0385 Info Copied System.Linq.Parallel.dll -2023-03-14 17:21:40.0389 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll -2023-03-14 17:21:40.0407 Info Copied System.Linq.Queryable.dll -2023-03-14 17:21:40.0407 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll -2023-03-14 17:21:40.0429 Info Copied System.Memory.dll -2023-03-14 17:21:40.0429 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll -2023-03-14 17:21:40.0442 Info Copied System.Net.dll -2023-03-14 17:21:40.0442 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll -2023-03-14 17:21:40.0749 Info Copied System.Net.Http.dll -2023-03-14 17:21:40.0749 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll -2023-03-14 17:21:40.0770 Info Copied System.Net.Http.Json.dll -2023-03-14 17:21:40.0770 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll -2023-03-14 17:21:40.0796 Info Copied System.Net.HttpListener.dll -2023-03-14 17:21:40.0800 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll -2023-03-14 17:21:40.0829 Info Copied System.Net.Mail.dll -2023-03-14 17:21:40.0829 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll -2023-03-14 17:21:40.0849 Info Copied System.Net.NameResolution.dll -2023-03-14 17:21:40.0849 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll -2023-03-14 17:21:40.0870 Info Copied System.Net.NetworkInformation.dll -2023-03-14 17:21:40.0870 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll -2023-03-14 17:21:40.0887 Info Copied System.Net.Ping.dll -2023-03-14 17:21:40.0887 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll -2023-03-14 17:21:40.0914 Info Copied System.Net.Primitives.dll -2023-03-14 17:21:40.0917 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll -2023-03-14 17:21:40.0998 Info Copied System.Net.Quic.dll -2023-03-14 17:21:40.0998 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll -2023-03-14 17:21:40.1024 Info Copied System.Net.Requests.dll -2023-03-14 17:21:40.1028 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll -2023-03-14 17:21:40.1075 Info Copied System.Net.Security.dll -2023-03-14 17:21:40.1079 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll -2023-03-14 17:21:40.1091 Info Copied System.Net.ServicePoint.dll -2023-03-14 17:21:40.1091 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll -2023-03-14 17:21:40.1131 Info Copied System.Net.Sockets.dll -2023-03-14 17:21:40.1131 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll -2023-03-14 17:21:40.1151 Info Copied System.Net.WebClient.dll -2023-03-14 17:21:40.1151 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll -2023-03-14 17:21:40.1166 Info Copied System.Net.WebHeaderCollection.dll -2023-03-14 17:21:40.1169 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll -2023-03-14 17:21:40.1318 Info Copied System.Net.WebProxy.dll -2023-03-14 17:21:40.1318 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll -2023-03-14 17:21:40.1338 Info Copied System.Net.WebSockets.Client.dll -2023-03-14 17:21:40.1338 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll -2023-03-14 17:21:40.1359 Info Copied System.Net.WebSockets.dll -2023-03-14 17:21:40.1359 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll -2023-03-14 17:21:40.1380 Info Copied System.Numerics.dll -2023-03-14 17:21:40.1380 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll -2023-03-14 17:21:40.1395 Info Copied System.Numerics.Vectors.dll -2023-03-14 17:21:40.1395 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll -2023-03-14 17:21:40.1402 Info Copied System.ObjectModel.dll -2023-03-14 17:21:40.1402 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll -2023-03-14 17:21:40.1921 Info Copied System.Private.CoreLib.dll -2023-03-14 17:21:40.1931 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll -2023-03-14 17:21:40.2029 Info Copied System.Private.DataContractSerialization.dll -2023-03-14 17:21:40.2029 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll -2023-03-14 17:21:40.2065 Info Copied System.Private.Uri.dll -2023-03-14 17:21:40.2069 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll -2023-03-14 17:21:40.3330 Info Copied System.Private.Xml.dll -2023-03-14 17:21:40.3330 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll -2023-03-14 17:21:40.3345 Info Copied System.Private.Xml.Linq.dll -2023-03-14 17:21:40.3347 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll -2023-03-14 17:21:40.3361 Info Copied System.Reflection.DispatchProxy.dll -2023-03-14 17:21:40.3361 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll -2023-03-14 17:21:40.3367 Info Copied System.Reflection.dll -2023-03-14 17:21:40.3367 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll -2023-03-14 17:21:40.3367 Info Copied System.Reflection.Emit.dll -2023-03-14 17:21:40.3367 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll -2023-03-14 17:21:40.3384 Info Copied System.Reflection.Emit.ILGeneration.dll -2023-03-14 17:21:40.3384 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll -2023-03-14 17:21:40.3396 Info Copied System.Reflection.Emit.Lightweight.dll -2023-03-14 17:21:40.3396 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll -2023-03-14 17:21:40.3396 Info Copied System.Reflection.Extensions.dll -2023-03-14 17:21:40.3396 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll -2023-03-14 17:21:40.3423 Info Copied System.Reflection.Metadata.dll -2023-03-14 17:21:40.3423 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll -2023-03-14 17:21:40.3429 Info Copied System.Reflection.Primitives.dll -2023-03-14 17:21:40.3429 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll -2023-03-14 17:21:40.3429 Info Copied System.Reflection.TypeExtensions.dll -2023-03-14 17:21:40.3429 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll -2023-03-14 17:21:40.3440 Info Copied System.Resources.Reader.dll -2023-03-14 17:21:40.3440 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll -2023-03-14 17:21:40.3440 Info Copied System.Resources.ResourceManager.dll -2023-03-14 17:21:40.3440 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll -2023-03-14 17:21:40.3452 Info Copied System.Resources.Writer.dll -2023-03-14 17:21:40.3452 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll -2023-03-14 17:21:40.3458 Info Copied System.Runtime.CompilerServices.Unsafe.dll -2023-03-14 17:21:40.3458 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll -2023-03-14 17:21:40.3458 Info Copied System.Runtime.CompilerServices.VisualC.dll -2023-03-14 17:21:40.3458 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll -2023-03-14 17:21:40.3469 Info Copied System.Runtime.dll -2023-03-14 17:21:40.3469 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll -2023-03-14 17:21:40.3469 Info Copied System.Runtime.Extensions.dll -2023-03-14 17:21:40.3469 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll -2023-03-14 17:21:40.3480 Info Copied System.Runtime.Handles.dll -2023-03-14 17:21:40.3480 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll -2023-03-14 17:21:40.3480 Info Copied System.Runtime.InteropServices.dll -2023-03-14 17:21:40.3488 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll -2023-03-14 17:21:40.3488 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll -2023-03-14 17:21:40.3488 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll -2023-03-14 17:21:40.3498 Info Copied System.Runtime.Intrinsics.dll -2023-03-14 17:21:40.3498 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll -2023-03-14 17:21:40.3498 Info Copied System.Runtime.Loader.dll -2023-03-14 17:21:40.3498 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll -2023-03-14 17:21:40.5098 Info Copied System.Runtime.Numerics.dll -2023-03-14 17:21:40.5098 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll -2023-03-14 17:21:40.5107 Info Copied System.Runtime.Serialization.dll -2023-03-14 17:21:40.5107 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll -2023-03-14 17:21:40.5118 Info Copied System.Runtime.Serialization.Formatters.dll -2023-03-14 17:21:40.5118 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll -2023-03-14 17:21:40.5118 Info Copied System.Runtime.Serialization.Json.dll -2023-03-14 17:21:40.5118 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll -2023-03-14 17:21:40.5130 Info Copied System.Runtime.Serialization.Primitives.dll -2023-03-14 17:21:40.5130 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll -2023-03-14 17:21:40.5130 Info Copied System.Runtime.Serialization.Xml.dll -2023-03-14 17:21:40.5130 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll -2023-03-14 17:21:40.5141 Info Copied System.Security.AccessControl.dll -2023-03-14 17:21:40.5141 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll -2023-03-14 17:21:40.5149 Info Copied System.Security.Claims.dll -2023-03-14 17:21:40.5149 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll -2023-03-14 17:21:40.5175 Info Copied System.Security.Cryptography.Algorithms.dll -2023-03-14 17:21:40.5177 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll -2023-03-14 17:21:40.5177 Info Copied System.Security.Cryptography.Cng.dll -2023-03-14 17:21:40.5177 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll -2023-03-14 17:21:40.5190 Info Copied System.Security.Cryptography.Csp.dll -2023-03-14 17:21:40.5190 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll -2023-03-14 17:21:40.5198 Info Copied System.Security.Cryptography.Encoding.dll -2023-03-14 17:21:40.5198 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll -2023-03-14 17:21:40.5206 Info Copied System.Security.Cryptography.OpenSsl.dll -2023-03-14 17:21:40.5206 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll -2023-03-14 17:21:40.5223 Info Copied System.Security.Cryptography.Pkcs.dll -2023-03-14 17:21:40.5223 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll -2023-03-14 17:21:40.5231 Info Copied System.Security.Cryptography.Primitives.dll -2023-03-14 17:21:40.5231 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll -2023-03-14 17:21:40.5237 Info Copied System.Security.Cryptography.ProtectedData.dll -2023-03-14 17:21:40.5237 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll -2023-03-14 17:21:40.5254 Info Copied System.Security.Cryptography.X509Certificates.dll -2023-03-14 17:21:40.5254 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll -2023-03-14 17:21:40.5267 Info Copied System.Security.Cryptography.Xml.dll -2023-03-14 17:21:40.5267 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll -2023-03-14 17:21:40.5267 Info Copied System.Security.dll -2023-03-14 17:21:40.5267 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll -2023-03-14 17:21:40.5278 Info Copied System.Security.Principal.dll -2023-03-14 17:21:40.5278 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll -2023-03-14 17:21:40.5278 Info Copied System.Security.Principal.Windows.dll -2023-03-14 17:21:40.5278 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll -2023-03-14 17:21:40.6475 Info Copied System.Security.SecureString.dll -2023-03-14 17:21:40.6480 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll -2023-03-14 17:21:40.6491 Info Copied System.ServiceModel.Web.dll -2023-03-14 17:21:40.6491 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll -2023-03-14 17:21:40.6505 Info Copied System.ServiceProcess.dll -2023-03-14 17:21:40.6509 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll -2023-03-14 17:21:40.6519 Info Copied System.ServiceProcess.ServiceController.dll -2023-03-14 17:21:40.6519 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll -2023-03-14 17:21:40.6564 Info Copied System.Text.Encoding.CodePages.dll -2023-03-14 17:21:40.6568 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll -2023-03-14 17:21:40.6578 Info Copied System.Text.Encoding.dll -2023-03-14 17:21:40.6578 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll -2023-03-14 17:21:40.6592 Info Copied System.Text.Encoding.Extensions.dll -2023-03-14 17:21:40.6592 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll -2023-03-14 17:21:40.6611 Info Copied System.Text.Encodings.Web.dll -2023-03-14 17:21:40.6611 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll -2023-03-14 17:21:40.6918 Info Copied System.Text.Json.dll -2023-03-14 17:21:40.6918 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll -2023-03-14 17:21:40.6958 Info Copied System.Text.RegularExpressions.dll -2023-03-14 17:21:40.6958 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll -2023-03-14 17:21:40.6978 Info Copied System.Threading.Channels.dll -2023-03-14 17:21:40.6978 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll -2023-03-14 17:21:40.6997 Info Copied System.Threading.dll -2023-03-14 17:21:40.6997 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll -2023-03-14 17:21:40.7014 Info Copied System.Threading.Overlapped.dll -2023-03-14 17:21:40.7018 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll -2023-03-14 17:21:40.7049 Info Copied System.Threading.Tasks.Dataflow.dll -2023-03-14 17:21:40.7049 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll -2023-03-14 17:21:40.7063 Info Copied System.Threading.Tasks.dll -2023-03-14 17:21:40.7068 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll -2023-03-14 17:21:40.7078 Info Copied System.Threading.Tasks.Extensions.dll -2023-03-14 17:21:40.7078 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll -2023-03-14 17:21:40.7098 Info Copied System.Threading.Tasks.Parallel.dll -2023-03-14 17:21:40.7098 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll -2023-03-14 17:21:40.7796 Info Copied System.Threading.Thread.dll -2023-03-14 17:21:40.7796 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll -2023-03-14 17:21:40.7815 Info Copied System.Threading.ThreadPool.dll -2023-03-14 17:21:40.7820 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll -2023-03-14 17:21:40.7831 Info Copied System.Threading.Timer.dll -2023-03-14 17:21:40.7831 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll -2023-03-14 17:21:40.7844 Info Copied System.Transactions.dll -2023-03-14 17:21:40.7849 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll -2023-03-14 17:21:40.7875 Info Copied System.Transactions.Local.dll -2023-03-14 17:21:40.7878 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll -2023-03-14 17:21:40.7888 Info Copied System.ValueTuple.dll -2023-03-14 17:21:40.7888 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll -2023-03-14 17:21:40.7900 Info Copied System.Web.dll -2023-03-14 17:21:40.7900 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll -2023-03-14 17:21:40.7917 Info Copied System.Web.HttpUtility.dll -2023-03-14 17:21:40.7917 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll -2023-03-14 17:21:40.7930 Info Copied System.Windows.dll -2023-03-14 17:21:40.7930 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll -2023-03-14 17:21:40.7944 Info Copied System.Xml.dll -2023-03-14 17:21:40.7948 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll -2023-03-14 17:21:40.7957 Info Copied System.Xml.Linq.dll -2023-03-14 17:21:40.7957 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll -2023-03-14 17:21:40.7970 Info Copied System.Xml.ReaderWriter.dll -2023-03-14 17:21:40.7970 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll -2023-03-14 17:21:40.7983 Info Copied System.Xml.Serialization.dll -2023-03-14 17:21:40.7988 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll -2023-03-14 17:21:40.7999 Info Copied System.Xml.XDocument.dll -2023-03-14 17:21:40.7999 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll -2023-03-14 17:21:40.8012 Info Copied System.Xml.XmlDocument.dll -2023-03-14 17:21:40.8012 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll -2023-03-14 17:21:40.8025 Info Copied System.Xml.XmlSerializer.dll -2023-03-14 17:21:40.8029 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll -2023-03-14 17:21:40.8040 Info Copied System.Xml.XPath.dll -2023-03-14 17:21:40.8040 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll -2023-03-14 17:21:40.8053 Info Copied System.Xml.XPath.XDocument.dll -2023-03-14 17:21:40.8057 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll -2023-03-14 17:21:40.8067 Info Copied WindowsBase.dll -2023-03-14 17:21:40.8067 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3599-638144112956644912/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll -2023-03-14 17:21:40.8090 Info Copied YamlDotNet.dll -2023-03-14 17:21:40.8090 Info File copying complete -2023-03-14 17:21:40.8405 Info Killing process 236 -2023-03-14 17:21:43.9179 Info Process 236 didn't exit within 2 seconds after a SIGTERM -2023-03-15 17:53:43.9673 Info Jackett Updater v0.20.3604 -2023-03-15 17:53:44.0580 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "135" "--NoRestart" -2023-03-15 17:53:44.0614 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-15 17:53:44.2502 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb -2023-03-15 17:53:44.2509 Info Deleted /app/Jackett/DateTimeRoutines.pdb -2023-03-15 17:53:44.2509 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb -2023-03-15 17:53:44.2509 Info Deleted /app/Jackett/Jackett.Common.pdb -2023-03-15 17:53:44.2525 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb -2023-03-15 17:53:44.2529 Info Deleted /app/Jackett/JackettUpdater.pdb -2023-03-15 17:53:44.2529 Info Attempting to remove: /app/Jackett/jackett.pdb -2023-03-15 17:53:44.2529 Info Deleted /app/Jackett/jackett.pdb -2023-03-15 17:53:44.2529 Info Attempting to remove: /app/Jackett/jackett -2023-03-15 17:53:44.2540 Info Deleted /app/Jackett/jackett -2023-03-15 17:53:44.2540 Info Finding files in: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/ -2023-03-15 17:53:44.2592 Info 891 update files found -2023-03-15 17:53:44.2602 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll -2023-03-15 17:53:44.2631 Info Copied AngleSharp.dll -2023-03-15 17:53:44.2631 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll -2023-03-15 17:53:44.2640 Info Copied AngleSharp.Xml.dll -2023-03-15 17:53:44.2640 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll -2023-03-15 17:53:44.2652 Info Copied Autofac.dll -2023-03-15 17:53:44.2652 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll -2023-03-15 17:53:44.2660 Info Copied Autofac.Extensions.DependencyInjection.dll -2023-03-15 17:53:44.2660 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll -2023-03-15 17:53:44.2671 Info Copied AutoMapper.dll -2023-03-15 17:53:44.2671 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll -2023-03-15 17:53:44.2678 Info Copied BencodeNET.dll -2023-03-15 17:53:44.2678 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll -2023-03-15 17:53:44.2688 Info Copied CommandLine.dll -2023-03-15 17:53:44.2688 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css -2023-03-15 17:53:44.2688 Info Copied animate.css -2023-03-15 17:53:44.2697 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png -2023-03-15 17:53:44.2697 Info Copied apple-touch-icon.png -2023-03-15 17:53:44.2697 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png -2023-03-15 17:53:44.2708 Info Copied binding_dark.png -2023-03-15 17:53:44.2708 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css -2023-03-15 17:53:44.2717 Info Copied bootstrap.min.css -2023-03-15 17:53:44.2717 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js -2023-03-15 17:53:44.2717 Info Copied bootstrap.min.js -2023-03-15 17:53:44.2717 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js -2023-03-15 17:53:44.2729 Info Copied common.js -2023-03-15 17:53:44.2729 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css -2023-03-15 17:53:44.2729 Info Copied bootstrap-multiselect.css -2023-03-15 17:53:44.2737 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css -2023-03-15 17:53:44.2737 Info Copied font-awesome.min.css -2023-03-15 17:53:44.2737 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css -2023-03-15 17:53:44.2748 Info Copied jquery.dataTables.min.css -2023-03-15 17:53:44.2748 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css -2023-03-15 17:53:44.2748 Info Copied tagify.css -2023-03-15 17:53:44.2748 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css -2023-03-15 17:53:44.2759 Info Copied custom_mobile.css -2023-03-15 17:53:44.2759 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css -2023-03-15 17:53:44.2759 Info Copied custom.css -2023-03-15 17:53:44.2767 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js -2023-03-15 17:53:44.2767 Info Copied custom.js -2023-03-15 17:53:44.2767 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico -2023-03-15 17:53:44.2780 Info Copied favicon.ico -2023-03-15 17:53:44.2780 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot -2023-03-15 17:53:44.2787 Info Copied fontawesome-webfont.eot -2023-03-15 17:53:44.2787 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg -2023-03-15 17:53:44.2806 Info Copied fontawesome-webfont.svg -2023-03-15 17:53:44.2806 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf -2023-03-15 17:53:44.2806 Info Copied fontawesome-webfont.ttf -2023-03-15 17:53:44.2806 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff -2023-03-15 17:53:44.2831 Info Copied fontawesome-webfont.woff -2023-03-15 17:53:44.2831 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 -2023-03-15 17:53:44.2838 Info Copied fontawesome-webfont.woff2 -2023-03-15 17:53:44.2838 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf -2023-03-15 17:53:44.2838 Info Copied FontAwesome.otf -2023-03-15 17:53:44.2847 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot -2023-03-15 17:53:44.2860 Info Copied glyphicons-halflings-regular.eot -2023-03-15 17:53:44.2860 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg -2023-03-15 17:53:44.2869 Info Copied glyphicons-halflings-regular.svg -2023-03-15 17:53:44.2869 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf -2023-03-15 17:53:44.2869 Info Copied glyphicons-halflings-regular.ttf -2023-03-15 17:53:44.2877 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff -2023-03-15 17:53:44.2877 Info Copied glyphicons-halflings-regular.woff -2023-03-15 17:53:44.2877 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 -2023-03-15 17:53:44.2888 Info Copied glyphicons-halflings-regular.woff2 -2023-03-15 17:53:44.2888 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png -2023-03-15 17:53:44.2888 Info Copied sort_asc_disabled.png -2023-03-15 17:53:44.2888 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png -2023-03-15 17:53:44.2899 Info Copied sort_asc.png -2023-03-15 17:53:44.2899 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png -2023-03-15 17:53:44.2899 Info Copied sort_both.png -2023-03-15 17:53:44.2907 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png -2023-03-15 17:53:44.2907 Info Copied sort_desc_disabled.png -2023-03-15 17:53:44.2907 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png -2023-03-15 17:53:44.2916 Info Copied sort_desc.png -2023-03-15 17:53:44.2916 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html -2023-03-15 17:53:44.2916 Info Copied index.html -2023-03-15 17:53:44.2916 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png -2023-03-15 17:53:44.2928 Info Copied jacket_medium.png -2023-03-15 17:53:44.2928 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js -2023-03-15 17:53:44.2928 Info Copied api.js -2023-03-15 17:53:44.2928 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js -2023-03-15 17:53:44.2940 Info Copied bootstrap-multiselect.js -2023-03-15 17:53:44.2940 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js -2023-03-15 17:53:44.2947 Info Copied bootstrap-notify.js -2023-03-15 17:53:44.2947 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js -2023-03-15 17:53:44.2947 Info Copied filesize.min.js -2023-03-15 17:53:44.2947 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js -2023-03-15 17:53:44.2959 Info Copied handlebars.min.js -2023-03-15 17:53:44.2959 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js -2023-03-15 17:53:44.2959 Info Copied handlebarsextend.js -2023-03-15 17:53:44.2959 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js -2023-03-15 17:53:44.2973 Info Copied handlebarsmoment.js -2023-03-15 17:53:44.2973 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js -2023-03-15 17:53:44.2981 Info Copied jquery.dataTables.min.js -2023-03-15 17:53:44.2981 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js -2023-03-15 17:53:44.2997 Info Copied jquery.min.js -2023-03-15 17:53:44.2997 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js -2023-03-15 17:53:44.2997 Info Copied jQuery.tagify.min.js -2023-03-15 17:53:44.2997 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js -2023-03-15 17:53:44.3010 Info Copied moment.min.js -2023-03-15 17:53:44.3010 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js -2023-03-15 17:53:44.3017 Info Copied tagify.min.js -2023-03-15 17:53:44.3017 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html -2023-03-15 17:53:44.3017 Info Copied login.html -2023-03-15 17:53:44.3017 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/createdump to destination: /app/Jackett/createdump -2023-03-15 17:53:44.3031 Info Copied createdump -2023-03-15 17:53:44.3031 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll -2023-03-15 17:53:44.3037 Info Copied DateTimeRoutines.dll -2023-03-15 17:53:44.3037 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb -2023-03-15 17:53:44.3037 Info Copied DateTimeRoutines.pdb -2023-03-15 17:53:44.3037 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml -2023-03-15 17:53:44.3050 Info Copied 0daykiev.yml -2023-03-15 17:53:44.3050 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml -2023-03-15 17:53:44.3050 Info Copied 0magnet.yml -2023-03-15 17:53:44.3058 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml -2023-03-15 17:53:44.3058 Info Copied 1337x.yml -2023-03-15 17:53:44.3058 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml -2023-03-15 17:53:44.3068 Info Copied 1ptbar.yml -2023-03-15 17:53:44.3068 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml -2023-03-15 17:53:44.3068 Info Copied 2fast4you.yml -2023-03-15 17:53:44.3068 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml -2023-03-15 17:53:44.3080 Info Copied 2xfree.yml -2023-03-15 17:53:44.3080 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml -2023-03-15 17:53:44.3080 Info Copied 3changtrai.yml -2023-03-15 17:53:44.3087 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml -2023-03-15 17:53:44.3087 Info Copied 3dtorrents.yml -2023-03-15 17:53:44.3087 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml -2023-03-15 17:53:44.3096 Info Copied 4thd.yml -2023-03-15 17:53:44.3096 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml -2023-03-15 17:53:44.3096 Info Copied 52pt.yml -2023-03-15 17:53:44.3096 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml -2023-03-15 17:53:44.3109 Info Copied abnormal.yml -2023-03-15 17:53:44.3109 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml -2023-03-15 17:53:44.3109 Info Copied abtorrents.yml -2023-03-15 17:53:44.3117 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml -2023-03-15 17:53:44.3117 Info Copied acervos-api.yml -2023-03-15 17:53:44.3117 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml -2023-03-15 17:53:44.3127 Info Copied acgrip.yml -2023-03-15 17:53:44.3127 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml -2023-03-15 17:53:44.3127 Info Copied acgsou.yml -2023-03-15 17:53:44.3127 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml -2023-03-15 17:53:44.3138 Info Copied acidlounge.yml -2023-03-15 17:53:44.3138 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml -2023-03-15 17:53:44.3138 Info Copied acrossthetasman.yml -2023-03-15 17:53:44.3138 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml -2023-03-15 17:53:44.3150 Info Copied aftershock.yml -2023-03-15 17:53:44.3150 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml -2023-03-15 17:53:44.3150 Info Copied aidoruonline.yml -2023-03-15 17:53:44.3157 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml -2023-03-15 17:53:44.3157 Info Copied aither-api.yml -2023-03-15 17:53:44.3157 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml -2023-03-15 17:53:44.3167 Info Copied amigosshare.yml -2023-03-15 17:53:44.3167 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml -2023-03-15 17:53:44.3167 Info Copied anilibria.yml -2023-03-15 17:53:44.3167 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml -2023-03-15 17:53:44.3180 Info Copied anime-free.yml -2023-03-15 17:53:44.3180 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml -2023-03-15 17:53:44.3187 Info Copied animelayer.yml -2023-03-15 17:53:44.3187 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml -2023-03-15 17:53:44.3187 Info Copied animetracker.yml -2023-03-15 17:53:44.3187 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml -2023-03-15 17:53:44.3198 Info Copied animeworld-api.yml -2023-03-15 17:53:44.3198 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml -2023-03-15 17:53:44.3198 Info Copied anirena.yml -2023-03-15 17:53:44.3198 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml -2023-03-15 17:53:44.3210 Info Copied anisource.yml -2023-03-15 17:53:44.3210 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml -2023-03-15 17:53:44.3210 Info Copied anthelion-api.yml -2023-03-15 17:53:44.3218 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml -2023-03-15 17:53:44.3218 Info Copied arabafenice.yml -2023-03-15 17:53:44.3218 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml -2023-03-15 17:53:44.3228 Info Copied arabp2p.yml -2023-03-15 17:53:44.3228 Info Attempting to copy arabtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/arabtorrents.yml to destination: /app/Jackett/Definitions/arabtorrents.yml -2023-03-15 17:53:44.3228 Info Copied arabtorrents.yml -2023-03-15 17:53:44.3237 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml -2023-03-15 17:53:44.3237 Info Copied arenabg.yml -2023-03-15 17:53:44.3237 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml -2023-03-15 17:53:44.3247 Info Copied asiancinema.yml -2023-03-15 17:53:44.3247 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml -2023-03-15 17:53:44.3247 Info Copied asiandvdclub.yml -2023-03-15 17:53:44.3247 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml -2023-03-15 17:53:44.3259 Info Copied audiences.yml -2023-03-15 17:53:44.3259 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml -2023-03-15 17:53:44.3259 Info Copied audionews.yml -2023-03-15 17:53:44.3268 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml -2023-03-15 17:53:44.3268 Info Copied aussierules.yml -2023-03-15 17:53:44.3268 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml -2023-03-15 17:53:44.3279 Info Copied backups.yml -2023-03-15 17:53:44.3279 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml -2023-03-15 17:53:44.3279 Info Copied badasstorrents.yml -2023-03-15 17:53:44.3286 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml -2023-03-15 17:53:44.3286 Info Copied bangumi-moe.yml -2023-03-15 17:53:44.3286 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml -2023-03-15 17:53:44.3296 Info Copied beitai.yml -2023-03-15 17:53:44.3296 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml -2023-03-15 17:53:44.3296 Info Copied bestcore.yml -2023-03-15 17:53:44.3296 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml -2023-03-15 17:53:44.3309 Info Copied beyond-hd.yml -2023-03-15 17:53:44.3309 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml -2023-03-15 17:53:44.3309 Info Copied bibliotik.yml -2023-03-15 17:53:44.3317 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml -2023-03-15 17:53:44.3317 Info Copied bigfangroup.yml -2023-03-15 17:53:44.3317 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml -2023-03-15 17:53:44.3328 Info Copied bitbazis.yml -2023-03-15 17:53:44.3328 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml -2023-03-15 17:53:44.3328 Info Copied bitded.yml -2023-03-15 17:53:44.3328 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml -2023-03-15 17:53:44.3340 Info Copied bithorlo.yml -2023-03-15 17:53:44.3340 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml -2023-03-15 17:53:44.3340 Info Copied bithumen.yml -2023-03-15 17:53:44.3348 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml -2023-03-15 17:53:44.3348 Info Copied bitnova.yml -2023-03-15 17:53:44.3348 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml -2023-03-15 17:53:44.3358 Info Copied bitofvalor.yml -2023-03-15 17:53:44.3358 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml -2023-03-15 17:53:44.3358 Info Copied bitru.yml -2023-03-15 17:53:44.3366 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml -2023-03-15 17:53:44.3366 Info Copied bitsearch.yml -2023-03-15 17:53:44.3366 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml -2023-03-15 17:53:44.3377 Info Copied bitsexy.yml -2023-03-15 17:53:44.3377 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml -2023-03-15 17:53:44.3377 Info Copied bitspyder.yml -2023-03-15 17:53:44.3377 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml -2023-03-15 17:53:44.3390 Info Copied Bittorrentfiles.yml -2023-03-15 17:53:44.3390 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml -2023-03-15 17:53:44.3390 Info Copied bitturk.yml -2023-03-15 17:53:44.3398 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml -2023-03-15 17:53:44.3398 Info Copied bluebird.yml -2023-03-15 17:53:44.3398 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml -2023-03-15 17:53:44.3408 Info Copied blutopia-api.yml -2023-03-15 17:53:44.3408 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml -2023-03-15 17:53:44.3408 Info Copied booktracker.yml -2023-03-15 17:53:44.3408 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml -2023-03-15 17:53:44.3421 Info Copied bootytape.yml -2023-03-15 17:53:44.3421 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml -2023-03-15 17:53:44.3427 Info Copied borgzelle.yml -2023-03-15 17:53:44.3427 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml -2023-03-15 17:53:44.3427 Info Copied boxingtorrents.yml -2023-03-15 17:53:44.3427 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml -2023-03-15 17:53:44.3448 Info Copied broadcity.yml -2023-03-15 17:53:44.3448 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml -2023-03-15 17:53:44.3448 Info Copied brsociety-api.yml -2023-03-15 17:53:44.3457 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml -2023-03-15 17:53:44.3457 Info Copied bt4g.yml -2023-03-15 17:53:44.3457 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml -2023-03-15 17:53:44.3466 Info Copied btdigg.yml -2023-03-15 17:53:44.3466 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml -2023-03-15 17:53:44.3466 Info Copied btetree.yml -2023-03-15 17:53:44.3466 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml -2023-03-15 17:53:44.3478 Info Copied btmet.yml -2023-03-15 17:53:44.3478 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml -2023-03-15 17:53:44.3478 Info Copied btnext.yml -2023-03-15 17:53:44.3478 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml -2023-03-15 17:53:44.3490 Info Copied btschool.yml -2023-03-15 17:53:44.3490 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml -2023-03-15 17:53:44.3490 Info Copied btsow.yml -2023-03-15 17:53:44.3498 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml -2023-03-15 17:53:44.3498 Info Copied bulltorrent.yml -2023-03-15 17:53:44.3498 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml -2023-03-15 17:53:44.3509 Info Copied bwtorrents.yml -2023-03-15 17:53:44.3509 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml -2023-03-15 17:53:44.3509 Info Copied byrbt.yml -2023-03-15 17:53:44.3509 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml -2023-03-15 17:53:44.3520 Info Copied byrutor.yml -2023-03-15 17:53:44.3520 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml -2023-03-15 17:53:44.3527 Info Copied carpathians.yml -2023-03-15 17:53:44.3527 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml -2023-03-15 17:53:44.3527 Info Copied carphunter.yml -2023-03-15 17:53:44.3527 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml -2023-03-15 17:53:44.3539 Info Copied carpt.yml -2023-03-15 17:53:44.3539 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml -2023-03-15 17:53:44.3539 Info Copied cartoonchaos.yml -2023-03-15 17:53:44.3548 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml -2023-03-15 17:53:44.3548 Info Copied cathoderaytube.yml -2023-03-15 17:53:44.3548 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml -2023-03-15 17:53:44.3558 Info Copied catorrent.yml -2023-03-15 17:53:44.3558 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml -2023-03-15 17:53:44.3558 Info Copied ccfbits.yml -2023-03-15 17:53:44.3558 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml -2023-03-15 17:53:44.3569 Info Copied ceskeforum.yml -2023-03-15 17:53:44.3569 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml -2023-03-15 17:53:44.3569 Info Copied chdbits.yml -2023-03-15 17:53:44.3577 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml -2023-03-15 17:53:44.3577 Info Copied chilebt.yml -2023-03-15 17:53:44.3577 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml -2023-03-15 17:53:44.3587 Info Copied cinemageddon.yml -2023-03-15 17:53:44.3587 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml -2023-03-15 17:53:44.3587 Info Copied cinemamovies.yml -2023-03-15 17:53:44.3587 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml -2023-03-15 17:53:44.3599 Info Copied cinematik.yml -2023-03-15 17:53:44.3599 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml -2023-03-15 17:53:44.3599 Info Copied classix.yml -2023-03-15 17:53:44.3608 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml -2023-03-15 17:53:44.3608 Info Copied coastalcrew.yml -2023-03-15 17:53:44.3608 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml -2023-03-15 17:53:44.3619 Info Copied comicat.yml -2023-03-15 17:53:44.3619 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml -2023-03-15 17:53:44.3619 Info Copied concen.yml -2023-03-15 17:53:44.3628 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml -2023-03-15 17:53:44.3628 Info Copied concertos.yml -2023-03-15 17:53:44.3628 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml -2023-03-15 17:53:44.3639 Info Copied cpabien.yml -2023-03-15 17:53:44.3639 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml -2023-03-15 17:53:44.3639 Info Copied cpasbienclone.yml -2023-03-15 17:53:44.3647 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml -2023-03-15 17:53:44.3647 Info Copied cpasbiensi.yml -2023-03-15 17:53:44.3647 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml -2023-03-15 17:53:44.3658 Info Copied crackingpatching.yml -2023-03-15 17:53:44.3658 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml -2023-03-15 17:53:44.3658 Info Copied crazyhd.yml -2023-03-15 17:53:44.3658 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml -2023-03-15 17:53:44.3670 Info Copied crazyspirits.yml -2023-03-15 17:53:44.3670 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml -2023-03-15 17:53:44.3670 Info Copied crnaberza.yml -2023-03-15 17:53:44.3677 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml -2023-03-15 17:53:44.3677 Info Copied crt2fa.yml -2023-03-15 17:53:44.3677 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml -2023-03-15 17:53:44.3687 Info Copied danishbytes-api.yml -2023-03-15 17:53:44.3687 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml -2023-03-15 17:53:44.3687 Info Copied dariustracker.yml -2023-03-15 17:53:44.3698 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml -2023-03-15 17:53:44.3698 Info Copied dark-shadow.yml -2023-03-15 17:53:44.3707 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml -2023-03-15 17:53:44.3707 Info Copied datascene-api.yml -2023-03-15 17:53:44.3717 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml -2023-03-15 17:53:44.3717 Info Copied datatalli.yml -2023-03-15 17:53:44.3717 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml -2023-03-15 17:53:44.3732 Info Copied deildu.yml -2023-03-15 17:53:44.3732 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml -2023-03-15 17:53:44.3742 Info Copied demonoid.yml -2023-03-15 17:53:44.3742 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml -2023-03-15 17:53:44.3752 Info Copied desitorrents-api.yml -2023-03-15 17:53:44.3752 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml -2023-03-15 17:53:44.3762 Info Copied devil-torrents.yml -2023-03-15 17:53:44.3762 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml -2023-03-15 17:53:44.3771 Info Copied diablotorrent.yml -2023-03-15 17:53:44.3771 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml -2023-03-15 17:53:44.3778 Info Copied digitalcore.yml -2023-03-15 17:53:44.3778 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml -2023-03-15 17:53:44.3778 Info Copied dimeadozen.yml -2023-03-15 17:53:44.3787 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml -2023-03-15 17:53:44.3787 Info Copied discfan.yml -2023-03-15 17:53:44.3787 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml -2023-03-15 17:53:44.3798 Info Copied divteam.yml -2023-03-15 17:53:44.3798 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml -2023-03-15 17:53:44.3798 Info Copied dmhy.yml -2023-03-15 17:53:44.3798 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml -2023-03-15 17:53:44.3810 Info Copied docspedia.yml -2023-03-15 17:53:44.3810 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml -2023-03-15 17:53:44.3810 Info Copied dodder.yml -2023-03-15 17:53:44.3818 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml -2023-03-15 17:53:44.3818 Info Copied dreamtracker.yml -2023-03-15 17:53:44.3818 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml -2023-03-15 17:53:44.3828 Info Copied dxp.yml -2023-03-15 17:53:44.3828 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml -2023-03-15 17:53:44.3828 Info Copied ebookbay.yml -2023-03-15 17:53:44.3828 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml -2023-03-15 17:53:44.3840 Info Copied ebooks-shares.yml -2023-03-15 17:53:44.3840 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml -2023-03-15 17:53:44.3840 Info Copied ehentai.yml -2023-03-15 17:53:44.3847 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml -2023-03-15 17:53:44.3847 Info Copied electro-torrent.yml -2023-03-15 17:53:44.3847 Info Attempting to copy elitetorrent-pl.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/elitetorrent-pl.yml to destination: /app/Jackett/Definitions/elitetorrent-pl.yml -2023-03-15 17:53:44.3859 Info Copied elitetorrent-pl.yml -2023-03-15 17:53:44.3859 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml -2023-03-15 17:53:44.3859 Info Copied empornium.yml -2023-03-15 17:53:44.3867 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml -2023-03-15 17:53:44.3867 Info Copied empornium2fa.yml -2023-03-15 17:53:44.3867 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml -2023-03-15 17:53:44.3877 Info Copied eniahd.yml -2023-03-15 17:53:44.3877 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml -2023-03-15 17:53:44.3877 Info Copied esharenet.yml -2023-03-15 17:53:44.3877 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml -2023-03-15 17:53:44.3889 Info Copied estone.yml -2023-03-15 17:53:44.3889 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml -2023-03-15 17:53:44.3889 Info Copied exkinoray.yml -2023-03-15 17:53:44.3897 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml -2023-03-15 17:53:44.3897 Info Copied extratorrent-st.yml -2023-03-15 17:53:44.3897 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml -2023-03-15 17:53:44.3908 Info Copied extremebits.yml -2023-03-15 17:53:44.3908 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml -2023-03-15 17:53:44.3908 Info Copied extremetorrents.yml -2023-03-15 17:53:44.3908 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml -2023-03-15 17:53:44.3919 Info Copied extremlymtorrents.yml -2023-03-15 17:53:44.3919 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml -2023-03-15 17:53:44.3919 Info Copied exttorrents.yml -2023-03-15 17:53:44.3928 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml -2023-03-15 17:53:44.3928 Info Copied eztv.yml -2023-03-15 17:53:44.3928 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml -2023-03-15 17:53:44.3938 Info Copied falkonvisionteam.yml -2023-03-15 17:53:44.3938 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml -2023-03-15 17:53:44.3938 Info Copied fanoin.yml -2023-03-15 17:53:44.3938 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml -2023-03-15 17:53:44.3950 Info Copied fantasticheaven.yml -2023-03-15 17:53:44.3950 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml -2023-03-15 17:53:44.3950 Info Copied fantastiko.yml -2023-03-15 17:53:44.3957 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml -2023-03-15 17:53:44.3957 Info Copied femdomcult.yml -2023-03-15 17:53:44.3957 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml -2023-03-15 17:53:44.3967 Info Copied fenyarnyek-tracker.yml -2023-03-15 17:53:44.3967 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml -2023-03-15 17:53:44.3967 Info Copied file-tracker.yml -2023-03-15 17:53:44.3967 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml -2023-03-15 17:53:44.3979 Info Copied filelisting.yml -2023-03-15 17:53:44.3979 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml -2023-03-15 17:53:44.3979 Info Copied finelite.yml -2023-03-15 17:53:44.3987 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml -2023-03-15 17:53:44.3987 Info Copied finvip.yml -2023-03-15 17:53:44.3987 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml -2023-03-15 17:53:44.3997 Info Copied firebit.yml -2023-03-15 17:53:44.3997 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml -2023-03-15 17:53:44.3997 Info Copied fluxzone.yml -2023-03-15 17:53:44.3997 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml -2023-03-15 17:53:44.4009 Info Copied freshmeat.yml -2023-03-15 17:53:44.4009 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml -2023-03-15 17:53:44.4009 Info Copied frozenlayer.yml -2023-03-15 17:53:44.4017 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml -2023-03-15 17:53:44.4017 Info Copied ftuapps.yml -2023-03-15 17:53:44.4017 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml -2023-03-15 17:53:44.4027 Info Copied funkytorrents.yml -2023-03-15 17:53:44.4027 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml -2023-03-15 17:53:44.4027 Info Copied fuzer.yml -2023-03-15 17:53:44.4027 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml -2023-03-15 17:53:44.4040 Info Copied gainbound.yml -2023-03-15 17:53:44.4040 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml -2023-03-15 17:53:44.4040 Info Copied gamestorrents.yml -2023-03-15 17:53:44.4048 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml -2023-03-15 17:53:44.4048 Info Copied gay-torrents.yml -2023-03-15 17:53:44.4048 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml -2023-03-15 17:53:44.4059 Info Copied gay-torrentsorg.yml -2023-03-15 17:53:44.4059 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml -2023-03-15 17:53:44.4059 Info Copied gaytorrentru.yml -2023-03-15 17:53:44.4067 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml -2023-03-15 17:53:44.4067 Info Copied generationfree-api.yml -2023-03-15 17:53:44.4067 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml -2023-03-15 17:53:44.4077 Info Copied genesismovement.yml -2023-03-15 17:53:44.4077 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml -2023-03-15 17:53:44.4077 Info Copied gigatorrents.yml -2023-03-15 17:53:44.4077 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml -2023-03-15 17:53:44.4088 Info Copied gimmepeers.yml -2023-03-15 17:53:44.4088 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml -2023-03-15 17:53:44.4088 Info Copied girotorrent.yml -2023-03-15 17:53:44.4088 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml -2023-03-15 17:53:44.4100 Info Copied gktorrent.yml -2023-03-15 17:53:44.4100 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml -2023-03-15 17:53:44.4107 Info Copied glodls.yml -2023-03-15 17:53:44.4107 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml -2023-03-15 17:53:44.4107 Info Copied greekdiamond.yml -2023-03-15 17:53:44.4107 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml -2023-03-15 17:53:44.4119 Info Copied greekteam.yml -2023-03-15 17:53:44.4119 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml -2023-03-15 17:53:44.4119 Info Copied gtorrentpro.yml -2023-03-15 17:53:44.4126 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml -2023-03-15 17:53:44.4126 Info Copied haidan.yml -2023-03-15 17:53:44.4126 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml -2023-03-15 17:53:44.4136 Info Copied haitang.yml -2023-03-15 17:53:44.4136 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml -2023-03-15 17:53:44.4136 Info Copied happyfappy.yml -2023-03-15 17:53:44.4136 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml -2023-03-15 17:53:44.4149 Info Copied hawke-uno.yml -2023-03-15 17:53:44.4149 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml -2023-03-15 17:53:44.4149 Info Copied hd-unit3d-api.yml -2023-03-15 17:53:44.4157 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml -2023-03-15 17:53:44.4157 Info Copied hd4fans.yml -2023-03-15 17:53:44.4157 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml -2023-03-15 17:53:44.4167 Info Copied hdarea.yml -2023-03-15 17:53:44.4167 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml -2023-03-15 17:53:44.4167 Info Copied hdatmos.yml -2023-03-15 17:53:44.4167 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml -2023-03-15 17:53:44.4178 Info Copied hdc.yml -2023-03-15 17:53:44.4178 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml -2023-03-15 17:53:44.4178 Info Copied hdchina.yml -2023-03-15 17:53:44.4187 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml -2023-03-15 17:53:44.4187 Info Copied hdcztorrent.yml -2023-03-15 17:53:44.4187 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml -2023-03-15 17:53:44.4197 Info Copied hddolby.yml -2023-03-15 17:53:44.4197 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml -2023-03-15 17:53:44.4197 Info Copied hdfans.yml -2023-03-15 17:53:44.4197 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml -2023-03-15 17:53:44.4209 Info Copied hdforever.yml -2023-03-15 17:53:44.4209 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml -2023-03-15 17:53:44.4209 Info Copied hdgalaktik.yml -2023-03-15 17:53:44.4216 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml -2023-03-15 17:53:44.4216 Info Copied hdhome.yml -2023-03-15 17:53:44.4216 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml -2023-03-15 17:53:44.4226 Info Copied hdmayi.yml -2023-03-15 17:53:44.4226 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml -2023-03-15 17:53:44.4226 Info Copied hdmonkey.yml -2023-03-15 17:53:44.4226 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml -2023-03-15 17:53:44.4239 Info Copied hdolimpo-api.yml -2023-03-15 17:53:44.4239 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml -2023-03-15 17:53:44.4239 Info Copied hdonly.yml -2023-03-15 17:53:44.4247 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml -2023-03-15 17:53:44.4247 Info Copied hdroute.yml -2023-03-15 17:53:44.4247 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml -2023-03-15 17:53:44.4257 Info Copied hdsky.yml -2023-03-15 17:53:44.4257 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml -2023-03-15 17:53:44.4257 Info Copied hdtime.yml -2023-03-15 17:53:44.4257 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml -2023-03-15 17:53:44.4270 Info Copied hdtorrentsit.yml -2023-03-15 17:53:44.4270 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml -2023-03-15 17:53:44.4270 Info Copied hdturk.yml -2023-03-15 17:53:44.4277 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml -2023-03-15 17:53:44.4277 Info Copied hdu.yml -2023-03-15 17:53:44.4277 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml -2023-03-15 17:53:44.4287 Info Copied hdzone.yml -2023-03-15 17:53:44.4287 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml -2023-03-15 17:53:44.4287 Info Copied hebits.yml -2023-03-15 17:53:44.4287 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml -2023-03-15 17:53:44.4299 Info Copied hellashut.yml -2023-03-15 17:53:44.4299 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml -2023-03-15 17:53:44.4299 Info Copied hhanclub.yml -2023-03-15 17:53:44.4307 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml -2023-03-15 17:53:44.4307 Info Copied houseofdevil.yml -2023-03-15 17:53:44.4307 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml -2023-03-15 17:53:44.4318 Info Copied hqmusic.yml -2023-03-15 17:53:44.4318 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml -2023-03-15 17:53:44.4318 Info Copied huntorrent.yml -2023-03-15 17:53:44.4318 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml -2023-03-15 17:53:44.4329 Info Copied icc2022.yml -2023-03-15 17:53:44.4329 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml -2023-03-15 17:53:44.4329 Info Copied idope.yml -2023-03-15 17:53:44.4336 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml -2023-03-15 17:53:44.4438 Info Copied ihdbits.yml -2023-03-15 17:53:44.4438 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml -2023-03-15 17:53:44.4438 Info Copied ilcorsaroblu.yml -2023-03-15 17:53:44.4447 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml -2023-03-15 17:53:44.4447 Info Copied ilcorsaronero.yml -2023-03-15 17:53:44.4447 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml -2023-03-15 17:53:44.4458 Info Copied immortuos.yml -2023-03-15 17:53:44.4458 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml -2023-03-15 17:53:44.4458 Info Copied indietorrents.yml -2023-03-15 17:53:44.4467 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml -2023-03-15 17:53:44.4467 Info Copied insanetracker.yml -2023-03-15 17:53:44.4467 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml -2023-03-15 17:53:44.4478 Info Copied internetarchive.yml -2023-03-15 17:53:44.4478 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml -2023-03-15 17:53:44.4478 Info Copied isohunt2.yml -2023-03-15 17:53:44.4478 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml -2023-03-15 17:53:44.4490 Info Copied itorrent.yml -2023-03-15 17:53:44.4490 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml -2023-03-15 17:53:44.4497 Info Copied jav-torrent.yml -2023-03-15 17:53:44.4497 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml -2023-03-15 17:53:44.4497 Info Copied jme-reunit3d-api.yml -2023-03-15 17:53:44.4497 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml -2023-03-15 17:53:44.4511 Info Copied joyhd.yml -2023-03-15 17:53:44.4511 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml -2023-03-15 17:53:44.4517 Info Copied jpopsuki.yml -2023-03-15 17:53:44.4517 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml -2023-03-15 17:53:44.4517 Info Copied jptv.yml -2023-03-15 17:53:44.4517 Info Attempting to copy kamept.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/kamept.yml to destination: /app/Jackett/Definitions/kamept.yml -2023-03-15 17:53:44.4530 Info Copied kamept.yml -2023-03-15 17:53:44.4530 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml -2023-03-15 17:53:44.4536 Info Copied karagarga.yml -2023-03-15 17:53:44.4536 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml -2023-03-15 17:53:44.4536 Info Copied keepfriends.yml -2023-03-15 17:53:44.4536 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml -2023-03-15 17:53:44.4549 Info Copied kickasstorrents-to.yml -2023-03-15 17:53:44.4549 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml -2023-03-15 17:53:44.4549 Info Copied kickasstorrents-ws.yml -2023-03-15 17:53:44.4557 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml -2023-03-15 17:53:44.4557 Info Copied kinorun.yml -2023-03-15 17:53:44.4557 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml -2023-03-15 17:53:44.4567 Info Copied kinozal.yml -2023-03-15 17:53:44.4567 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml -2023-03-15 17:53:44.4567 Info Copied knaben.yml -2023-03-15 17:53:44.4567 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml -2023-03-15 17:53:44.4580 Info Copied korsar.yml -2023-03-15 17:53:44.4580 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml -2023-03-15 17:53:44.4580 Info Copied krazyzone.yml -2023-03-15 17:53:44.4588 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml -2023-03-15 17:53:44.4588 Info Copied kufirc.yml -2023-03-15 17:53:44.4588 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml -2023-03-15 17:53:44.4598 Info Copied lastfiles.yml -2023-03-15 17:53:44.4629 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml -2023-03-15 17:53:44.4629 Info Copied lat-team-api.yml -2023-03-15 17:53:44.4629 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml -2023-03-15 17:53:44.4640 Info Copied learnbits.yml -2023-03-15 17:53:44.4640 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml -2023-03-15 17:53:44.4647 Info Copied learnflakes.yml -2023-03-15 17:53:44.4647 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml -2023-03-15 17:53:44.4647 Info Copied leech24.yml -2023-03-15 17:53:44.4647 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml -2023-03-15 17:53:44.4660 Info Copied lemonhd.yml -2023-03-15 17:53:44.4660 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml -2023-03-15 17:53:44.4667 Info Copied lepornoinfo.yml -2023-03-15 17:53:44.4667 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml -2023-03-15 17:53:44.4667 Info Copied les-cinephiles.yml -2023-03-15 17:53:44.4677 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml -2023-03-15 17:53:44.4677 Info Copied lesaloon.yml -2023-03-15 17:53:44.4677 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml -2023-03-15 17:53:44.4689 Info Copied libranet.yml -2023-03-15 17:53:44.4689 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml -2023-03-15 17:53:44.4689 Info Copied limetorrents.yml -2023-03-15 17:53:44.4697 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml -2023-03-15 17:53:44.4697 Info Copied limetorrentsclone.yml -2023-03-15 17:53:44.4697 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml -2023-03-15 17:53:44.4710 Info Copied linkomanija.yml -2023-03-15 17:53:44.4710 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml -2023-03-15 17:53:44.4717 Info Copied linuxtracker.yml -2023-03-15 17:53:44.4717 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml -2023-03-15 17:53:44.4717 Info Copied locadora.yml -2023-03-15 17:53:44.4717 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml -2023-03-15 17:53:44.4730 Info Copied losslessclub.yml -2023-03-15 17:53:44.4730 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml -2023-03-15 17:53:44.4737 Info Copied lst.yml -2023-03-15 17:53:44.4737 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml -2023-03-15 17:53:44.4737 Info Copied mactorrentsdownload.yml -2023-03-15 17:53:44.4737 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml -2023-03-15 17:53:44.4750 Info Copied madsrevolution.yml -2023-03-15 17:53:44.4750 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml -2023-03-15 17:53:44.4756 Info Copied magicheaven.yml -2023-03-15 17:53:44.4756 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml -2023-03-15 17:53:44.4756 Info Copied magico.yml -2023-03-15 17:53:44.4756 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml -2023-03-15 17:53:44.4768 Info Copied majomparade.yml -2023-03-15 17:53:44.4768 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml -2023-03-15 17:53:44.4782 Info Copied marinetracker.yml -2023-03-15 17:53:44.4782 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml -2023-03-15 17:53:44.4788 Info Copied mazepa.yml -2023-03-15 17:53:44.4788 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml -2023-03-15 17:53:44.4788 Info Copied megamixtracker.yml -2023-03-15 17:53:44.4788 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml -2023-03-15 17:53:44.4800 Info Copied megapeer.yml -2023-03-15 17:53:44.4800 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml -2023-03-15 17:53:44.4800 Info Copied mesevilag.yml -2023-03-15 17:53:44.4808 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml -2023-03-15 17:53:44.4808 Info Copied metaltracker.yml -2023-03-15 17:53:44.4808 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml -2023-03-15 17:53:44.4818 Info Copied mikan.yml -2023-03-15 17:53:44.4818 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml -2023-03-15 17:53:44.4818 Info Copied milkie.yml -2023-03-15 17:53:44.4818 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml -2023-03-15 17:53:44.4830 Info Copied miobt.yml -2023-03-15 17:53:44.4830 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml -2023-03-15 17:53:44.4837 Info Copied mircrew.yml -2023-03-15 17:53:44.4837 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml -2023-03-15 17:53:44.4837 Info Copied mixtapetorrent.yml -2023-03-15 17:53:44.4837 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml -2023-03-15 17:53:44.4848 Info Copied mma-torrents.yml -2023-03-15 17:53:44.4848 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml -2023-03-15 17:53:44.4848 Info Copied mnv.yml -2023-03-15 17:53:44.4848 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml -2023-03-15 17:53:44.4859 Info Copied mojblink.yml -2023-03-15 17:53:44.4859 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml -2023-03-15 17:53:44.4859 Info Copied mousebits.yml -2023-03-15 17:53:44.4867 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml -2023-03-15 17:53:44.4867 Info Copied moviesdvdr.yml -2023-03-15 17:53:44.4867 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml -2023-03-15 17:53:44.4876 Info Copied moviesite.yml -2023-03-15 17:53:44.4876 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml -2023-03-15 17:53:44.4876 Info Copied movietorrent.yml -2023-03-15 17:53:44.4876 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml -2023-03-15 17:53:44.4887 Info Copied movietorrentz.yml -2023-03-15 17:53:44.4887 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml -2023-03-15 17:53:44.4887 Info Copied mteamtp.yml -2023-03-15 17:53:44.4887 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml -2023-03-15 17:53:44.4899 Info Copied mteamtp2fa.yml -2023-03-15 17:53:44.4899 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml -2023-03-15 17:53:44.4899 Info Copied muziekfabriek.yml -2023-03-15 17:53:44.4907 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml -2023-03-15 17:53:44.4907 Info Copied mvgroupforum.yml -2023-03-15 17:53:44.4907 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml -2023-03-15 17:53:44.4917 Info Copied mvgroupmain.yml -2023-03-15 17:53:44.4917 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml -2023-03-15 17:53:44.4917 Info Copied mypornclub.yml -2023-03-15 17:53:44.4917 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml -2023-03-15 17:53:44.4928 Info Copied myspleen.yml -2023-03-15 17:53:44.4928 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml -2023-03-15 17:53:44.4928 Info Copied nethd.yml -2023-03-15 17:53:44.4928 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml -2023-03-15 17:53:44.4940 Info Copied newretro.yml -2023-03-15 17:53:44.4940 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml -2023-03-15 17:53:44.4940 Info Copied newstudio.yml -2023-03-15 17:53:44.4948 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml -2023-03-15 17:53:44.4948 Info Copied newstudiol.yml -2023-03-15 17:53:44.4948 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml -2023-03-15 17:53:44.4958 Info Copied nicept.yml -2023-03-15 17:53:44.4958 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml -2023-03-15 17:53:44.4958 Info Copied nipponsei.yml -2023-03-15 17:53:44.4958 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml -2023-03-15 17:53:44.4971 Info Copied nntt.yml -2023-03-15 17:53:44.4971 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml -2023-03-15 17:53:44.4978 Info Copied noname-club.yml -2023-03-15 17:53:44.4978 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml -2023-03-15 17:53:44.4992 Info Copied noname-clubl.yml -2023-03-15 17:53:44.4992 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml -2023-03-15 17:53:44.4998 Info Copied nyaasi.yml -2023-03-15 17:53:44.4998 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml -2023-03-15 17:53:44.4998 Info Copied oldtoonsworld.yml -2023-03-15 17:53:44.4998 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml -2023-03-15 17:53:44.5010 Info Copied onejav.yml -2023-03-15 17:53:44.5010 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml -2023-03-15 17:53:44.5010 Info Copied opencd.yml -2023-03-15 17:53:44.5018 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml -2023-03-15 17:53:44.5018 Info Copied oshenpt.yml -2023-03-15 17:53:44.5018 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml -2023-03-15 17:53:44.5071 Info Copied ourbits.yml -2023-03-15 17:53:44.5071 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml -2023-03-15 17:53:44.5078 Info Copied p2pbg.yml -2023-03-15 17:53:44.5078 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml -2023-03-15 17:53:44.5078 Info Copied parnuxi.yml -2023-03-15 17:53:44.5087 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml -2023-03-15 17:53:44.5103 Info Copied partis.yml -2023-03-15 17:53:44.5103 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml -2023-03-15 17:53:44.5103 Info Copied pctorrent.yml -2023-03-15 17:53:44.5146 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml -2023-03-15 17:53:44.5146 Info Copied peeratiko.yml -2023-03-15 17:53:44.5146 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml -2023-03-15 17:53:44.5157 Info Copied peersfm.yml -2023-03-15 17:53:44.5157 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml -2023-03-15 17:53:44.5157 Info Copied pier720.yml -2023-03-15 17:53:44.5157 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml -2023-03-15 17:53:44.5167 Info Copied pignetwork.yml -2023-03-15 17:53:44.5167 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml -2023-03-15 17:53:44.5167 Info Copied piratbit.yml -2023-03-15 17:53:44.5167 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml -2023-03-15 17:53:44.5180 Info Copied piratbitl.yml -2023-03-15 17:53:44.5180 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml -2023-03-15 17:53:44.5180 Info Copied pixelcove.yml -2023-03-15 17:53:44.5187 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml -2023-03-15 17:53:44.5187 Info Copied pixelcove2fa.yml -2023-03-15 17:53:44.5187 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml -2023-03-15 17:53:44.5187 Info Copied polishsource.yml -2023-03-15 17:53:44.5198 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml -2023-03-15 17:53:44.5198 Info Copied polishtracker-api.yml -2023-03-15 17:53:44.5198 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml -2023-03-15 17:53:44.5206 Info Copied pornbay.yml -2023-03-15 17:53:44.5206 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml -2023-03-15 17:53:44.5206 Info Copied pornoslab.yml -2023-03-15 17:53:44.5206 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml -2023-03-15 17:53:44.5218 Info Copied pornotorrent.yml -2023-03-15 17:53:44.5218 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml -2023-03-15 17:53:44.5218 Info Copied portugas-api.yml -2023-03-15 17:53:44.5218 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml -2023-03-15 17:53:44.5230 Info Copied potuk.yml -2023-03-15 17:53:44.5230 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml -2023-03-15 17:53:44.5239 Info Copied proaudiotorrents.yml -2023-03-15 17:53:44.5239 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml -2023-03-15 17:53:44.5247 Info Copied proporno.yml -2023-03-15 17:53:44.5247 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml -2023-03-15 17:53:44.5247 Info Copied ptchina.yml -2023-03-15 17:53:44.5258 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml -2023-03-15 17:53:44.5258 Info Copied pterclub.yml -2023-03-15 17:53:44.5258 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml -2023-03-15 17:53:44.5267 Info Copied ptfiles.yml -2023-03-15 17:53:44.5267 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml -2023-03-15 17:53:44.5267 Info Copied pthome.yml -2023-03-15 17:53:44.5267 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml -2023-03-15 17:53:44.5281 Info Copied ptmsg.yml -2023-03-15 17:53:44.5281 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml -2023-03-15 17:53:44.5288 Info Copied ptsbao.yml -2023-03-15 17:53:44.5288 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml -2023-03-15 17:53:44.5288 Info Copied pttime.yml -2023-03-15 17:53:44.5288 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml -2023-03-15 17:53:44.5299 Info Copied punkshorror.yml -2023-03-15 17:53:44.5299 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml -2023-03-15 17:53:44.5299 Info Copied puntotorrent.yml -2023-03-15 17:53:44.5306 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml -2023-03-15 17:53:44.5306 Info Copied pussytorrents.yml -2023-03-15 17:53:44.5306 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml -2023-03-15 17:53:44.5323 Info Copied putao.yml -2023-03-15 17:53:44.5323 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml -2023-03-15 17:53:44.5323 Info Copied puurhollands.yml -2023-03-15 17:53:44.5323 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml -2023-03-15 17:53:44.5323 Info Copied pwtorrents.yml -2023-03-15 17:53:44.5323 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml -2023-03-15 17:53:44.5339 Info Copied r3vwtf.yml -2023-03-15 17:53:44.5339 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml -2023-03-15 17:53:44.5339 Info Copied racing4everyone-api.yml -2023-03-15 17:53:44.5346 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml -2023-03-15 17:53:44.5346 Info Copied racingforme.yml -2023-03-15 17:53:44.5346 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml -2023-03-15 17:53:44.5346 Info Copied rainbowtracker.yml -2023-03-15 17:53:44.5357 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml -2023-03-15 17:53:44.5357 Info Copied rapidzona.yml -2023-03-15 17:53:44.5357 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml -2023-03-15 17:53:44.5367 Info Copied redbits-api.yml -2023-03-15 17:53:44.5367 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml -2023-03-15 17:53:44.5367 Info Copied redstartorrent.yml -2023-03-15 17:53:44.5367 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml -2023-03-15 17:53:44.5378 Info Copied reelflix-api.yml -2023-03-15 17:53:44.5378 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml -2023-03-15 17:53:44.5378 Info Copied resurrectthenet.yml -2023-03-15 17:53:44.5378 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml -2023-03-15 17:53:44.5389 Info Copied rgfootball.yml -2023-03-15 17:53:44.5389 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml -2023-03-15 17:53:44.5389 Info Copied rintor.yml -2023-03-15 17:53:44.5389 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml -2023-03-15 17:53:44.5399 Info Copied rintornet.yml -2023-03-15 17:53:44.5399 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml -2023-03-15 17:53:44.5399 Info Copied riperam.yml -2023-03-15 17:53:44.5407 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml -2023-03-15 17:53:44.5407 Info Copied rockbox.yml -2023-03-15 17:53:44.5407 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml -2023-03-15 17:53:44.5407 Info Copied romanianmetaltorrents.yml -2023-03-15 17:53:44.5417 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml -2023-03-15 17:53:44.5417 Info Copied rptorrents.yml -2023-03-15 17:53:44.5417 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml -2023-03-15 17:53:44.5417 Info Copied rudub.yml -2023-03-15 17:53:44.5428 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml -2023-03-15 17:53:44.5428 Info Copied rus-media.yml -2023-03-15 17:53:44.5428 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml -2023-03-15 17:53:44.5437 Info Copied rustorka.yml -2023-03-15 17:53:44.5437 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml -2023-03-15 17:53:44.5437 Info Copied rutor.yml -2023-03-15 17:53:44.5437 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml -2023-03-15 17:53:44.5448 Info Copied rutracker-ru.yml -2023-03-15 17:53:44.5448 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml -2023-03-15 17:53:44.5448 Info Copied satclubbing.yml -2023-03-15 17:53:44.5448 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml -2023-03-15 17:53:44.5458 Info Copied scenerush.yml -2023-03-15 17:53:44.5458 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml -2023-03-15 17:53:44.5458 Info Copied sdbits.yml -2023-03-15 17:53:44.5458 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml -2023-03-15 17:53:44.5469 Info Copied seedfile.yml -2023-03-15 17:53:44.5469 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml -2023-03-15 17:53:44.5469 Info Copied seedoff.yml -2023-03-15 17:53:44.5469 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml -2023-03-15 17:53:44.5479 Info Copied selezen.yml -2023-03-15 17:53:44.5479 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml -2023-03-15 17:53:44.5479 Info Copied sexypics.yml -2023-03-15 17:53:44.5479 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml -2023-03-15 17:53:44.5489 Info Copied shanaproject.yml -2023-03-15 17:53:44.5489 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml -2023-03-15 17:53:44.5489 Info Copied shareisland-api.yml -2023-03-15 17:53:44.5497 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml -2023-03-15 17:53:44.5497 Info Copied sharewood.yml -2023-03-15 17:53:44.5497 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml -2023-03-15 17:53:44.5497 Info Copied sharkpt.yml -2023-03-15 17:53:44.5507 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml -2023-03-15 17:53:44.5507 Info Copied showrss.yml -2023-03-15 17:53:44.5507 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml -2023-03-15 17:53:44.5507 Info Copied siambit.yml -2023-03-15 17:53:44.5517 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml -2023-03-15 17:53:44.5517 Info Copied skipthecommercials-api.yml -2023-03-15 17:53:44.5517 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml -2023-03-15 17:53:44.5517 Info Copied skipthetrailers.yml -2023-03-15 17:53:44.5527 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml -2023-03-15 17:53:44.5527 Info Copied sktorrent-org.yml -2023-03-15 17:53:44.5527 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml -2023-03-15 17:53:44.5527 Info Copied sktorrent.yml -2023-03-15 17:53:44.5537 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml -2023-03-15 17:53:44.5537 Info Copied slosoul.yml -2023-03-15 17:53:44.5537 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml -2023-03-15 17:53:44.5558 Info Copied snowpt.yml -2023-03-15 17:53:44.5558 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml -2023-03-15 17:53:44.5558 Info Copied solidtorrents.yml -2023-03-15 17:53:44.5558 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml -2023-03-15 17:53:44.5569 Info Copied sosulki.yml -2023-03-15 17:53:44.5569 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml -2023-03-15 17:53:44.5569 Info Copied soulvoice.yml -2023-03-15 17:53:44.5569 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml -2023-03-15 17:53:44.5579 Info Copied speedmasterhd.yml -2023-03-15 17:53:44.5579 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml -2023-03-15 17:53:44.5592 Info Copied speedtorrentreloaded.yml -2023-03-15 17:53:44.5592 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml -2023-03-15 17:53:44.5598 Info Copied spidertk.yml -2023-03-15 17:53:44.5598 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml -2023-03-15 17:53:44.5598 Info Copied spiritofrevolution.yml -2023-03-15 17:53:44.5598 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml -2023-03-15 17:53:44.5609 Info Copied sporthd.yml -2023-03-15 17:53:44.5609 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml -2023-03-15 17:53:44.5622 Info Copied sportscult.yml -2023-03-15 17:53:44.5622 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml -2023-03-15 17:53:44.5627 Info Copied springsunday.yml -2023-03-15 17:53:44.5627 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml -2023-03-15 17:53:44.5627 Info Copied sugoimusic.yml -2023-03-15 17:53:44.5627 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml -2023-03-15 17:53:44.5638 Info Copied sukebeinyaasi.yml -2023-03-15 17:53:44.5638 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml -2023-03-15 17:53:44.5638 Info Copied superbits.yml -2023-03-15 17:53:44.5638 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml -2023-03-15 17:53:44.5649 Info Copied swarmazon-api.yml -2023-03-15 17:53:44.5649 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml -2023-03-15 17:53:44.5649 Info Copied tapochek.yml -2023-03-15 17:53:44.5657 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml -2023-03-15 17:53:44.5657 Info Copied tasmanit.yml -2023-03-15 17:53:44.5657 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml -2023-03-15 17:53:44.5667 Info Copied teamctgame.yml -2023-03-15 17:53:44.5667 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml -2023-03-15 17:53:44.5667 Info Copied teamhd.yml -2023-03-15 17:53:44.5667 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml -2023-03-15 17:53:44.5678 Info Copied teamos.yml -2023-03-15 17:53:44.5678 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml -2023-03-15 17:53:44.5678 Info Copied tekno3d.yml -2023-03-15 17:53:44.5678 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml -2023-03-15 17:53:44.5689 Info Copied tellytorrent-api.yml -2023-03-15 17:53:44.5689 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml -2023-03-15 17:53:44.5689 Info Copied teracod.yml -2023-03-15 17:53:44.5697 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml -2023-03-15 17:53:44.5697 Info Copied the-crazy-ones.yml -2023-03-15 17:53:44.5697 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml -2023-03-15 17:53:44.5706 Info Copied thedarkcommunity-api.yml -2023-03-15 17:53:44.5706 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml -2023-03-15 17:53:44.5706 Info Copied theempire.yml -2023-03-15 17:53:44.5706 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml -2023-03-15 17:53:44.5717 Info Copied thefallingangels.yml -2023-03-15 17:53:44.5717 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml -2023-03-15 17:53:44.5717 Info Copied thegeeks.yml -2023-03-15 17:53:44.5717 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml -2023-03-15 17:53:44.5728 Info Copied theleachzone.yml -2023-03-15 17:53:44.5728 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml -2023-03-15 17:53:44.5728 Info Copied themixingbowl.yml -2023-03-15 17:53:44.5728 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml -2023-03-15 17:53:44.5739 Info Copied thenewfun.yml -2023-03-15 17:53:44.5739 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml -2023-03-15 17:53:44.5739 Info Copied theoccult.yml -2023-03-15 17:53:44.5739 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml -2023-03-15 17:53:44.5750 Info Copied theoldschool-api.yml -2023-03-15 17:53:44.5750 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml -2023-03-15 17:53:44.5750 Info Copied thepiratebay.yml -2023-03-15 17:53:44.5757 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml -2023-03-15 17:53:44.5757 Info Copied theplace.yml -2023-03-15 17:53:44.5757 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml -2023-03-15 17:53:44.5766 Info Copied thesceneplace.yml -2023-03-15 17:53:44.5766 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml -2023-03-15 17:53:44.5766 Info Copied theshinning-api.yml -2023-03-15 17:53:44.5766 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml -2023-03-15 17:53:44.5777 Info Copied theshow.yml -2023-03-15 17:53:44.5777 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml -2023-03-15 17:53:44.5777 Info Copied thevault.yml -2023-03-15 17:53:44.5777 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml -2023-03-15 17:53:44.5788 Info Copied tjupt.yml -2023-03-15 17:53:44.5788 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml -2023-03-15 17:53:44.5788 Info Copied tlfbits.yml -2023-03-15 17:53:44.5788 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml -2023-03-15 17:53:44.5799 Info Copied tmghub.yml -2023-03-15 17:53:44.5799 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml -2023-03-15 17:53:44.5799 Info Copied tokyotosho.yml -2023-03-15 17:53:44.5799 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml -2023-03-15 17:53:44.5810 Info Copied torlock.yml -2023-03-15 17:53:44.5810 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml -2023-03-15 17:53:44.5810 Info Copied tornado.yml -2023-03-15 17:53:44.5817 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml -2023-03-15 17:53:44.5817 Info Copied torrent-explosiv.yml -2023-03-15 17:53:44.5817 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml -2023-03-15 17:53:44.5827 Info Copied torrent-pirat.yml -2023-03-15 17:53:44.5827 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml -2023-03-15 17:53:44.5827 Info Copied torrent-turk.yml -2023-03-15 17:53:44.5827 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml -2023-03-15 17:53:44.5839 Info Copied torrent9.yml -2023-03-15 17:53:44.5839 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml -2023-03-15 17:53:44.5839 Info Copied torrent911.yml -2023-03-15 17:53:44.5839 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml -2023-03-15 17:53:44.5850 Info Copied torrent9clone.yml -2023-03-15 17:53:44.5850 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml -2023-03-15 17:53:44.5850 Info Copied torrentbd.yml -2023-03-15 17:53:44.5857 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml -2023-03-15 17:53:44.5857 Info Copied torrentby.yml -2023-03-15 17:53:44.5857 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml -2023-03-15 17:53:44.5867 Info Copied torrentccf.yml -2023-03-15 17:53:44.5867 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml -2023-03-15 17:53:44.5867 Info Copied torrentcore.yml -2023-03-15 17:53:44.5867 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml -2023-03-15 17:53:44.5877 Info Copied torrentdownload.yml -2023-03-15 17:53:44.5877 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml -2023-03-15 17:53:44.5877 Info Copied torrentdownloads.yml -2023-03-15 17:53:44.5877 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml -2023-03-15 17:53:44.5887 Info Copied torrentfunk.yml -2023-03-15 17:53:44.5887 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml -2023-03-15 17:53:44.5887 Info Copied torrentgalaxy.yml -2023-03-15 17:53:44.5887 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml -2023-03-15 17:53:44.5898 Info Copied torrenthr.yml -2023-03-15 17:53:44.5898 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml -2023-03-15 17:53:44.5898 Info Copied torrenting.yml -2023-03-15 17:53:44.5898 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml -2023-03-15 17:53:44.5908 Info Copied torrentkitty.yml -2023-03-15 17:53:44.5908 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml -2023-03-15 17:53:44.5908 Info Copied torrentland.yml -2023-03-15 17:53:44.5908 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml -2023-03-15 17:53:44.5919 Info Copied torrentleech-pl.yml -2023-03-15 17:53:44.5919 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml -2023-03-15 17:53:44.5919 Info Copied torrentleech.yml -2023-03-15 17:53:44.5919 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml -2023-03-15 17:53:44.5929 Info Copied torrentlt.yml -2023-03-15 17:53:44.5929 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml -2023-03-15 17:53:44.5929 Info Copied torrentmasters.yml -2023-03-15 17:53:44.5929 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml -2023-03-15 17:53:44.5940 Info Copied torrentoyunindir.yml -2023-03-15 17:53:44.5940 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml -2023-03-15 17:53:44.5940 Info Copied torrentproject2.yml -2023-03-15 17:53:44.5947 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml -2023-03-15 17:53:44.5947 Info Copied torrentqq.yml -2023-03-15 17:53:44.5947 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml -2023-03-15 17:53:44.5947 Info Copied torrentsectorcrew.yml -2023-03-15 17:53:44.5957 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml -2023-03-15 17:53:44.5968 Info Copied torrentseeds-api.yml -2023-03-15 17:53:44.5968 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml -2023-03-15 17:53:44.5968 Info Copied torrentsir.yml -2023-03-15 17:53:44.5968 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml -2023-03-15 17:53:44.5979 Info Copied torrentslocal.yml -2023-03-15 17:53:44.5979 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml -2023-03-15 17:53:44.5979 Info Copied torrentv.yml -2023-03-15 17:53:44.5979 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml -2023-03-15 17:53:44.5990 Info Copied torrentview.yml -2023-03-15 17:53:44.5990 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml -2023-03-15 17:53:44.5990 Info Copied torrentwhiz.yml -2023-03-15 17:53:44.5997 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml -2023-03-15 17:53:44.5997 Info Copied torrentz2eu.yml -2023-03-15 17:53:44.5997 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml -2023-03-15 17:53:44.5997 Info Copied torrentz2nz.yml -2023-03-15 17:53:44.6008 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml -2023-03-15 17:53:44.6008 Info Copied totallykids.yml -2023-03-15 17:53:44.6008 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml -2023-03-15 17:53:44.6017 Info Copied totheglory.yml -2023-03-15 17:53:44.6017 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml -2023-03-15 17:53:44.6017 Info Copied totheglorycookie.yml -2023-03-15 17:53:44.6017 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml -2023-03-15 17:53:44.6028 Info Copied traht.yml -2023-03-15 17:53:44.6028 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml -2023-03-15 17:53:44.6028 Info Copied trancetraffic.yml -2023-03-15 17:53:44.6028 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml -2023-03-15 17:53:44.6039 Info Copied trezzor.yml -2023-03-15 17:53:44.6039 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml -2023-03-15 17:53:44.6039 Info Copied tribalmixes.yml -2023-03-15 17:53:44.6039 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml -2023-03-15 17:53:44.6049 Info Copied trupornolabs.yml -2023-03-15 17:53:44.6049 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml -2023-03-15 17:53:44.6049 Info Copied turkseed.yml -2023-03-15 17:53:44.6049 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml -2023-03-15 17:53:44.6060 Info Copied turktorrent.yml -2023-03-15 17:53:44.6060 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml -2023-03-15 17:53:44.6060 Info Copied tvchaosuk.yml -2023-03-15 17:53:44.6067 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml -2023-03-15 17:53:44.6067 Info Copied tvroad.yml -2023-03-15 17:53:44.6067 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml -2023-03-15 17:53:44.6067 Info Copied twilight.yml -2023-03-15 17:53:44.6078 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml -2023-03-15 17:53:44.6078 Info Copied u2.yml -2023-03-15 17:53:44.6078 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml -2023-03-15 17:53:44.6087 Info Copied uhdbits.yml -2023-03-15 17:53:44.6087 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml -2023-03-15 17:53:44.6087 Info Copied uniondht.yml -2023-03-15 17:53:44.6087 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml -2023-03-15 17:53:44.6098 Info Copied unionfansub.yml -2023-03-15 17:53:44.6098 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml -2023-03-15 17:53:44.6098 Info Copied uniongang.yml -2023-03-15 17:53:44.6098 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml -2023-03-15 17:53:44.6109 Info Copied unleashthecartoons.yml -2023-03-15 17:53:44.6109 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml -2023-03-15 17:53:44.6109 Info Copied unlimitz.yml -2023-03-15 17:53:44.6109 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml -2023-03-15 17:53:44.6120 Info Copied vsthouse.yml -2023-03-15 17:53:44.6120 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml -2023-03-15 17:53:44.6120 Info Copied vsttorrents.yml -2023-03-15 17:53:44.6127 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml -2023-03-15 17:53:44.6127 Info Copied vtorrent.yml -2023-03-15 17:53:44.6127 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml -2023-03-15 17:53:44.6127 Info Copied whiteangel.yml -2023-03-15 17:53:44.6138 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml -2023-03-15 17:53:44.6138 Info Copied wihd.yml -2023-03-15 17:53:44.6138 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml -2023-03-15 17:53:44.6147 Info Copied world-of-tomorrow.yml -2023-03-15 17:53:44.6147 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml -2023-03-15 17:53:44.6147 Info Copied x-ite.me.yml -2023-03-15 17:53:44.6147 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml -2023-03-15 17:53:44.6158 Info Copied xbytes2.yml -2023-03-15 17:53:44.6158 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml -2023-03-15 17:53:44.6158 Info Copied xthor-api.yml -2023-03-15 17:53:44.6158 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml -2023-03-15 17:53:44.6168 Info Copied xtorrenty.yml -2023-03-15 17:53:44.6168 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml -2023-03-15 17:53:44.6168 Info Copied xtremebytes.yml -2023-03-15 17:53:44.6168 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml -2023-03-15 17:53:44.6180 Info Copied xwtclassics.yml -2023-03-15 17:53:44.6180 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml -2023-03-15 17:53:44.6180 Info Copied xwtorrents.yml -2023-03-15 17:53:44.6187 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml -2023-03-15 17:53:44.6187 Info Copied xxxadulttorrent.yml -2023-03-15 17:53:44.6187 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml -2023-03-15 17:53:44.6187 Info Copied xxxtor.yml -2023-03-15 17:53:44.6197 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml -2023-03-15 17:53:44.6197 Info Copied xxxtorrents.yml -2023-03-15 17:53:44.6197 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml -2023-03-15 17:53:44.6207 Info Copied ydypt.yml -2023-03-15 17:53:44.6207 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml -2023-03-15 17:53:44.6207 Info Copied yggcookie.yml -2023-03-15 17:53:44.6207 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml -2023-03-15 17:53:44.6218 Info Copied yggtorrent.yml -2023-03-15 17:53:44.6218 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml -2023-03-15 17:53:44.6218 Info Copied yourbittorrent.yml -2023-03-15 17:53:44.6218 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml -2023-03-15 17:53:44.6229 Info Copied yts.yml -2023-03-15 17:53:44.6229 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml -2023-03-15 17:53:44.6229 Info Copied zamundanet.yml -2023-03-15 17:53:44.6229 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml -2023-03-15 17:53:44.6296 Info Copied zelkaorg.yml -2023-03-15 17:53:44.6297 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml -2023-03-15 17:53:44.6297 Info Copied zetorrents.yml -2023-03-15 17:53:44.6297 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml -2023-03-15 17:53:44.6307 Info Copied zmpt.yml -2023-03-15 17:53:44.6307 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml -2023-03-15 17:53:44.6307 Info Copied zomb.yml -2023-03-15 17:53:44.6307 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml -2023-03-15 17:53:44.6318 Info Copied ztracker.yml -2023-03-15 17:53:44.6318 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll -2023-03-15 17:53:44.6318 Info Copied FlareSolverrSharp.dll -2023-03-15 17:53:44.6318 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll -2023-03-15 17:53:44.6335 Info Copied ICSharpCode.SharpZipLib.dll -2023-03-15 17:53:44.6337 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh -2023-03-15 17:53:44.6337 Info Copied install_service_systemd.sh -2023-03-15 17:53:44.6337 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/jackett to destination: /app/Jackett/jackett -2023-03-15 17:53:44.6348 Info Copied jackett -2023-03-15 17:53:44.6348 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh -2023-03-15 17:53:44.6348 Info Copied jackett_launcher.sh -2023-03-15 17:53:44.6348 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll -2023-03-15 17:53:44.6397 Info Copied Jackett.Common.dll -2023-03-15 17:53:44.6397 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb -2023-03-15 17:53:44.6408 Info Copied Jackett.Common.pdb -2023-03-15 17:53:44.6408 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json -2023-03-15 17:53:44.6408 Info Copied jackett.deps.json -2023-03-15 17:53:44.6418 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll -2023-03-15 17:53:44.6429 Info Copied jackett.dll -2023-03-15 17:53:44.6429 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb -2023-03-15 17:53:44.6429 Info Copied jackett.pdb -2023-03-15 17:53:44.6437 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json -2023-03-15 17:53:44.6437 Info Copied jackett.runtimeconfig.json -2023-03-15 17:53:44.6437 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater -2023-03-15 17:53:44.6449 Info Copied JackettUpdater -2023-03-15 17:53:44.6449 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json -2023-03-15 17:53:44.6449 Info Copied JackettUpdater.deps.json -2023-03-15 17:53:44.6449 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll -2023-03-15 17:53:44.6466 Info Copied JackettUpdater.dll -2023-03-15 17:53:44.6468 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb -2023-03-15 17:53:44.6468 Info Copied JackettUpdater.pdb -2023-03-15 17:53:44.6468 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json -2023-03-15 17:53:44.6478 Info Copied JackettUpdater.runtimeconfig.json -2023-03-15 17:53:44.6478 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so -2023-03-15 17:53:44.6514 Info Copied libclrjit.so -2023-03-15 17:53:44.6516 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so -2023-03-15 17:53:44.6629 Info Copied libcoreclr.so -2023-03-15 17:53:44.6629 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so -2023-03-15 17:53:44.6648 Info Copied libcoreclrtraceptprovider.so -2023-03-15 17:53:44.6648 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so -2023-03-15 17:53:44.6672 Info Copied libdbgshim.so -2023-03-15 17:53:44.6672 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so -2023-03-15 17:53:44.6683 Info Copied libhostfxr.so -2023-03-15 17:53:44.6683 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so -2023-03-15 17:53:44.6695 Info Copied libhostpolicy.so -2023-03-15 17:53:44.6697 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so -2023-03-15 17:53:44.6697 Info Copied libMono.Unix.so -2023-03-15 17:53:44.6697 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so -2023-03-15 17:53:44.6750 Info Copied libmscordaccore.so -2023-03-15 17:53:44.6750 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so -2023-03-15 17:53:44.6783 Info Copied libmscordbi.so -2023-03-15 17:53:44.6783 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so -2023-03-15 17:53:44.6791 Info Copied libSystem.Globalization.Native.so -2023-03-15 17:53:44.6791 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so -2023-03-15 17:53:44.6810 Info Copied libSystem.IO.Compression.Native.so -2023-03-15 17:53:44.6810 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so -2023-03-15 17:53:44.6817 Info Copied libSystem.Native.so -2023-03-15 17:53:44.6817 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so -2023-03-15 17:53:44.6817 Info Copied libSystem.Net.Security.Native.so -2023-03-15 17:53:44.6817 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so -2023-03-15 17:53:44.6833 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so -2023-03-15 17:53:44.6833 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/LICENSE to destination: /app/Jackett/LICENSE -2023-03-15 17:53:44.6838 Info Copied LICENSE -2023-03-15 17:53:44.6838 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll -2023-03-15 17:53:44.6838 Info Copied Microsoft.AspNetCore.Antiforgery.dll -2023-03-15 17:53:44.6847 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-03-15 17:53:44.6847 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-03-15 17:53:44.6847 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll -2023-03-15 17:53:44.6860 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll -2023-03-15 17:53:44.6860 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll -2023-03-15 17:53:44.6876 Info Copied Microsoft.AspNetCore.Authentication.Core.dll -2023-03-15 17:53:44.6876 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll -2023-03-15 17:53:44.6876 Info Copied Microsoft.AspNetCore.Authentication.dll -2023-03-15 17:53:44.6876 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll -2023-03-15 17:53:44.6893 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll -2023-03-15 17:53:44.6893 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll -2023-03-15 17:53:44.6900 Info Copied Microsoft.AspNetCore.Authorization.dll -2023-03-15 17:53:44.6900 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll -2023-03-15 17:53:44.6907 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll -2023-03-15 17:53:44.6907 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll -2023-03-15 17:53:44.6907 Info Copied Microsoft.AspNetCore.Components.Authorization.dll -2023-03-15 17:53:44.6907 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll -2023-03-15 17:53:44.6926 Info Copied Microsoft.AspNetCore.Components.dll -2023-03-15 17:53:44.6928 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll -2023-03-15 17:53:44.6928 Info Copied Microsoft.AspNetCore.Components.Forms.dll -2023-03-15 17:53:44.6928 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll -2023-03-15 17:53:44.6950 Info Copied Microsoft.AspNetCore.Components.Server.dll -2023-03-15 17:53:44.6950 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll -2023-03-15 17:53:44.6960 Info Copied Microsoft.AspNetCore.Components.Web.dll -2023-03-15 17:53:44.6960 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll -2023-03-15 17:53:44.6968 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll -2023-03-15 17:53:44.6968 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll -2023-03-15 17:53:44.6968 Info Copied Microsoft.AspNetCore.CookiePolicy.dll -2023-03-15 17:53:44.6968 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll -2023-03-15 17:53:44.6982 Info Copied Microsoft.AspNetCore.Cors.dll -2023-03-15 17:53:44.6982 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll -2023-03-15 17:53:44.6991 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll -2023-03-15 17:53:44.6991 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-03-15 17:53:44.6998 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-03-15 17:53:44.6998 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-03-15 17:53:44.6998 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-03-15 17:53:44.6998 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll -2023-03-15 17:53:44.7015 Info Copied Microsoft.AspNetCore.DataProtection.dll -2023-03-15 17:53:44.7017 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-03-15 17:53:44.7017 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-03-15 17:53:44.7017 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-03-15 17:53:44.7028 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-03-15 17:53:44.7028 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll -2023-03-15 17:53:44.7040 Info Copied Microsoft.AspNetCore.Diagnostics.dll -2023-03-15 17:53:44.7040 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-03-15 17:53:44.7040 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-03-15 17:53:44.7047 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll -2023-03-15 17:53:44.7047 Info Copied Microsoft.AspNetCore.dll -2023-03-15 17:53:44.7047 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll -2023-03-15 17:53:44.7060 Info Copied Microsoft.AspNetCore.HostFiltering.dll -2023-03-15 17:53:44.7060 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-03-15 17:53:44.7060 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-03-15 17:53:44.7068 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll -2023-03-15 17:53:44.7079 Info Copied Microsoft.AspNetCore.Hosting.dll -2023-03-15 17:53:44.7079 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-03-15 17:53:44.7079 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-03-15 17:53:44.7086 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll -2023-03-15 17:53:44.7086 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll -2023-03-15 17:53:44.7086 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll -2023-03-15 17:53:44.7108 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll -2023-03-15 17:53:44.7108 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll -2023-03-15 17:53:44.7108 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll -2023-03-15 17:53:44.7108 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll -2023-03-15 17:53:44.7124 Info Copied Microsoft.AspNetCore.Http.Connections.dll -2023-03-15 17:53:44.7124 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll -2023-03-15 17:53:44.7134 Info Copied Microsoft.AspNetCore.Http.dll -2023-03-15 17:53:44.7134 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll -2023-03-15 17:53:44.7145 Info Copied Microsoft.AspNetCore.Http.Extensions.dll -2023-03-15 17:53:44.7147 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll -2023-03-15 17:53:44.7147 Info Copied Microsoft.AspNetCore.Http.Features.dll -2023-03-15 17:53:44.7147 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll -2023-03-15 17:53:44.7160 Info Copied Microsoft.AspNetCore.Http.Results.dll -2023-03-15 17:53:44.7160 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll -2023-03-15 17:53:44.7168 Info Copied Microsoft.AspNetCore.HttpLogging.dll -2023-03-15 17:53:44.7168 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll -2023-03-15 17:53:44.7168 Info Copied Microsoft.AspNetCore.HttpOverrides.dll -2023-03-15 17:53:44.7177 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll -2023-03-15 17:53:44.7177 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll -2023-03-15 17:53:44.7177 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll -2023-03-15 17:53:44.7191 Info Copied Microsoft.AspNetCore.Identity.dll -2023-03-15 17:53:44.7191 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll -2023-03-15 17:53:44.7197 Info Copied Microsoft.AspNetCore.JsonPatch.dll -2023-03-15 17:53:44.7197 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll -2023-03-15 17:53:44.7197 Info Copied Microsoft.AspNetCore.Localization.dll -2023-03-15 17:53:44.7197 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll -2023-03-15 17:53:44.7209 Info Copied Microsoft.AspNetCore.Localization.Routing.dll -2023-03-15 17:53:44.7209 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll -2023-03-15 17:53:44.7209 Info Copied Microsoft.AspNetCore.Metadata.dll -2023-03-15 17:53:44.7209 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-03-15 17:53:44.7224 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-03-15 17:53:44.7224 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-03-15 17:53:44.7232 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-03-15 17:53:44.7232 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll -2023-03-15 17:53:44.7268 Info Copied Microsoft.AspNetCore.Mvc.Core.dll -2023-03-15 17:53:44.7268 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll -2023-03-15 17:53:44.7268 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll -2023-03-15 17:53:44.7268 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-03-15 17:53:44.7283 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-03-15 17:53:44.7283 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll -2023-03-15 17:53:44.7289 Info Copied Microsoft.AspNetCore.Mvc.dll -2023-03-15 17:53:44.7289 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-03-15 17:53:44.7289 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-03-15 17:53:44.7298 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-03-15 17:53:44.7298 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-03-15 17:53:44.7298 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll -2023-03-15 17:53:44.7311 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll -2023-03-15 17:53:44.7311 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-03-15 17:53:44.7319 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-03-15 17:53:44.7319 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll -2023-03-15 17:53:44.7329 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll -2023-03-15 17:53:44.7329 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-03-15 17:53:44.7342 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-03-15 17:53:44.7342 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-03-15 17:53:44.7359 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-03-15 17:53:44.7359 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-03-15 17:53:44.7384 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-03-15 17:53:44.7386 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll -2023-03-15 17:53:44.7386 Info Copied Microsoft.AspNetCore.Razor.dll -2023-03-15 17:53:44.7386 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll -2023-03-15 17:53:44.7398 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll -2023-03-15 17:53:44.7398 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-03-15 17:53:44.7398 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-03-15 17:53:44.7398 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll -2023-03-15 17:53:44.7412 Info Copied Microsoft.AspNetCore.ResponseCaching.dll -2023-03-15 17:53:44.7412 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll -2023-03-15 17:53:44.7419 Info Copied Microsoft.AspNetCore.ResponseCompression.dll -2023-03-15 17:53:44.7419 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll -2023-03-15 17:53:44.7428 Info Copied Microsoft.AspNetCore.Rewrite.dll -2023-03-15 17:53:44.7428 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll -2023-03-15 17:53:44.7442 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll -2023-03-15 17:53:44.7442 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll -2023-03-15 17:53:44.7459 Info Copied Microsoft.AspNetCore.Routing.dll -2023-03-15 17:53:44.7459 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll -2023-03-15 17:53:44.7473 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll -2023-03-15 17:53:44.7473 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll -2023-03-15 17:53:44.7489 Info Copied Microsoft.AspNetCore.Server.IIS.dll -2023-03-15 17:53:44.7489 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll -2023-03-15 17:53:44.7502 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll -2023-03-15 17:53:44.7502 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-03-15 17:53:44.7539 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-03-15 17:53:44.7539 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll -2023-03-15 17:53:44.7539 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll -2023-03-15 17:53:44.7547 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-03-15 17:53:44.7547 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-03-15 17:53:44.7547 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-03-15 17:53:44.7563 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-03-15 17:53:44.7563 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll -2023-03-15 17:53:44.7570 Info Copied Microsoft.AspNetCore.Session.dll -2023-03-15 17:53:44.7570 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll -2023-03-15 17:53:44.7578 Info Copied Microsoft.AspNetCore.SignalR.Common.dll -2023-03-15 17:53:44.7578 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll -2023-03-15 17:53:44.7590 Info Copied Microsoft.AspNetCore.SignalR.Core.dll -2023-03-15 17:53:44.7590 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll -2023-03-15 17:53:44.7590 Info Copied Microsoft.AspNetCore.SignalR.dll -2023-03-15 17:53:44.7597 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-03-15 17:53:44.7597 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-03-15 17:53:44.7597 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll -2023-03-15 17:53:44.7611 Info Copied Microsoft.AspNetCore.StaticFiles.dll -2023-03-15 17:53:44.7611 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll -2023-03-15 17:53:44.7617 Info Copied Microsoft.AspNetCore.WebSockets.dll -2023-03-15 17:53:44.7617 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll -2023-03-15 17:53:44.7617 Info Copied Microsoft.AspNetCore.WebUtilities.dll -2023-03-15 17:53:44.7628 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll -2023-03-15 17:53:44.7658 Info Copied Microsoft.CSharp.dll -2023-03-15 17:53:44.7658 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll -2023-03-15 17:53:44.7658 Info Copied Microsoft.Extensions.Caching.Abstractions.dll -2023-03-15 17:53:44.7667 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll -2023-03-15 17:53:44.7667 Info Copied Microsoft.Extensions.Caching.Memory.dll -2023-03-15 17:53:44.7667 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll -2023-03-15 17:53:44.7678 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll -2023-03-15 17:53:44.7678 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll -2023-03-15 17:53:44.7678 Info Copied Microsoft.Extensions.Configuration.Binder.dll -2023-03-15 17:53:44.7678 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll -2023-03-15 17:53:44.7690 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll -2023-03-15 17:53:44.7690 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll -2023-03-15 17:53:44.7697 Info Copied Microsoft.Extensions.Configuration.dll -2023-03-15 17:53:44.7697 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-03-15 17:53:44.7697 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-03-15 17:53:44.7697 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll -2023-03-15 17:53:44.7710 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll -2023-03-15 17:53:44.7710 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll -2023-03-15 17:53:44.7710 Info Copied Microsoft.Extensions.Configuration.Ini.dll -2023-03-15 17:53:44.7717 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll -2023-03-15 17:53:44.7717 Info Copied Microsoft.Extensions.Configuration.Json.dll -2023-03-15 17:53:44.7717 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-03-15 17:53:44.7728 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-03-15 17:53:44.7728 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll -2023-03-15 17:53:44.7728 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll -2023-03-15 17:53:44.7728 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll -2023-03-15 17:53:44.7740 Info Copied Microsoft.Extensions.Configuration.Xml.dll -2023-03-15 17:53:44.7740 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-03-15 17:53:44.8186 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-03-15 17:53:44.8188 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll -2023-03-15 17:53:44.8188 Info Copied Microsoft.Extensions.DependencyInjection.dll -2023-03-15 17:53:44.8198 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-03-15 17:53:44.8198 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-03-15 17:53:44.8198 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-03-15 17:53:44.8210 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-03-15 17:53:44.8210 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll -2023-03-15 17:53:44.8216 Info Copied Microsoft.Extensions.Features.dll -2023-03-15 17:53:44.8216 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll -2023-03-15 17:53:44.8216 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll -2023-03-15 17:53:44.8216 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll -2023-03-15 17:53:44.8228 Info Copied Microsoft.Extensions.FileProviders.Composite.dll -2023-03-15 17:53:44.8228 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll -2023-03-15 17:53:44.8228 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll -2023-03-15 17:53:44.8228 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll -2023-03-15 17:53:44.8242 Info Copied Microsoft.Extensions.FileProviders.Physical.dll -2023-03-15 17:53:44.8242 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll -2023-03-15 17:53:44.8249 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll -2023-03-15 17:53:44.8249 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll -2023-03-15 17:53:44.8257 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll -2023-03-15 17:53:44.8257 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll -2023-03-15 17:53:44.8257 Info Copied Microsoft.Extensions.Hosting.dll -2023-03-15 17:53:44.8267 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll -2023-03-15 17:53:44.8267 Info Copied Microsoft.Extensions.Http.dll -2023-03-15 17:53:44.8267 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll -2023-03-15 17:53:44.8294 Info Copied Microsoft.Extensions.Identity.Core.dll -2023-03-15 17:53:44.8294 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll -2023-03-15 17:53:44.8301 Info Copied Microsoft.Extensions.Identity.Stores.dll -2023-03-15 17:53:44.8301 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll -2023-03-15 17:53:44.8308 Info Copied Microsoft.Extensions.Localization.Abstractions.dll -2023-03-15 17:53:44.8308 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll -2023-03-15 17:53:44.8308 Info Copied Microsoft.Extensions.Localization.dll -2023-03-15 17:53:44.8308 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll -2023-03-15 17:53:44.8322 Info Copied Microsoft.Extensions.Logging.Abstractions.dll -2023-03-15 17:53:44.8322 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll -2023-03-15 17:53:44.8328 Info Copied Microsoft.Extensions.Logging.Configuration.dll -2023-03-15 17:53:44.8328 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll -2023-03-15 17:53:44.8328 Info Copied Microsoft.Extensions.Logging.Console.dll -2023-03-15 17:53:44.8337 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll -2023-03-15 17:53:44.8337 Info Copied Microsoft.Extensions.Logging.Debug.dll -2023-03-15 17:53:44.8337 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll -2023-03-15 17:53:44.8349 Info Copied Microsoft.Extensions.Logging.dll -2023-03-15 17:53:44.8349 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll -2023-03-15 17:53:44.8349 Info Copied Microsoft.Extensions.Logging.EventLog.dll -2023-03-15 17:53:44.8357 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll -2023-03-15 17:53:44.8357 Info Copied Microsoft.Extensions.Logging.EventSource.dll -2023-03-15 17:53:44.8357 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll -2023-03-15 17:53:44.8368 Info Copied Microsoft.Extensions.Logging.TraceSource.dll -2023-03-15 17:53:44.8368 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll -2023-03-15 17:53:44.8368 Info Copied Microsoft.Extensions.ObjectPool.dll -2023-03-15 17:53:44.8368 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-03-15 17:53:44.8381 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-03-15 17:53:44.8381 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll -2023-03-15 17:53:44.8387 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll -2023-03-15 17:53:44.8387 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll -2023-03-15 17:53:44.9400 Info Copied Microsoft.Extensions.Options.dll -2023-03-15 17:53:44.9400 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll -2023-03-15 17:53:44.9409 Info Copied Microsoft.Extensions.Primitives.dll -2023-03-15 17:53:44.9409 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll -2023-03-15 17:53:44.9409 Info Copied Microsoft.Extensions.WebEncoders.dll -2023-03-15 17:53:44.9417 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll -2023-03-15 17:53:44.9417 Info Copied Microsoft.JSInterop.dll -2023-03-15 17:53:44.9427 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll -2023-03-15 17:53:44.9427 Info Copied Microsoft.Net.Http.Headers.dll -2023-03-15 17:53:44.9437 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll -2023-03-15 17:53:44.9460 Info Copied Microsoft.VisualBasic.Core.dll -2023-03-15 17:53:44.9460 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll -2023-03-15 17:53:44.9466 Info Copied Microsoft.VisualBasic.dll -2023-03-15 17:53:44.9466 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll -2023-03-15 17:53:44.9466 Info Copied Microsoft.Win32.Primitives.dll -2023-03-15 17:53:44.9466 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll -2023-03-15 17:53:44.9479 Info Copied Microsoft.Win32.Registry.dll -2023-03-15 17:53:44.9479 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll -2023-03-15 17:53:44.9490 Info Copied MimeMapping.dll -2023-03-15 17:53:44.9490 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll -2023-03-15 17:53:44.9496 Info Copied Mono.Posix.dll -2023-03-15 17:53:44.9496 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll -2023-03-15 17:53:44.9496 Info Copied Mono.Unix.dll -2023-03-15 17:53:44.9507 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll -2023-03-15 17:53:44.9507 Info Copied mscorlib.dll -2023-03-15 17:53:44.9507 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll -2023-03-15 17:53:44.9519 Info Copied netstandard.dll -2023-03-15 17:53:44.9519 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll -2023-03-15 17:53:44.9526 Info Copied Newtonsoft.Json.Bson.dll -2023-03-15 17:53:44.9526 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll -2023-03-15 17:53:44.9541 Info Copied Newtonsoft.Json.dll -2023-03-15 17:53:44.9541 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll -2023-03-15 17:53:44.9557 Info Copied NLog.dll -2023-03-15 17:53:44.9557 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll -2023-03-15 17:53:44.9557 Info Copied NLog.Extensions.Logging.dll -2023-03-15 17:53:44.9557 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll -2023-03-15 17:53:44.9579 Info Copied NLog.Web.AspNetCore.dll -2023-03-15 17:53:44.9579 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll -2023-03-15 17:53:44.9579 Info Copied Org.Mentalis.dll -2023-03-15 17:53:44.9587 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll -2023-03-15 17:53:44.9587 Info Copied Polly.dll -2023-03-15 17:53:44.9597 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/README.md to destination: /app/Jackett/README.md -2023-03-15 17:53:44.9597 Info Copied README.md -2023-03-15 17:53:44.9597 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll -2023-03-15 17:53:45.1300 Info Copied SocksWebProxy.dll -2023-03-15 17:53:45.1307 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll -2023-03-15 17:53:45.1320 Info Copied System.AppContext.dll -2023-03-15 17:53:45.1320 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll -2023-03-15 17:53:45.1334 Info Copied System.Buffers.dll -2023-03-15 17:53:45.1338 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll -2023-03-15 17:53:45.1369 Info Copied System.Collections.Concurrent.dll -2023-03-15 17:53:45.1369 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll -2023-03-15 17:53:45.1394 Info Copied System.Collections.dll -2023-03-15 17:53:45.1398 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll -2023-03-15 17:53:45.1431 Info Copied System.Collections.Immutable.dll -2023-03-15 17:53:45.1431 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll -2023-03-15 17:53:45.1450 Info Copied System.Collections.NonGeneric.dll -2023-03-15 17:53:45.1450 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll -2023-03-15 17:53:45.1470 Info Copied System.Collections.Specialized.dll -2023-03-15 17:53:45.1470 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll -2023-03-15 17:53:45.1493 Info Copied System.ComponentModel.Annotations.dll -2023-03-15 17:53:45.1497 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll -2023-03-15 17:53:45.1875 Info Copied System.ComponentModel.DataAnnotations.dll -2023-03-15 17:53:45.1931 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll -2023-03-15 17:53:45.1941 Info Copied System.ComponentModel.dll -2023-03-15 17:53:45.1941 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll -2023-03-15 17:53:45.1955 Info Copied System.ComponentModel.EventBasedAsync.dll -2023-03-15 17:53:45.1959 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll -2023-03-15 17:53:45.1973 Info Copied System.ComponentModel.Primitives.dll -2023-03-15 17:53:45.1973 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll -2023-03-15 17:53:45.2011 Info Copied System.ComponentModel.TypeConverter.dll -2023-03-15 17:53:45.2011 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll -2023-03-15 17:53:45.2024 Info Copied System.Configuration.dll -2023-03-15 17:53:45.2028 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll -2023-03-15 17:53:45.2046 Info Copied System.Console.dll -2023-03-15 17:53:45.2050 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll -2023-03-15 17:53:45.2060 Info Copied System.Core.dll -2023-03-15 17:53:45.2060 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll -2023-03-15 17:53:45.2347 Info Copied System.Data.Common.dll -2023-03-15 17:53:45.2347 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll -2023-03-15 17:53:45.2362 Info Copied System.Data.DataSetExtensions.dll -2023-03-15 17:53:45.2362 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll -2023-03-15 17:53:45.2377 Info Copied System.Data.dll -2023-03-15 17:53:45.2377 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll -2023-03-15 17:53:45.2391 Info Copied System.Diagnostics.Contracts.dll -2023-03-15 17:53:45.2391 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll -2023-03-15 17:53:45.2404 Info Copied System.Diagnostics.Debug.dll -2023-03-15 17:53:45.2407 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll -2023-03-15 17:53:45.2443 Info Copied System.Diagnostics.DiagnosticSource.dll -2023-03-15 17:53:45.2447 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll -2023-03-15 17:53:45.2459 Info Copied System.Diagnostics.EventLog.dll -2023-03-15 17:53:45.2459 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll -2023-03-15 17:53:45.2475 Info Copied System.Diagnostics.FileVersionInfo.dll -2023-03-15 17:53:45.2479 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll -2023-03-15 17:53:45.2497 Info Copied System.Diagnostics.Process.dll -2023-03-15 17:53:45.2497 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll -2023-03-15 17:53:45.2512 Info Copied System.Diagnostics.StackTrace.dll -2023-03-15 17:53:45.2512 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll -2023-03-15 17:53:45.2526 Info Copied System.Diagnostics.TextWriterTraceListener.dll -2023-03-15 17:53:45.2530 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll -2023-03-15 17:53:45.2608 Info Copied System.Diagnostics.Tools.dll -2023-03-15 17:53:45.2608 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll -2023-03-15 17:53:45.2628 Info Copied System.Diagnostics.TraceSource.dll -2023-03-15 17:53:45.2628 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll -2023-03-15 17:53:45.2641 Info Copied System.Diagnostics.Tracing.dll -2023-03-15 17:53:45.2641 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.dll to destination: /app/Jackett/System.dll -2023-03-15 17:53:45.2656 Info Copied System.dll -2023-03-15 17:53:45.2660 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll -2023-03-15 17:53:45.2670 Info Copied System.Drawing.dll -2023-03-15 17:53:45.2670 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll -2023-03-15 17:53:45.2687 Info Copied System.Drawing.Primitives.dll -2023-03-15 17:53:45.2687 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll -2023-03-15 17:53:45.2700 Info Copied System.Dynamic.Runtime.dll -2023-03-15 17:53:45.2700 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll -2023-03-15 17:53:45.2719 Info Copied System.Formats.Asn1.dll -2023-03-15 17:53:45.2719 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll -2023-03-15 17:53:45.2732 Info Copied System.Globalization.Calendars.dll -2023-03-15 17:53:45.2732 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll -2023-03-15 17:53:45.2745 Info Copied System.Globalization.dll -2023-03-15 17:53:45.2749 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll -2023-03-15 17:53:45.2759 Info Copied System.Globalization.Extensions.dll -2023-03-15 17:53:45.2759 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll -2023-03-15 17:53:45.2777 Info Copied System.IO.Compression.Brotli.dll -2023-03-15 17:53:45.2777 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll -2023-03-15 17:53:45.2799 Info Copied System.IO.Compression.dll -2023-03-15 17:53:45.2799 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll -2023-03-15 17:53:45.2812 Info Copied System.IO.Compression.FileSystem.dll -2023-03-15 17:53:45.2812 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll -2023-03-15 17:53:45.2827 Info Copied System.IO.Compression.ZipFile.dll -2023-03-15 17:53:45.2827 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll -2023-03-15 17:53:45.2841 Info Copied System.IO.dll -2023-03-15 17:53:45.2841 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll -2023-03-15 17:53:45.2854 Info Copied System.IO.FileSystem.AccessControl.dll -2023-03-15 17:53:45.2858 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll -2023-03-15 17:53:45.2867 Info Copied System.IO.FileSystem.dll -2023-03-15 17:53:45.2867 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll -2023-03-15 17:53:45.3545 Info Copied System.IO.FileSystem.DriveInfo.dll -2023-03-15 17:53:45.3551 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll -2023-03-15 17:53:45.3562 Info Copied System.IO.FileSystem.Primitives.dll -2023-03-15 17:53:45.3562 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll -2023-03-15 17:53:45.3580 Info Copied System.IO.FileSystem.Watcher.dll -2023-03-15 17:53:45.3580 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll -2023-03-15 17:53:45.3598 Info Copied System.IO.IsolatedStorage.dll -2023-03-15 17:53:45.3598 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll -2023-03-15 17:53:45.3614 Info Copied System.IO.MemoryMappedFiles.dll -2023-03-15 17:53:45.3618 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll -2023-03-15 17:53:45.3634 Info Copied System.IO.Pipelines.dll -2023-03-15 17:53:45.3638 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll -2023-03-15 17:53:45.3647 Info Copied System.IO.Pipes.AccessControl.dll -2023-03-15 17:53:45.3647 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll -2023-03-15 17:53:45.3664 Info Copied System.IO.Pipes.dll -2023-03-15 17:53:45.3668 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll -2023-03-15 17:53:45.3678 Info Copied System.IO.UnmanagedMemoryStream.dll -2023-03-15 17:53:45.3678 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll -2023-03-15 17:53:45.3708 Info Copied System.Linq.dll -2023-03-15 17:53:45.3708 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll -2023-03-15 17:53:45.4257 Info Copied System.Linq.Expressions.dll -2023-03-15 17:53:45.4257 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll -2023-03-15 17:53:45.4304 Info Copied System.Linq.Parallel.dll -2023-03-15 17:53:45.4309 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll -2023-03-15 17:53:45.4328 Info Copied System.Linq.Queryable.dll -2023-03-15 17:53:45.4328 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll -2023-03-15 17:53:45.4350 Info Copied System.Memory.dll -2023-03-15 17:53:45.4350 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll -2023-03-15 17:53:45.4363 Info Copied System.Net.dll -2023-03-15 17:53:45.4368 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll -2023-03-15 17:53:45.4431 Info Copied System.Net.Http.dll -2023-03-15 17:53:45.4431 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll -2023-03-15 17:53:45.5280 Info Copied System.Net.Http.Json.dll -2023-03-15 17:53:45.5280 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll -2023-03-15 17:53:45.5309 Info Copied System.Net.HttpListener.dll -2023-03-15 17:53:45.5309 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll -2023-03-15 17:53:45.5341 Info Copied System.Net.Mail.dll -2023-03-15 17:53:45.5341 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll -2023-03-15 17:53:45.5360 Info Copied System.Net.NameResolution.dll -2023-03-15 17:53:45.5360 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll -2023-03-15 17:53:45.5399 Info Copied System.Net.NetworkInformation.dll -2023-03-15 17:53:45.5399 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll -2023-03-15 17:53:45.5419 Info Copied System.Net.Ping.dll -2023-03-15 17:53:45.5419 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll -2023-03-15 17:53:45.5439 Info Copied System.Net.Primitives.dll -2023-03-15 17:53:45.5439 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll -2023-03-15 17:53:45.5463 Info Copied System.Net.Quic.dll -2023-03-15 17:53:45.5467 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll -2023-03-15 17:53:45.5751 Info Copied System.Net.Requests.dll -2023-03-15 17:53:45.5759 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll -2023-03-15 17:53:45.5830 Info Copied System.Net.Security.dll -2023-03-15 17:53:45.5838 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll -2023-03-15 17:53:45.5859 Info Copied System.Net.ServicePoint.dll -2023-03-15 17:53:45.5859 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll -2023-03-15 17:53:45.5910 Info Copied System.Net.Sockets.dll -2023-03-15 17:53:45.5910 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll -2023-03-15 17:53:45.5943 Info Copied System.Net.WebClient.dll -2023-03-15 17:53:45.5949 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll -2023-03-15 17:53:45.6300 Info Copied System.Net.WebHeaderCollection.dll -2023-03-15 17:53:45.6307 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll -2023-03-15 17:53:45.6320 Info Copied System.Net.WebProxy.dll -2023-03-15 17:53:45.6320 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll -2023-03-15 17:53:45.6339 Info Copied System.Net.WebSockets.Client.dll -2023-03-15 17:53:45.6339 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll -2023-03-15 17:53:45.6358 Info Copied System.Net.WebSockets.dll -2023-03-15 17:53:45.6358 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll -2023-03-15 17:53:45.6371 Info Copied System.Numerics.dll -2023-03-15 17:53:45.6371 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll -2023-03-15 17:53:45.6384 Info Copied System.Numerics.Vectors.dll -2023-03-15 17:53:45.6388 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll -2023-03-15 17:53:45.6402 Info Copied System.ObjectModel.dll -2023-03-15 17:53:45.6402 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll -2023-03-15 17:53:45.6915 Info Copied System.Private.CoreLib.dll -2023-03-15 17:53:45.6923 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll -2023-03-15 17:53:45.8617 Info Copied System.Private.DataContractSerialization.dll -2023-03-15 17:53:45.8630 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll -2023-03-15 17:53:45.8669 Info Copied System.Private.Uri.dll -2023-03-15 17:53:45.8681 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll -2023-03-15 17:53:45.9233 Info Copied System.Private.Xml.dll -2023-03-15 17:53:45.9239 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll -2023-03-15 17:53:45.9269 Info Copied System.Private.Xml.Linq.dll -2023-03-15 17:53:45.9269 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll -2023-03-15 17:53:45.9288 Info Copied System.Reflection.DispatchProxy.dll -2023-03-15 17:53:45.9288 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll -2023-03-15 17:53:45.9302 Info Copied System.Reflection.dll -2023-03-15 17:53:45.9302 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll -2023-03-15 17:53:45.9316 Info Copied System.Reflection.Emit.dll -2023-03-15 17:53:45.9319 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll -2023-03-15 17:53:45.9329 Info Copied System.Reflection.Emit.ILGeneration.dll -2023-03-15 17:53:45.9329 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll -2023-03-15 17:53:45.9343 Info Copied System.Reflection.Emit.Lightweight.dll -2023-03-15 17:53:45.9347 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll -2023-03-15 17:53:45.9347 Info Copied System.Reflection.Extensions.dll -2023-03-15 17:53:45.9359 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll -2023-03-15 17:53:45.9440 Info Copied System.Reflection.Metadata.dll -2023-03-15 17:53:45.9440 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll -2023-03-15 17:53:45.9458 Info Copied System.Reflection.Primitives.dll -2023-03-15 17:53:45.9458 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll -2023-03-15 17:53:45.9472 Info Copied System.Reflection.TypeExtensions.dll -2023-03-15 17:53:45.9472 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll -2023-03-15 17:53:45.9485 Info Copied System.Resources.Reader.dll -2023-03-15 17:53:45.9489 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll -2023-03-15 17:53:45.9499 Info Copied System.Resources.ResourceManager.dll -2023-03-15 17:53:45.9499 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll -2023-03-15 17:53:45.9515 Info Copied System.Resources.Writer.dll -2023-03-15 17:53:45.9518 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll -2023-03-15 17:53:45.9529 Info Copied System.Runtime.CompilerServices.Unsafe.dll -2023-03-15 17:53:45.9529 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll -2023-03-15 17:53:45.9541 Info Copied System.Runtime.CompilerServices.VisualC.dll -2023-03-15 17:53:45.9541 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll -2023-03-15 17:53:45.9555 Info Copied System.Runtime.dll -2023-03-15 17:53:45.9558 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll -2023-03-15 17:53:45.9567 Info Copied System.Runtime.Extensions.dll -2023-03-15 17:53:45.9567 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll -2023-03-15 17:53:45.9579 Info Copied System.Runtime.Handles.dll -2023-03-15 17:53:45.9579 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll -2023-03-15 17:53:45.9594 Info Copied System.Runtime.InteropServices.dll -2023-03-15 17:53:45.9597 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll -2023-03-15 17:53:45.9608 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll -2023-03-15 17:53:45.9608 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll -2023-03-15 17:53:45.9620 Info Copied System.Runtime.Intrinsics.dll -2023-03-15 17:53:45.9620 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll -2023-03-15 17:53:45.9633 Info Copied System.Runtime.Loader.dll -2023-03-15 17:53:45.9637 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll -2023-03-15 17:53:45.9655 Info Copied System.Runtime.Numerics.dll -2023-03-15 17:53:45.9659 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll -2023-03-15 17:53:45.9669 Info Copied System.Runtime.Serialization.dll -2023-03-15 17:53:45.9669 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll -2023-03-15 17:53:45.9693 Info Copied System.Runtime.Serialization.Formatters.dll -2023-03-15 17:53:45.9698 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll -2023-03-15 17:53:46.0171 Info Copied System.Runtime.Serialization.Json.dll -2023-03-15 17:53:46.0177 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll -2023-03-15 17:53:46.0194 Info Copied System.Runtime.Serialization.Primitives.dll -2023-03-15 17:53:46.0198 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll -2023-03-15 17:53:46.0213 Info Copied System.Runtime.Serialization.Xml.dll -2023-03-15 17:53:46.0217 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll -2023-03-15 17:53:46.0234 Info Copied System.Security.AccessControl.dll -2023-03-15 17:53:46.0238 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll -2023-03-15 17:53:46.0259 Info Copied System.Security.Claims.dll -2023-03-15 17:53:46.0259 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll -2023-03-15 17:53:46.0309 Info Copied System.Security.Cryptography.Algorithms.dll -2023-03-15 17:53:46.0309 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll -2023-03-15 17:53:46.0330 Info Copied System.Security.Cryptography.Cng.dll -2023-03-15 17:53:46.0330 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll -2023-03-15 17:53:46.0354 Info Copied System.Security.Cryptography.Csp.dll -2023-03-15 17:53:46.0358 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll -2023-03-15 17:53:46.0378 Info Copied System.Security.Cryptography.Encoding.dll -2023-03-15 17:53:46.0378 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll -2023-03-15 17:53:46.0405 Info Copied System.Security.Cryptography.OpenSsl.dll -2023-03-15 17:53:46.0410 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll -2023-03-15 17:53:46.0469 Info Copied System.Security.Cryptography.Pkcs.dll -2023-03-15 17:53:46.0469 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll -2023-03-15 17:53:46.0495 Info Copied System.Security.Cryptography.Primitives.dll -2023-03-15 17:53:46.0500 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll -2023-03-15 17:53:46.0514 Info Copied System.Security.Cryptography.ProtectedData.dll -2023-03-15 17:53:46.0518 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll -2023-03-15 17:53:46.0561 Info Copied System.Security.Cryptography.X509Certificates.dll -2023-03-15 17:53:46.0561 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll -2023-03-15 17:53:46.0629 Info Copied System.Security.Cryptography.Xml.dll -2023-03-15 17:53:46.0629 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll -2023-03-15 17:53:46.0650 Info Copied System.Security.dll -2023-03-15 17:53:46.0650 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll -2023-03-15 17:53:46.0670 Info Copied System.Security.Principal.dll -2023-03-15 17:53:46.0670 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll -2023-03-15 17:53:46.0691 Info Copied System.Security.Principal.Windows.dll -2023-03-15 17:53:46.0691 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll -2023-03-15 17:53:46.0709 Info Copied System.Security.SecureString.dll -2023-03-15 17:53:46.0709 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll -2023-03-15 17:53:46.0728 Info Copied System.ServiceModel.Web.dll -2023-03-15 17:53:46.0728 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll -2023-03-15 17:53:46.0747 Info Copied System.ServiceProcess.dll -2023-03-15 17:53:46.0747 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll -2023-03-15 17:53:46.0765 Info Copied System.ServiceProcess.ServiceController.dll -2023-03-15 17:53:46.0770 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll -2023-03-15 17:53:46.0931 Info Copied System.Text.Encoding.CodePages.dll -2023-03-15 17:53:46.0938 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll -2023-03-15 17:53:46.0953 Info Copied System.Text.Encoding.dll -2023-03-15 17:53:46.0959 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll -2023-03-15 17:53:46.0973 Info Copied System.Text.Encoding.Extensions.dll -2023-03-15 17:53:46.0979 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll -2023-03-15 17:53:46.1004 Info Copied System.Text.Encodings.Web.dll -2023-03-15 17:53:46.1009 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll -2023-03-15 17:53:46.1253 Info Copied System.Text.Json.dll -2023-03-15 17:53:46.1261 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll -2023-03-15 17:53:46.1311 Info Copied System.Text.RegularExpressions.dll -2023-03-15 17:53:46.1311 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll -2023-03-15 17:53:46.1332 Info Copied System.Threading.Channels.dll -2023-03-15 17:53:46.1332 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll -2023-03-15 17:53:46.1354 Info Copied System.Threading.dll -2023-03-15 17:53:46.1360 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll -2023-03-15 17:53:46.1375 Info Copied System.Threading.Overlapped.dll -2023-03-15 17:53:46.1380 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll -2023-03-15 17:53:46.1433 Info Copied System.Threading.Tasks.Dataflow.dll -2023-03-15 17:53:46.1439 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll -2023-03-15 17:53:46.1854 Info Copied System.Threading.Tasks.dll -2023-03-15 17:53:46.1860 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll -2023-03-15 17:53:46.1885 Info Copied System.Threading.Tasks.Extensions.dll -2023-03-15 17:53:46.1888 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll -2023-03-15 17:53:46.1910 Info Copied System.Threading.Tasks.Parallel.dll -2023-03-15 17:53:46.1910 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll -2023-03-15 17:53:46.1923 Info Copied System.Threading.Thread.dll -2023-03-15 17:53:46.1927 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll -2023-03-15 17:53:46.1937 Info Copied System.Threading.ThreadPool.dll -2023-03-15 17:53:46.1937 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll -2023-03-15 17:53:46.1949 Info Copied System.Threading.Timer.dll -2023-03-15 17:53:46.1949 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll -2023-03-15 17:53:46.1961 Info Copied System.Transactions.dll -2023-03-15 17:53:46.1961 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll -2023-03-15 17:53:46.1987 Info Copied System.Transactions.Local.dll -2023-03-15 17:53:46.1987 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll -2023-03-15 17:53:46.2000 Info Copied System.ValueTuple.dll -2023-03-15 17:53:46.2000 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll -2023-03-15 17:53:46.2012 Info Copied System.Web.dll -2023-03-15 17:53:46.2012 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll -2023-03-15 17:53:46.2026 Info Copied System.Web.HttpUtility.dll -2023-03-15 17:53:46.2029 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll -2023-03-15 17:53:46.2038 Info Copied System.Windows.dll -2023-03-15 17:53:46.2038 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll -2023-03-15 17:53:46.2050 Info Copied System.Xml.dll -2023-03-15 17:53:46.2050 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll -2023-03-15 17:53:46.2062 Info Copied System.Xml.Linq.dll -2023-03-15 17:53:46.2062 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll -2023-03-15 17:53:46.2075 Info Copied System.Xml.ReaderWriter.dll -2023-03-15 17:53:46.2078 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll -2023-03-15 17:53:46.2087 Info Copied System.Xml.Serialization.dll -2023-03-15 17:53:46.2087 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll -2023-03-15 17:53:46.2099 Info Copied System.Xml.XDocument.dll -2023-03-15 17:53:46.2099 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll -2023-03-15 17:53:46.2111 Info Copied System.Xml.XmlDocument.dll -2023-03-15 17:53:46.2111 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll -2023-03-15 17:53:46.2122 Info Copied System.Xml.XmlSerializer.dll -2023-03-15 17:53:46.2122 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll -2023-03-15 17:53:46.2134 Info Copied System.Xml.XPath.dll -2023-03-15 17:53:46.2137 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll -2023-03-15 17:53:46.2137 Info Copied System.Xml.XPath.XDocument.dll -2023-03-15 17:53:46.2149 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll -2023-03-15 17:53:46.2160 Info Copied WindowsBase.dll -2023-03-15 17:53:46.2160 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3604-638144996209291285/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll -2023-03-15 17:53:46.2183 Info Copied YamlDotNet.dll -2023-03-15 17:53:46.2187 Info File copying complete -2023-03-15 17:53:46.2213 Info Deleting file /app/Jackett/Definitions/cloudtorrents.yml -2023-03-15 17:53:46.2280 Info Deleting file /app/Jackett/Definitions/pornforall.yml -2023-03-15 17:53:46.2290 Info Deleting file /app/Jackett/Definitions/pornleech.yml -2023-03-15 17:53:46.2351 Info Deleting file /app/Jackett/Definitions/woot.yml -2023-03-15 17:53:46.2672 Info Killing process 135 -2023-03-15 17:53:49.3484 Info Process 135 didn't exit within 2 seconds after a SIGTERM -2023-03-16 18:54:01.7299 Info Jackett Updater v0.20.3609 -2023-03-16 18:54:01.8214 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "222" "--NoRestart" -2023-03-16 18:54:01.8249 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-16 18:54:02.0295 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb -2023-03-16 18:54:02.0302 Info Deleted /app/Jackett/DateTimeRoutines.pdb -2023-03-16 18:54:02.0302 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb -2023-03-16 18:54:02.0308 Info Deleted /app/Jackett/Jackett.Common.pdb -2023-03-16 18:54:02.0308 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb -2023-03-16 18:54:02.0308 Info Deleted /app/Jackett/JackettUpdater.pdb -2023-03-16 18:54:02.0308 Info Attempting to remove: /app/Jackett/jackett.pdb -2023-03-16 18:54:02.0319 Info Deleted /app/Jackett/jackett.pdb -2023-03-16 18:54:02.0319 Info Attempting to remove: /app/Jackett/jackett -2023-03-16 18:54:02.0319 Info Deleted /app/Jackett/jackett -2023-03-16 18:54:02.0319 Info Finding files in: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/ -2023-03-16 18:54:02.0379 Info 891 update files found -2023-03-16 18:54:02.0390 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll -2023-03-16 18:54:02.0436 Info Copied AngleSharp.dll -2023-03-16 18:54:02.0440 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll -2023-03-16 18:54:02.0447 Info Copied AngleSharp.Xml.dll -2023-03-16 18:54:02.0447 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll -2023-03-16 18:54:02.0460 Info Copied Autofac.dll -2023-03-16 18:54:02.0460 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll -2023-03-16 18:54:02.0469 Info Copied Autofac.Extensions.DependencyInjection.dll -2023-03-16 18:54:02.0469 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll -2023-03-16 18:54:02.0480 Info Copied AutoMapper.dll -2023-03-16 18:54:02.0480 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll -2023-03-16 18:54:02.0487 Info Copied BencodeNET.dll -2023-03-16 18:54:02.0487 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll -2023-03-16 18:54:02.0497 Info Copied CommandLine.dll -2023-03-16 18:54:02.0497 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css -2023-03-16 18:54:02.0497 Info Copied animate.css -2023-03-16 18:54:02.0507 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png -2023-03-16 18:54:02.0507 Info Copied apple-touch-icon.png -2023-03-16 18:54:02.0507 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png -2023-03-16 18:54:02.0518 Info Copied binding_dark.png -2023-03-16 18:54:02.0518 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css -2023-03-16 18:54:02.0527 Info Copied bootstrap.min.css -2023-03-16 18:54:02.0527 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js -2023-03-16 18:54:02.0527 Info Copied bootstrap.min.js -2023-03-16 18:54:02.0527 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js -2023-03-16 18:54:02.0541 Info Copied common.js -2023-03-16 18:54:02.0541 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css -2023-03-16 18:54:02.0547 Info Copied bootstrap-multiselect.css -2023-03-16 18:54:02.0547 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css -2023-03-16 18:54:02.0562 Info Copied font-awesome.min.css -2023-03-16 18:54:02.0562 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css -2023-03-16 18:54:02.0569 Info Copied jquery.dataTables.min.css -2023-03-16 18:54:02.0569 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css -2023-03-16 18:54:02.0569 Info Copied tagify.css -2023-03-16 18:54:02.0577 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css -2023-03-16 18:54:02.0577 Info Copied custom_mobile.css -2023-03-16 18:54:02.0577 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css -2023-03-16 18:54:02.0588 Info Copied custom.css -2023-03-16 18:54:02.0588 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js -2023-03-16 18:54:02.0588 Info Copied custom.js -2023-03-16 18:54:02.0597 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico -2023-03-16 18:54:02.0597 Info Copied favicon.ico -2023-03-16 18:54:02.0597 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot -2023-03-16 18:54:02.0611 Info Copied fontawesome-webfont.eot -2023-03-16 18:54:02.0611 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg -2023-03-16 18:54:02.0622 Info Copied fontawesome-webfont.svg -2023-03-16 18:54:02.0622 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf -2023-03-16 18:54:02.0631 Info Copied fontawesome-webfont.ttf -2023-03-16 18:54:02.0631 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff -2023-03-16 18:54:02.0647 Info Copied fontawesome-webfont.woff -2023-03-16 18:54:02.0647 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 -2023-03-16 18:54:02.0647 Info Copied fontawesome-webfont.woff2 -2023-03-16 18:54:02.0656 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf -2023-03-16 18:54:02.0656 Info Copied FontAwesome.otf -2023-03-16 18:54:02.0656 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot -2023-03-16 18:54:02.0671 Info Copied glyphicons-halflings-regular.eot -2023-03-16 18:54:02.0671 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg -2023-03-16 18:54:02.0679 Info Copied glyphicons-halflings-regular.svg -2023-03-16 18:54:02.0679 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf -2023-03-16 18:54:02.0686 Info Copied glyphicons-halflings-regular.ttf -2023-03-16 18:54:02.0686 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff -2023-03-16 18:54:02.0686 Info Copied glyphicons-halflings-regular.woff -2023-03-16 18:54:02.0686 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 -2023-03-16 18:54:02.0699 Info Copied glyphicons-halflings-regular.woff2 -2023-03-16 18:54:02.0699 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png -2023-03-16 18:54:02.0699 Info Copied sort_asc_disabled.png -2023-03-16 18:54:02.0707 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png -2023-03-16 18:54:02.0707 Info Copied sort_asc.png -2023-03-16 18:54:02.0707 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png -2023-03-16 18:54:02.0718 Info Copied sort_both.png -2023-03-16 18:54:02.0718 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png -2023-03-16 18:54:02.0718 Info Copied sort_desc_disabled.png -2023-03-16 18:54:02.0718 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png -2023-03-16 18:54:02.0730 Info Copied sort_desc.png -2023-03-16 18:54:02.0730 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html -2023-03-16 18:54:02.0737 Info Copied index.html -2023-03-16 18:54:02.0737 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png -2023-03-16 18:54:02.0737 Info Copied jacket_medium.png -2023-03-16 18:54:02.0737 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js -2023-03-16 18:54:02.0749 Info Copied api.js -2023-03-16 18:54:02.0749 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js -2023-03-16 18:54:02.0756 Info Copied bootstrap-multiselect.js -2023-03-16 18:54:02.0756 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js -2023-03-16 18:54:02.0756 Info Copied bootstrap-notify.js -2023-03-16 18:54:02.0756 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js -2023-03-16 18:54:02.0769 Info Copied filesize.min.js -2023-03-16 18:54:02.0769 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js -2023-03-16 18:54:02.0785 Info Copied handlebars.min.js -2023-03-16 18:54:02.0785 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js -2023-03-16 18:54:02.0785 Info Copied handlebarsextend.js -2023-03-16 18:54:02.0785 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js -2023-03-16 18:54:02.0797 Info Copied handlebarsmoment.js -2023-03-16 18:54:02.0797 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js -2023-03-16 18:54:02.0797 Info Copied jquery.dataTables.min.js -2023-03-16 18:54:02.0808 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js -2023-03-16 18:54:02.0808 Info Copied jquery.min.js -2023-03-16 18:54:02.0808 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js -2023-03-16 18:54:02.0822 Info Copied jQuery.tagify.min.js -2023-03-16 18:54:02.0822 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js -2023-03-16 18:54:02.0829 Info Copied moment.min.js -2023-03-16 18:54:02.0829 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js -2023-03-16 18:54:02.0837 Info Copied tagify.min.js -2023-03-16 18:54:02.0837 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html -2023-03-16 18:54:02.0837 Info Copied login.html -2023-03-16 18:54:02.0837 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/createdump to destination: /app/Jackett/createdump -2023-03-16 18:54:02.0852 Info Copied createdump -2023-03-16 18:54:02.0852 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll -2023-03-16 18:54:02.0866 Info Copied DateTimeRoutines.dll -2023-03-16 18:54:02.0866 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb -2023-03-16 18:54:02.0866 Info Copied DateTimeRoutines.pdb -2023-03-16 18:54:02.0866 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml -2023-03-16 18:54:02.0881 Info Copied 0daykiev.yml -2023-03-16 18:54:02.0881 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml -2023-03-16 18:54:02.0887 Info Copied 0magnet.yml -2023-03-16 18:54:02.0887 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml -2023-03-16 18:54:02.0887 Info Copied 1337x.yml -2023-03-16 18:54:02.0887 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml -2023-03-16 18:54:02.0900 Info Copied 1ptbar.yml -2023-03-16 18:54:02.0900 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml -2023-03-16 18:54:02.0907 Info Copied 2fast4you.yml -2023-03-16 18:54:02.0907 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml -2023-03-16 18:54:02.0907 Info Copied 2xfree.yml -2023-03-16 18:54:02.0907 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml -2023-03-16 18:54:02.0919 Info Copied 3changtrai.yml -2023-03-16 18:54:02.0919 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml -2023-03-16 18:54:02.0935 Info Copied 3dtorrents.yml -2023-03-16 18:54:02.0937 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml -2023-03-16 18:54:02.0937 Info Copied 4thd.yml -2023-03-16 18:54:02.0937 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml -2023-03-16 18:54:02.0948 Info Copied 52pt.yml -2023-03-16 18:54:02.0948 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml -2023-03-16 18:54:02.0948 Info Copied abnormal.yml -2023-03-16 18:54:02.0948 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml -2023-03-16 18:54:02.0961 Info Copied abtorrents.yml -2023-03-16 18:54:02.0961 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml -2023-03-16 18:54:02.0967 Info Copied acervos-api.yml -2023-03-16 18:54:02.0967 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml -2023-03-16 18:54:02.0967 Info Copied acgrip.yml -2023-03-16 18:54:02.0967 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml -2023-03-16 18:54:02.0979 Info Copied acgsou.yml -2023-03-16 18:54:02.0979 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml -2023-03-16 18:54:02.0979 Info Copied acidlounge.yml -2023-03-16 18:54:02.0987 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml -2023-03-16 18:54:02.0987 Info Copied acrossthetasman.yml -2023-03-16 18:54:02.0987 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml -2023-03-16 18:54:02.0998 Info Copied aftershock.yml -2023-03-16 18:54:02.0998 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml -2023-03-16 18:54:02.0998 Info Copied aidoruonline.yml -2023-03-16 18:54:02.0998 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml -2023-03-16 18:54:02.1011 Info Copied aither-api.yml -2023-03-16 18:54:02.1011 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml -2023-03-16 18:54:02.1017 Info Copied amigosshare.yml -2023-03-16 18:54:02.1017 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml -2023-03-16 18:54:02.1017 Info Copied anilibria.yml -2023-03-16 18:54:02.1017 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml -2023-03-16 18:54:02.1030 Info Copied anime-free.yml -2023-03-16 18:54:02.1030 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml -2023-03-16 18:54:02.1036 Info Copied animelayer.yml -2023-03-16 18:54:02.1036 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml -2023-03-16 18:54:02.1036 Info Copied animetracker.yml -2023-03-16 18:54:02.1036 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml -2023-03-16 18:54:02.1049 Info Copied animeworld-api.yml -2023-03-16 18:54:02.1049 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml -2023-03-16 18:54:02.1049 Info Copied anirena.yml -2023-03-16 18:54:02.1057 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml -2023-03-16 18:54:02.1057 Info Copied anisource.yml -2023-03-16 18:54:02.1057 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml -2023-03-16 18:54:02.1068 Info Copied anthelion-api.yml -2023-03-16 18:54:02.1068 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml -2023-03-16 18:54:02.1068 Info Copied arabafenice.yml -2023-03-16 18:54:02.1068 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml -2023-03-16 18:54:02.1080 Info Copied arabp2p.yml -2023-03-16 18:54:02.1080 Info Attempting to copy arabtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/arabtorrents.yml to destination: /app/Jackett/Definitions/arabtorrents.yml -2023-03-16 18:54:02.1087 Info Copied arabtorrents.yml -2023-03-16 18:54:02.1087 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml -2023-03-16 18:54:02.1087 Info Copied arenabg.yml -2023-03-16 18:54:02.1087 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml -2023-03-16 18:54:02.1100 Info Copied asiancinema.yml -2023-03-16 18:54:02.1100 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml -2023-03-16 18:54:02.1100 Info Copied asiandvdclub.yml -2023-03-16 18:54:02.1108 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml -2023-03-16 18:54:02.1108 Info Copied audiences.yml -2023-03-16 18:54:02.1108 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml -2023-03-16 18:54:02.1119 Info Copied audionews.yml -2023-03-16 18:54:02.1119 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml -2023-03-16 18:54:02.1119 Info Copied aussierules.yml -2023-03-16 18:54:02.1128 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml -2023-03-16 18:54:02.1128 Info Copied backups.yml -2023-03-16 18:54:02.1128 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml -2023-03-16 18:54:02.1139 Info Copied badasstorrents.yml -2023-03-16 18:54:02.1139 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml -2023-03-16 18:54:02.1139 Info Copied bangumi-moe.yml -2023-03-16 18:54:02.1148 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml -2023-03-16 18:54:02.1148 Info Copied beitai.yml -2023-03-16 18:54:02.1148 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml -2023-03-16 18:54:02.1159 Info Copied bestcore.yml -2023-03-16 18:54:02.1159 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml -2023-03-16 18:54:02.1159 Info Copied beyond-hd.yml -2023-03-16 18:54:02.1168 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml -2023-03-16 18:54:02.1168 Info Copied bibliotik.yml -2023-03-16 18:54:02.1168 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml -2023-03-16 18:54:02.1178 Info Copied bigfangroup.yml -2023-03-16 18:54:02.1178 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml -2023-03-16 18:54:02.1178 Info Copied bitbazis.yml -2023-03-16 18:54:02.1187 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml -2023-03-16 18:54:02.1187 Info Copied bitded.yml -2023-03-16 18:54:02.1187 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml -2023-03-16 18:54:02.1198 Info Copied bithorlo.yml -2023-03-16 18:54:02.1208 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml -2023-03-16 18:54:02.1208 Info Copied bithumen.yml -2023-03-16 18:54:02.1208 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml -2023-03-16 18:54:02.1219 Info Copied bitnova.yml -2023-03-16 18:54:02.1219 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml -2023-03-16 18:54:02.1219 Info Copied bitofvalor.yml -2023-03-16 18:54:02.1228 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml -2023-03-16 18:54:02.1228 Info Copied bitru.yml -2023-03-16 18:54:02.1228 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml -2023-03-16 18:54:02.1239 Info Copied bitsearch.yml -2023-03-16 18:54:02.1239 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml -2023-03-16 18:54:02.1239 Info Copied bitsexy.yml -2023-03-16 18:54:02.1247 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml -2023-03-16 18:54:02.1247 Info Copied bitspyder.yml -2023-03-16 18:54:02.1247 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml -2023-03-16 18:54:02.1258 Info Copied Bittorrentfiles.yml -2023-03-16 18:54:02.1258 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml -2023-03-16 18:54:02.1258 Info Copied bitturk.yml -2023-03-16 18:54:02.1258 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml -2023-03-16 18:54:02.1271 Info Copied bluebird.yml -2023-03-16 18:54:02.1271 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml -2023-03-16 18:54:02.1277 Info Copied blutopia-api.yml -2023-03-16 18:54:02.1277 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml -2023-03-16 18:54:02.1291 Info Copied booktracker.yml -2023-03-16 18:54:02.1291 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml -2023-03-16 18:54:02.1297 Info Copied bootytape.yml -2023-03-16 18:54:02.1297 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml -2023-03-16 18:54:02.1297 Info Copied borgzelle.yml -2023-03-16 18:54:02.1297 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml -2023-03-16 18:54:02.1310 Info Copied boxingtorrents.yml -2023-03-16 18:54:02.1310 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml -2023-03-16 18:54:02.1310 Info Copied broadcity.yml -2023-03-16 18:54:02.1319 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml -2023-03-16 18:54:02.1319 Info Copied brsociety-api.yml -2023-03-16 18:54:02.1319 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml -2023-03-16 18:54:02.1329 Info Copied bt4g.yml -2023-03-16 18:54:02.1329 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml -2023-03-16 18:54:02.1329 Info Copied btdigg.yml -2023-03-16 18:54:02.1337 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml -2023-03-16 18:54:02.1337 Info Copied btetree.yml -2023-03-16 18:54:02.1337 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml -2023-03-16 18:54:02.1348 Info Copied btmet.yml -2023-03-16 18:54:02.1348 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml -2023-03-16 18:54:02.1348 Info Copied btnext.yml -2023-03-16 18:54:02.1356 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml -2023-03-16 18:54:02.1356 Info Copied btschool.yml -2023-03-16 18:54:02.1356 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml -2023-03-16 18:54:02.1367 Info Copied btsow.yml -2023-03-16 18:54:02.1367 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml -2023-03-16 18:54:02.1367 Info Copied bulltorrent.yml -2023-03-16 18:54:02.1367 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml -2023-03-16 18:54:02.1380 Info Copied bwtorrents.yml -2023-03-16 18:54:02.1380 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml -2023-03-16 18:54:02.1387 Info Copied byrbt.yml -2023-03-16 18:54:02.1387 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml -2023-03-16 18:54:02.1387 Info Copied byrutor.yml -2023-03-16 18:54:02.1387 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml -2023-03-16 18:54:02.1400 Info Copied carpathians.yml -2023-03-16 18:54:02.1400 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml -2023-03-16 18:54:02.1400 Info Copied carphunter.yml -2023-03-16 18:54:02.1408 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml -2023-03-16 18:54:02.1408 Info Copied carpt.yml -2023-03-16 18:54:02.1408 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml -2023-03-16 18:54:02.1419 Info Copied cartoonchaos.yml -2023-03-16 18:54:02.1419 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml -2023-03-16 18:54:02.1419 Info Copied cathoderaytube.yml -2023-03-16 18:54:02.1427 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml -2023-03-16 18:54:02.1427 Info Copied catorrent.yml -2023-03-16 18:54:02.1427 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml -2023-03-16 18:54:02.1439 Info Copied ccfbits.yml -2023-03-16 18:54:02.1439 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml -2023-03-16 18:54:02.1449 Info Copied ceskeforum.yml -2023-03-16 18:54:02.1449 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml -2023-03-16 18:54:02.1459 Info Copied chdbits.yml -2023-03-16 18:54:02.1459 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml -2023-03-16 18:54:02.1469 Info Copied chilebt.yml -2023-03-16 18:54:02.1469 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml -2023-03-16 18:54:02.1479 Info Copied cinemageddon.yml -2023-03-16 18:54:02.1479 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml -2023-03-16 18:54:02.1489 Info Copied cinemamovies.yml -2023-03-16 18:54:02.1489 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml -2023-03-16 18:54:02.1499 Info Copied cinematik.yml -2023-03-16 18:54:02.1499 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml -2023-03-16 18:54:02.1509 Info Copied classix.yml -2023-03-16 18:54:02.1509 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml -2023-03-16 18:54:02.1519 Info Copied coastalcrew.yml -2023-03-16 18:54:02.1519 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml -2023-03-16 18:54:02.1527 Info Copied comicat.yml -2023-03-16 18:54:02.1527 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml -2023-03-16 18:54:02.1527 Info Copied concen.yml -2023-03-16 18:54:02.1527 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml -2023-03-16 18:54:02.1539 Info Copied concertos.yml -2023-03-16 18:54:02.1539 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml -2023-03-16 18:54:02.1539 Info Copied cpabien.yml -2023-03-16 18:54:02.1547 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml -2023-03-16 18:54:02.1547 Info Copied cpasbienclone.yml -2023-03-16 18:54:02.1547 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml -2023-03-16 18:54:02.1558 Info Copied cpasbiensi.yml -2023-03-16 18:54:02.1558 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml -2023-03-16 18:54:02.1558 Info Copied crackingpatching.yml -2023-03-16 18:54:02.1567 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml -2023-03-16 18:54:02.1567 Info Copied crazyhd.yml -2023-03-16 18:54:02.1567 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml -2023-03-16 18:54:02.1578 Info Copied crazyspirits.yml -2023-03-16 18:54:02.1578 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml -2023-03-16 18:54:02.1578 Info Copied crnaberza.yml -2023-03-16 18:54:02.1587 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml -2023-03-16 18:54:02.1587 Info Copied crt2fa.yml -2023-03-16 18:54:02.1587 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml -2023-03-16 18:54:02.1598 Info Copied danishbytes-api.yml -2023-03-16 18:54:02.1598 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml -2023-03-16 18:54:02.1613 Info Copied dariustracker.yml -2023-03-16 18:54:02.1613 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml -2023-03-16 18:54:02.1619 Info Copied dark-shadow.yml -2023-03-16 18:54:02.1619 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml -2023-03-16 18:54:02.1619 Info Copied datascene-api.yml -2023-03-16 18:54:02.1628 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml -2023-03-16 18:54:02.1628 Info Copied datatalli.yml -2023-03-16 18:54:02.1628 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml -2023-03-16 18:54:02.1639 Info Copied deildu.yml -2023-03-16 18:54:02.1639 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml -2023-03-16 18:54:02.1639 Info Copied demonoid.yml -2023-03-16 18:54:02.1647 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml -2023-03-16 18:54:02.1647 Info Copied desitorrents-api.yml -2023-03-16 18:54:02.1647 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml -2023-03-16 18:54:02.1658 Info Copied devil-torrents.yml -2023-03-16 18:54:02.1658 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml -2023-03-16 18:54:02.1658 Info Copied diablotorrent.yml -2023-03-16 18:54:02.1666 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml -2023-03-16 18:54:02.1666 Info Copied digitalcore.yml -2023-03-16 18:54:02.1666 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml -2023-03-16 18:54:02.1677 Info Copied dimeadozen.yml -2023-03-16 18:54:02.1677 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml -2023-03-16 18:54:02.1677 Info Copied discfan.yml -2023-03-16 18:54:02.1677 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml -2023-03-16 18:54:02.1690 Info Copied divteam.yml -2023-03-16 18:54:02.1690 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml -2023-03-16 18:54:02.1690 Info Copied dmhy.yml -2023-03-16 18:54:02.1698 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml -2023-03-16 18:54:02.1698 Info Copied docspedia.yml -2023-03-16 18:54:02.1698 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml -2023-03-16 18:54:02.1709 Info Copied dodder.yml -2023-03-16 18:54:02.1709 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml -2023-03-16 18:54:02.1709 Info Copied dreamtracker.yml -2023-03-16 18:54:02.1718 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml -2023-03-16 18:54:02.1718 Info Copied dxp.yml -2023-03-16 18:54:02.1718 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml -2023-03-16 18:54:02.1728 Info Copied ebookbay.yml -2023-03-16 18:54:02.1728 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml -2023-03-16 18:54:02.1728 Info Copied ebooks-shares.yml -2023-03-16 18:54:02.1737 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml -2023-03-16 18:54:02.1737 Info Copied ehentai.yml -2023-03-16 18:54:02.1737 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml -2023-03-16 18:54:02.1748 Info Copied electro-torrent.yml -2023-03-16 18:54:02.1748 Info Attempting to copy elitetorrent-pl.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/elitetorrent-pl.yml to destination: /app/Jackett/Definitions/elitetorrent-pl.yml -2023-03-16 18:54:02.1748 Info Copied elitetorrent-pl.yml -2023-03-16 18:54:02.1748 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml -2023-03-16 18:54:02.1760 Info Copied empornium.yml -2023-03-16 18:54:02.1760 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml -2023-03-16 18:54:02.1767 Info Copied empornium2fa.yml -2023-03-16 18:54:02.1767 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml -2023-03-16 18:54:02.1767 Info Copied eniahd.yml -2023-03-16 18:54:02.1767 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml -2023-03-16 18:54:02.1779 Info Copied esharenet.yml -2023-03-16 18:54:02.1779 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml -2023-03-16 18:54:02.1779 Info Copied estone.yml -2023-03-16 18:54:02.1788 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml -2023-03-16 18:54:02.1800 Info Copied exkinoray.yml -2023-03-16 18:54:02.1800 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml -2023-03-16 18:54:02.1807 Info Copied extratorrent-st.yml -2023-03-16 18:54:02.1807 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml -2023-03-16 18:54:02.1807 Info Copied extremebits.yml -2023-03-16 18:54:02.1807 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml -2023-03-16 18:54:02.1819 Info Copied extremetorrents.yml -2023-03-16 18:54:02.1819 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml -2023-03-16 18:54:02.1819 Info Copied extremlymtorrents.yml -2023-03-16 18:54:02.1828 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml -2023-03-16 18:54:02.1828 Info Copied exttorrents.yml -2023-03-16 18:54:02.1828 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml -2023-03-16 18:54:02.1839 Info Copied eztv.yml -2023-03-16 18:54:02.1839 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml -2023-03-16 18:54:02.1839 Info Copied falkonvisionteam.yml -2023-03-16 18:54:02.1848 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml -2023-03-16 18:54:02.1848 Info Copied fanoin.yml -2023-03-16 18:54:02.1848 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml -2023-03-16 18:54:02.1859 Info Copied fantasticheaven.yml -2023-03-16 18:54:02.1859 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml -2023-03-16 18:54:02.1859 Info Copied fantastiko.yml -2023-03-16 18:54:02.1867 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml -2023-03-16 18:54:02.1880 Info Copied femdomcult.yml -2023-03-16 18:54:02.1880 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml -2023-03-16 18:54:02.1880 Info Copied fenyarnyek-tracker.yml -2023-03-16 18:54:02.1888 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml -2023-03-16 18:54:02.1888 Info Copied file-tracker.yml -2023-03-16 18:54:02.1888 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml -2023-03-16 18:54:02.1900 Info Copied filelisting.yml -2023-03-16 18:54:02.1900 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml -2023-03-16 18:54:02.1900 Info Copied finelite.yml -2023-03-16 18:54:02.1908 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml -2023-03-16 18:54:02.1908 Info Copied finvip.yml -2023-03-16 18:54:02.1908 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml -2023-03-16 18:54:02.1919 Info Copied firebit.yml -2023-03-16 18:54:02.1919 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml -2023-03-16 18:54:02.1919 Info Copied fluxzone.yml -2023-03-16 18:54:02.1927 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml -2023-03-16 18:54:02.1927 Info Copied freshmeat.yml -2023-03-16 18:54:02.1927 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml -2023-03-16 18:54:02.1938 Info Copied frozenlayer.yml -2023-03-16 18:54:02.1938 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml -2023-03-16 18:54:02.1938 Info Copied ftuapps.yml -2023-03-16 18:54:02.1938 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml -2023-03-16 18:54:02.1950 Info Copied funkytorrents.yml -2023-03-16 18:54:02.1950 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml -2023-03-16 18:54:02.1957 Info Copied fuzer.yml -2023-03-16 18:54:02.1957 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml -2023-03-16 18:54:02.1957 Info Copied gainbound.yml -2023-03-16 18:54:02.1957 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml -2023-03-16 18:54:02.1970 Info Copied gamestorrents.yml -2023-03-16 18:54:02.1970 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml -2023-03-16 18:54:02.1970 Info Copied gay-torrents.yml -2023-03-16 18:54:02.1978 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml -2023-03-16 18:54:02.1978 Info Copied gay-torrentsorg.yml -2023-03-16 18:54:02.1978 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml -2023-03-16 18:54:02.1989 Info Copied gaytorrentru.yml -2023-03-16 18:54:02.1989 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml -2023-03-16 18:54:02.1989 Info Copied generationfree-api.yml -2023-03-16 18:54:02.1998 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml -2023-03-16 18:54:02.1998 Info Copied genesismovement.yml -2023-03-16 18:54:02.1998 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml -2023-03-16 18:54:02.2009 Info Copied gigatorrents.yml -2023-03-16 18:54:02.2009 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml -2023-03-16 18:54:02.2009 Info Copied gimmepeers.yml -2023-03-16 18:54:02.2017 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml -2023-03-16 18:54:02.2017 Info Copied girotorrent.yml -2023-03-16 18:54:02.2017 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml -2023-03-16 18:54:02.2028 Info Copied gktorrent.yml -2023-03-16 18:54:02.2028 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml -2023-03-16 18:54:02.2028 Info Copied glodls.yml -2023-03-16 18:54:02.2028 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml -2023-03-16 18:54:02.2040 Info Copied greekdiamond.yml -2023-03-16 18:54:02.2040 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml -2023-03-16 18:54:02.2047 Info Copied greekteam.yml -2023-03-16 18:54:02.2047 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml -2023-03-16 18:54:02.2047 Info Copied gtorrentpro.yml -2023-03-16 18:54:02.2047 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml -2023-03-16 18:54:02.2060 Info Copied haidan.yml -2023-03-16 18:54:02.2060 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml -2023-03-16 18:54:02.2060 Info Copied haitang.yml -2023-03-16 18:54:02.2068 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml -2023-03-16 18:54:02.2068 Info Copied happyfappy.yml -2023-03-16 18:54:02.2068 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml -2023-03-16 18:54:02.2078 Info Copied hawke-uno.yml -2023-03-16 18:54:02.2078 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml -2023-03-16 18:54:02.2078 Info Copied hd-unit3d-api.yml -2023-03-16 18:54:02.2086 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml -2023-03-16 18:54:02.2086 Info Copied hd4fans.yml -2023-03-16 18:54:02.2086 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml -2023-03-16 18:54:02.2097 Info Copied hdarea.yml -2023-03-16 18:54:02.2097 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml -2023-03-16 18:54:02.2097 Info Copied hdatmos.yml -2023-03-16 18:54:02.2097 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml -2023-03-16 18:54:02.2109 Info Copied hdc.yml -2023-03-16 18:54:02.2109 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml -2023-03-16 18:54:02.2109 Info Copied hdchina.yml -2023-03-16 18:54:02.2117 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml -2023-03-16 18:54:02.2117 Info Copied hdcztorrent.yml -2023-03-16 18:54:02.2117 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml -2023-03-16 18:54:02.2129 Info Copied hddolby.yml -2023-03-16 18:54:02.2129 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml -2023-03-16 18:54:02.2129 Info Copied hdfans.yml -2023-03-16 18:54:02.2137 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml -2023-03-16 18:54:02.2137 Info Copied hdforever.yml -2023-03-16 18:54:02.2137 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml -2023-03-16 18:54:02.2148 Info Copied hdgalaktik.yml -2023-03-16 18:54:02.2182 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml -2023-03-16 18:54:02.2188 Info Copied hdhome.yml -2023-03-16 18:54:02.2188 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml -2023-03-16 18:54:02.2188 Info Copied hdmayi.yml -2023-03-16 18:54:02.2196 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml -2023-03-16 18:54:02.2196 Info Copied hdmonkey.yml -2023-03-16 18:54:02.2196 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml -2023-03-16 18:54:02.2208 Info Copied hdolimpo-api.yml -2023-03-16 18:54:02.2208 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml -2023-03-16 18:54:02.2208 Info Copied hdonly.yml -2023-03-16 18:54:02.2217 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml -2023-03-16 18:54:02.2217 Info Copied hdroute.yml -2023-03-16 18:54:02.2217 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml -2023-03-16 18:54:02.2230 Info Copied hdsky.yml -2023-03-16 18:54:02.2230 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml -2023-03-16 18:54:02.2238 Info Copied hdtime.yml -2023-03-16 18:54:02.2238 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml -2023-03-16 18:54:02.2238 Info Copied hdtorrentsit.yml -2023-03-16 18:54:02.2246 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml -2023-03-16 18:54:02.2246 Info Copied hdturk.yml -2023-03-16 18:54:02.2246 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml -2023-03-16 18:54:02.2258 Info Copied hdu.yml -2023-03-16 18:54:02.2258 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml -2023-03-16 18:54:02.2258 Info Copied hdzone.yml -2023-03-16 18:54:02.2267 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml -2023-03-16 18:54:02.2267 Info Copied hebits.yml -2023-03-16 18:54:02.2267 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml -2023-03-16 18:54:02.2278 Info Copied hellashut.yml -2023-03-16 18:54:02.2278 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml -2023-03-16 18:54:02.2278 Info Copied hhanclub.yml -2023-03-16 18:54:02.2288 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml -2023-03-16 18:54:02.2288 Info Copied houseofdevil.yml -2023-03-16 18:54:02.2288 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml -2023-03-16 18:54:02.2300 Info Copied hqmusic.yml -2023-03-16 18:54:02.2300 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml -2023-03-16 18:54:02.2300 Info Copied huntorrent.yml -2023-03-16 18:54:02.2308 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml -2023-03-16 18:54:02.2308 Info Copied icc2022.yml -2023-03-16 18:54:02.2308 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml -2023-03-16 18:54:02.2319 Info Copied idope.yml -2023-03-16 18:54:02.2319 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml -2023-03-16 18:54:02.2319 Info Copied ihdbits.yml -2023-03-16 18:54:02.2329 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml -2023-03-16 18:54:02.2329 Info Copied ilcorsaroblu.yml -2023-03-16 18:54:02.2336 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml -2023-03-16 18:54:02.2336 Info Copied ilcorsaronero.yml -2023-03-16 18:54:02.2336 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml -2023-03-16 18:54:02.2348 Info Copied immortuos.yml -2023-03-16 18:54:02.2348 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml -2023-03-16 18:54:02.2348 Info Copied indietorrents.yml -2023-03-16 18:54:02.2357 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml -2023-03-16 18:54:02.2357 Info Copied insanetracker.yml -2023-03-16 18:54:02.2357 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml -2023-03-16 18:54:02.2369 Info Copied internetarchive.yml -2023-03-16 18:54:02.2369 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml -2023-03-16 18:54:02.2369 Info Copied isohunt2.yml -2023-03-16 18:54:02.2378 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml -2023-03-16 18:54:02.2378 Info Copied itorrent.yml -2023-03-16 18:54:02.2378 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml -2023-03-16 18:54:02.2389 Info Copied jav-torrent.yml -2023-03-16 18:54:02.2389 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml -2023-03-16 18:54:02.2389 Info Copied jme-reunit3d-api.yml -2023-03-16 18:54:02.2397 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml -2023-03-16 18:54:02.2397 Info Copied joyhd.yml -2023-03-16 18:54:02.2397 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml -2023-03-16 18:54:02.2408 Info Copied jpopsuki.yml -2023-03-16 18:54:02.2408 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml -2023-03-16 18:54:02.2408 Info Copied jptv.yml -2023-03-16 18:54:02.2408 Info Attempting to copy kamept.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/kamept.yml to destination: /app/Jackett/Definitions/kamept.yml -2023-03-16 18:54:02.2421 Info Copied kamept.yml -2023-03-16 18:54:02.2421 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml -2023-03-16 18:54:02.2428 Info Copied karagarga.yml -2023-03-16 18:54:02.2428 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml -2023-03-16 18:54:02.2428 Info Copied keepfriends.yml -2023-03-16 18:54:02.2437 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml -2023-03-16 18:54:02.2437 Info Copied kickasstorrents-to.yml -2023-03-16 18:54:02.2437 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml -2023-03-16 18:54:02.2447 Info Copied kickasstorrents-ws.yml -2023-03-16 18:54:02.2447 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml -2023-03-16 18:54:02.2447 Info Copied kinorun.yml -2023-03-16 18:54:02.2447 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml -2023-03-16 18:54:02.2460 Info Copied kinozal.yml -2023-03-16 18:54:02.2460 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml -2023-03-16 18:54:02.2467 Info Copied knaben.yml -2023-03-16 18:54:02.2467 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml -2023-03-16 18:54:02.2467 Info Copied korsar.yml -2023-03-16 18:54:02.2476 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml -2023-03-16 18:54:02.2476 Info Copied krazyzone.yml -2023-03-16 18:54:02.2476 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml -2023-03-16 18:54:02.2487 Info Copied kufirc.yml -2023-03-16 18:54:02.2487 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml -2023-03-16 18:54:02.2487 Info Copied lastfiles.yml -2023-03-16 18:54:02.2487 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml -2023-03-16 18:54:02.2501 Info Copied lat-team-api.yml -2023-03-16 18:54:02.2501 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml -2023-03-16 18:54:02.2507 Info Copied learnbits.yml -2023-03-16 18:54:02.2507 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml -2023-03-16 18:54:02.2507 Info Copied learnflakes.yml -2023-03-16 18:54:02.2507 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml -2023-03-16 18:54:02.2520 Info Copied leech24.yml -2023-03-16 18:54:02.2520 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml -2023-03-16 18:54:02.2527 Info Copied lemonhd.yml -2023-03-16 18:54:02.2527 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml -2023-03-16 18:54:02.2537 Info Copied lepornoinfo.yml -2023-03-16 18:54:02.2537 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml -2023-03-16 18:54:02.2547 Info Copied les-cinephiles.yml -2023-03-16 18:54:02.2547 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml -2023-03-16 18:54:02.2557 Info Copied lesaloon.yml -2023-03-16 18:54:02.2557 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml -2023-03-16 18:54:02.2567 Info Copied libranet.yml -2023-03-16 18:54:02.2567 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml -2023-03-16 18:54:02.2577 Info Copied limetorrents.yml -2023-03-16 18:54:02.2577 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml -2023-03-16 18:54:02.2588 Info Copied limetorrentsclone.yml -2023-03-16 18:54:02.2588 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml -2023-03-16 18:54:02.2598 Info Copied linkomanija.yml -2023-03-16 18:54:02.2598 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml -2023-03-16 18:54:02.2607 Info Copied linuxtracker.yml -2023-03-16 18:54:02.2607 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml -2023-03-16 18:54:02.2607 Info Copied locadora.yml -2023-03-16 18:54:02.2617 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml -2023-03-16 18:54:02.2617 Info Copied losslessclub.yml -2023-03-16 18:54:02.2617 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml -2023-03-16 18:54:02.2628 Info Copied lst.yml -2023-03-16 18:54:02.2628 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml -2023-03-16 18:54:02.2628 Info Copied mactorrentsdownload.yml -2023-03-16 18:54:02.2628 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml -2023-03-16 18:54:02.2640 Info Copied madsrevolution.yml -2023-03-16 18:54:02.2640 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml -2023-03-16 18:54:02.2647 Info Copied magicheaven.yml -2023-03-16 18:54:02.2647 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml -2023-03-16 18:54:02.2647 Info Copied magico.yml -2023-03-16 18:54:02.2647 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml -2023-03-16 18:54:02.2660 Info Copied majomparade.yml -2023-03-16 18:54:02.2660 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml -2023-03-16 18:54:02.2660 Info Copied marinetracker.yml -2023-03-16 18:54:02.2668 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml -2023-03-16 18:54:02.2668 Info Copied mazepa.yml -2023-03-16 18:54:02.2668 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml -2023-03-16 18:54:02.2679 Info Copied megamixtracker.yml -2023-03-16 18:54:02.2679 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml -2023-03-16 18:54:02.2679 Info Copied megapeer.yml -2023-03-16 18:54:02.2687 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml -2023-03-16 18:54:02.2687 Info Copied mesevilag.yml -2023-03-16 18:54:02.2687 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml -2023-03-16 18:54:02.2698 Info Copied metaltracker.yml -2023-03-16 18:54:02.2698 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml -2023-03-16 18:54:02.2698 Info Copied mikan.yml -2023-03-16 18:54:02.2698 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml -2023-03-16 18:54:02.2710 Info Copied milkie.yml -2023-03-16 18:54:02.2710 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml -2023-03-16 18:54:02.2710 Info Copied miobt.yml -2023-03-16 18:54:02.2718 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml -2023-03-16 18:54:02.2718 Info Copied mircrew.yml -2023-03-16 18:54:02.2718 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml -2023-03-16 18:54:02.2729 Info Copied mixtapetorrent.yml -2023-03-16 18:54:02.2729 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml -2023-03-16 18:54:02.2729 Info Copied mma-torrents.yml -2023-03-16 18:54:02.2737 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml -2023-03-16 18:54:02.2737 Info Copied mnv.yml -2023-03-16 18:54:02.2737 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml -2023-03-16 18:54:02.2748 Info Copied mojblink.yml -2023-03-16 18:54:02.2748 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml -2023-03-16 18:54:02.2748 Info Copied mousebits.yml -2023-03-16 18:54:02.2748 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml -2023-03-16 18:54:02.2768 Info Copied moviesdvdr.yml -2023-03-16 18:54:02.2768 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml -2023-03-16 18:54:02.2768 Info Copied moviesite.yml -2023-03-16 18:54:02.2776 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml -2023-03-16 18:54:02.2776 Info Copied movietorrent.yml -2023-03-16 18:54:02.2776 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml -2023-03-16 18:54:02.2786 Info Copied movietorrentz.yml -2023-03-16 18:54:02.2786 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml -2023-03-16 18:54:02.2786 Info Copied mteamtp.yml -2023-03-16 18:54:02.2786 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml -2023-03-16 18:54:02.2799 Info Copied mteamtp2fa.yml -2023-03-16 18:54:02.2799 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml -2023-03-16 18:54:02.2799 Info Copied muziekfabriek.yml -2023-03-16 18:54:02.2806 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml -2023-03-16 18:54:02.2806 Info Copied mvgroupforum.yml -2023-03-16 18:54:02.2806 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml -2023-03-16 18:54:02.2817 Info Copied mvgroupmain.yml -2023-03-16 18:54:02.2817 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml -2023-03-16 18:54:02.2817 Info Copied mypornclub.yml -2023-03-16 18:54:02.2817 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml -2023-03-16 18:54:02.2837 Info Copied myspleen.yml -2023-03-16 18:54:02.2837 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml -2023-03-16 18:54:02.2837 Info Copied nethd.yml -2023-03-16 18:54:02.2837 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml -2023-03-16 18:54:02.2849 Info Copied newretro.yml -2023-03-16 18:54:02.2849 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml -2023-03-16 18:54:02.2849 Info Copied newstudio.yml -2023-03-16 18:54:02.2857 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml -2023-03-16 18:54:02.2857 Info Copied newstudiol.yml -2023-03-16 18:54:02.2857 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml -2023-03-16 18:54:02.2877 Info Copied nicept.yml -2023-03-16 18:54:02.2877 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml -2023-03-16 18:54:02.2877 Info Copied nipponsei.yml -2023-03-16 18:54:02.2877 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml -2023-03-16 18:54:02.2889 Info Copied nntt.yml -2023-03-16 18:54:02.2889 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml -2023-03-16 18:54:02.2889 Info Copied noname-club.yml -2023-03-16 18:54:02.2898 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml -2023-03-16 18:54:02.2898 Info Copied noname-clubl.yml -2023-03-16 18:54:02.2898 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml -2023-03-16 18:54:02.2909 Info Copied nyaasi.yml -2023-03-16 18:54:02.2909 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml -2023-03-16 18:54:02.2909 Info Copied oldtoonsworld.yml -2023-03-16 18:54:02.2917 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml -2023-03-16 18:54:02.2917 Info Copied onejav.yml -2023-03-16 18:54:02.2917 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml -2023-03-16 18:54:02.2928 Info Copied opencd.yml -2023-03-16 18:54:02.2928 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml -2023-03-16 18:54:02.2928 Info Copied oshenpt.yml -2023-03-16 18:54:02.2937 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml -2023-03-16 18:54:02.2937 Info Copied ourbits.yml -2023-03-16 18:54:02.2937 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml -2023-03-16 18:54:02.2947 Info Copied p2pbg.yml -2023-03-16 18:54:02.2947 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml -2023-03-16 18:54:02.2947 Info Copied parnuxi.yml -2023-03-16 18:54:02.2947 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml -2023-03-16 18:54:02.2960 Info Copied partis.yml -2023-03-16 18:54:02.2998 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml -2023-03-16 18:54:02.2998 Info Copied pctorrent.yml -2023-03-16 18:54:02.2998 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml -2023-03-16 18:54:02.3008 Info Copied peeratiko.yml -2023-03-16 18:54:02.3008 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml -2023-03-16 18:54:02.3008 Info Copied peersfm.yml -2023-03-16 18:54:02.3008 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml -2023-03-16 18:54:02.3019 Info Copied pier720.yml -2023-03-16 18:54:02.3019 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml -2023-03-16 18:54:02.3019 Info Copied pignetwork.yml -2023-03-16 18:54:02.3019 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml -2023-03-16 18:54:02.3031 Info Copied piratbit.yml -2023-03-16 18:54:02.3031 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml -2023-03-16 18:54:02.3037 Info Copied piratbitl.yml -2023-03-16 18:54:02.3037 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml -2023-03-16 18:54:02.3037 Info Copied pixelcove.yml -2023-03-16 18:54:02.3037 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml -2023-03-16 18:54:02.3047 Info Copied pixelcove2fa.yml -2023-03-16 18:54:02.3047 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml -2023-03-16 18:54:02.3047 Info Copied polishsource.yml -2023-03-16 18:54:02.3047 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml -2023-03-16 18:54:02.3058 Info Copied polishtracker-api.yml -2023-03-16 18:54:02.3058 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml -2023-03-16 18:54:02.3058 Info Copied pornbay.yml -2023-03-16 18:54:02.3058 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml -2023-03-16 18:54:02.3068 Info Copied pornoslab.yml -2023-03-16 18:54:02.3068 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml -2023-03-16 18:54:02.3068 Info Copied pornotorrent.yml -2023-03-16 18:54:02.3068 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml -2023-03-16 18:54:02.3079 Info Copied portugas-api.yml -2023-03-16 18:54:02.3079 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml -2023-03-16 18:54:02.3079 Info Copied potuk.yml -2023-03-16 18:54:02.3079 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml -2023-03-16 18:54:02.3090 Info Copied proaudiotorrents.yml -2023-03-16 18:54:02.3090 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml -2023-03-16 18:54:02.3090 Info Copied proporno.yml -2023-03-16 18:54:02.3097 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml -2023-03-16 18:54:02.3097 Info Copied ptchina.yml -2023-03-16 18:54:02.3097 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml -2023-03-16 18:54:02.3097 Info Copied pterclub.yml -2023-03-16 18:54:02.3108 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml -2023-03-16 18:54:02.3108 Info Copied ptfiles.yml -2023-03-16 18:54:02.3108 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml -2023-03-16 18:54:02.3118 Info Copied pthome.yml -2023-03-16 18:54:02.3118 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml -2023-03-16 18:54:02.3118 Info Copied ptmsg.yml -2023-03-16 18:54:02.3118 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml -2023-03-16 18:54:02.3129 Info Copied ptsbao.yml -2023-03-16 18:54:02.3129 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml -2023-03-16 18:54:02.3129 Info Copied pttime.yml -2023-03-16 18:54:02.3137 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml -2023-03-16 18:54:02.3137 Info Copied punkshorror.yml -2023-03-16 18:54:02.3137 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml -2023-03-16 18:54:02.3147 Info Copied puntotorrent.yml -2023-03-16 18:54:02.3147 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml -2023-03-16 18:54:02.3147 Info Copied pussytorrents.yml -2023-03-16 18:54:02.3147 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml -2023-03-16 18:54:02.3158 Info Copied putao.yml -2023-03-16 18:54:02.3158 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml -2023-03-16 18:54:02.3158 Info Copied puurhollands.yml -2023-03-16 18:54:02.3158 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml -2023-03-16 18:54:02.3169 Info Copied pwtorrents.yml -2023-03-16 18:54:02.3169 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml -2023-03-16 18:54:02.3169 Info Copied r3vwtf.yml -2023-03-16 18:54:02.3169 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml -2023-03-16 18:54:02.3180 Info Copied racing4everyone-api.yml -2023-03-16 18:54:02.3180 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml -2023-03-16 18:54:02.3180 Info Copied racingforme.yml -2023-03-16 18:54:02.3187 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml -2023-03-16 18:54:02.3187 Info Copied rainbowtracker.yml -2023-03-16 18:54:02.3187 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml -2023-03-16 18:54:02.3187 Info Copied rapidzona.yml -2023-03-16 18:54:02.3198 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml -2023-03-16 18:54:02.3198 Info Copied redbits-api.yml -2023-03-16 18:54:02.3198 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml -2023-03-16 18:54:02.3207 Info Copied redstartorrent.yml -2023-03-16 18:54:02.3207 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml -2023-03-16 18:54:02.3207 Info Copied reelflix-api.yml -2023-03-16 18:54:02.3207 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml -2023-03-16 18:54:02.3217 Info Copied resurrectthenet.yml -2023-03-16 18:54:02.3217 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml -2023-03-16 18:54:02.3217 Info Copied rgfootball.yml -2023-03-16 18:54:02.3217 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml -2023-03-16 18:54:02.3229 Info Copied rintor.yml -2023-03-16 18:54:02.3229 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml -2023-03-16 18:54:02.3229 Info Copied rintornet.yml -2023-03-16 18:54:02.3229 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml -2023-03-16 18:54:02.3240 Info Copied riperam.yml -2023-03-16 18:54:02.3240 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml -2023-03-16 18:54:02.3240 Info Copied rockbox.yml -2023-03-16 18:54:02.3247 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml -2023-03-16 18:54:02.3247 Info Copied romanianmetaltorrents.yml -2023-03-16 18:54:02.3247 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml -2023-03-16 18:54:02.3256 Info Copied rptorrents.yml -2023-03-16 18:54:02.3256 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml -2023-03-16 18:54:02.3256 Info Copied rudub.yml -2023-03-16 18:54:02.3256 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml -2023-03-16 18:54:02.3268 Info Copied rus-media.yml -2023-03-16 18:54:02.3268 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml -2023-03-16 18:54:02.3268 Info Copied rustorka.yml -2023-03-16 18:54:02.3268 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml -2023-03-16 18:54:02.3280 Info Copied rutor.yml -2023-03-16 18:54:02.3280 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml -2023-03-16 18:54:02.3294 Info Copied rutracker-ru.yml -2023-03-16 18:54:02.3294 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml -2023-03-16 18:54:02.3294 Info Copied satclubbing.yml -2023-03-16 18:54:02.3294 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml -2023-03-16 18:54:02.3294 Info Copied scenerush.yml -2023-03-16 18:54:02.3294 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml -2023-03-16 18:54:02.3310 Info Copied sdbits.yml -2023-03-16 18:54:02.3310 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml -2023-03-16 18:54:02.3310 Info Copied seedfile.yml -2023-03-16 18:54:02.3317 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml -2023-03-16 18:54:02.3317 Info Copied seedoff.yml -2023-03-16 18:54:02.3317 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml -2023-03-16 18:54:02.3317 Info Copied selezen.yml -2023-03-16 18:54:02.3328 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml -2023-03-16 18:54:02.3328 Info Copied sexypics.yml -2023-03-16 18:54:02.3328 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml -2023-03-16 18:54:02.3337 Info Copied shanaproject.yml -2023-03-16 18:54:02.3337 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml -2023-03-16 18:54:02.3337 Info Copied shareisland-api.yml -2023-03-16 18:54:02.3337 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml -2023-03-16 18:54:02.3348 Info Copied sharewood.yml -2023-03-16 18:54:02.3348 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml -2023-03-16 18:54:02.3348 Info Copied sharkpt.yml -2023-03-16 18:54:02.3348 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml -2023-03-16 18:54:02.3358 Info Copied showrss.yml -2023-03-16 18:54:02.3358 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml -2023-03-16 18:54:02.3358 Info Copied siambit.yml -2023-03-16 18:54:02.3358 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml -2023-03-16 18:54:02.3370 Info Copied skipthecommercials-api.yml -2023-03-16 18:54:02.3370 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml -2023-03-16 18:54:02.3370 Info Copied skipthetrailers.yml -2023-03-16 18:54:02.3377 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml -2023-03-16 18:54:02.3377 Info Copied sktorrent-org.yml -2023-03-16 18:54:02.3377 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml -2023-03-16 18:54:02.3377 Info Copied sktorrent.yml -2023-03-16 18:54:02.3388 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml -2023-03-16 18:54:02.3388 Info Copied slosoul.yml -2023-03-16 18:54:02.3388 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml -2023-03-16 18:54:02.3397 Info Copied snowpt.yml -2023-03-16 18:54:02.3397 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml -2023-03-16 18:54:02.3397 Info Copied solidtorrents.yml -2023-03-16 18:54:02.3397 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml -2023-03-16 18:54:02.3408 Info Copied sosulki.yml -2023-03-16 18:54:02.3408 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml -2023-03-16 18:54:02.3408 Info Copied soulvoice.yml -2023-03-16 18:54:02.3408 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml -2023-03-16 18:54:02.3420 Info Copied speedmasterhd.yml -2023-03-16 18:54:02.3420 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml -2023-03-16 18:54:02.3420 Info Copied speedtorrentreloaded.yml -2023-03-16 18:54:02.3428 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml -2023-03-16 18:54:02.3428 Info Copied spidertk.yml -2023-03-16 18:54:02.3428 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml -2023-03-16 18:54:02.3437 Info Copied spiritofrevolution.yml -2023-03-16 18:54:02.3437 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml -2023-03-16 18:54:02.3437 Info Copied sporthd.yml -2023-03-16 18:54:02.3437 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml -2023-03-16 18:54:02.3448 Info Copied sportscult.yml -2023-03-16 18:54:02.3448 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml -2023-03-16 18:54:02.3448 Info Copied springsunday.yml -2023-03-16 18:54:02.3448 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml -2023-03-16 18:54:02.3459 Info Copied sugoimusic.yml -2023-03-16 18:54:02.3459 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml -2023-03-16 18:54:02.3459 Info Copied sukebeinyaasi.yml -2023-03-16 18:54:02.3459 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml -2023-03-16 18:54:02.3470 Info Copied superbits.yml -2023-03-16 18:54:02.3470 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml -2023-03-16 18:54:02.3470 Info Copied swarmazon-api.yml -2023-03-16 18:54:02.3476 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml -2023-03-16 18:54:02.3476 Info Copied tapochek.yml -2023-03-16 18:54:02.3476 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml -2023-03-16 18:54:02.3486 Info Copied tasmanit.yml -2023-03-16 18:54:02.3486 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml -2023-03-16 18:54:02.3486 Info Copied teamctgame.yml -2023-03-16 18:54:02.3486 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml -2023-03-16 18:54:02.3505 Info Copied teamhd.yml -2023-03-16 18:54:02.3507 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml -2023-03-16 18:54:02.3507 Info Copied teamos.yml -2023-03-16 18:54:02.3507 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml -2023-03-16 18:54:02.3516 Info Copied tekno3d.yml -2023-03-16 18:54:02.3516 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml -2023-03-16 18:54:02.3516 Info Copied tellytorrent-api.yml -2023-03-16 18:54:02.3516 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml -2023-03-16 18:54:02.3527 Info Copied teracod.yml -2023-03-16 18:54:02.3527 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml -2023-03-16 18:54:02.3527 Info Copied the-crazy-ones.yml -2023-03-16 18:54:02.3527 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml -2023-03-16 18:54:02.3538 Info Copied thedarkcommunity-api.yml -2023-03-16 18:54:02.3538 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml -2023-03-16 18:54:02.3538 Info Copied theempire.yml -2023-03-16 18:54:02.3538 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml -2023-03-16 18:54:02.3550 Info Copied thefallingangels.yml -2023-03-16 18:54:02.3550 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml -2023-03-16 18:54:02.3550 Info Copied thegeeks.yml -2023-03-16 18:54:02.3557 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml -2023-03-16 18:54:02.3557 Info Copied theleachzone.yml -2023-03-16 18:54:02.3557 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml -2023-03-16 18:54:02.3582 Info Copied themixingbowl.yml -2023-03-16 18:54:02.3582 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml -2023-03-16 18:54:02.3588 Info Copied thenewfun.yml -2023-03-16 18:54:02.3588 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml -2023-03-16 18:54:02.3588 Info Copied theoccult.yml -2023-03-16 18:54:02.3588 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml -2023-03-16 18:54:02.3600 Info Copied theoldschool-api.yml -2023-03-16 18:54:02.3600 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml -2023-03-16 18:54:02.3600 Info Copied thepiratebay.yml -2023-03-16 18:54:02.3607 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml -2023-03-16 18:54:02.3607 Info Copied theplace.yml -2023-03-16 18:54:02.3607 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml -2023-03-16 18:54:02.3616 Info Copied thesceneplace.yml -2023-03-16 18:54:02.3616 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml -2023-03-16 18:54:02.3616 Info Copied theshinning-api.yml -2023-03-16 18:54:02.3616 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml -2023-03-16 18:54:02.3627 Info Copied theshow.yml -2023-03-16 18:54:02.3627 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml -2023-03-16 18:54:02.3627 Info Copied thevault.yml -2023-03-16 18:54:02.3627 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml -2023-03-16 18:54:02.3638 Info Copied tjupt.yml -2023-03-16 18:54:02.3638 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml -2023-03-16 18:54:02.3638 Info Copied tlfbits.yml -2023-03-16 18:54:02.3638 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml -2023-03-16 18:54:02.3648 Info Copied tmghub.yml -2023-03-16 18:54:02.3648 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml -2023-03-16 18:54:02.3648 Info Copied tokyotosho.yml -2023-03-16 18:54:02.3648 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml -2023-03-16 18:54:02.3659 Info Copied torlock.yml -2023-03-16 18:54:02.3659 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml -2023-03-16 18:54:02.3659 Info Copied tornado.yml -2023-03-16 18:54:02.3666 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml -2023-03-16 18:54:02.3666 Info Copied torrent-explosiv.yml -2023-03-16 18:54:02.3666 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml -2023-03-16 18:54:02.3666 Info Copied torrent-pirat.yml -2023-03-16 18:54:02.3677 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml -2023-03-16 18:54:02.3677 Info Copied torrent-turk.yml -2023-03-16 18:54:02.3677 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml -2023-03-16 18:54:02.3686 Info Copied torrent9.yml -2023-03-16 18:54:02.3686 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml -2023-03-16 18:54:02.3686 Info Copied torrent911.yml -2023-03-16 18:54:02.3686 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml -2023-03-16 18:54:02.3698 Info Copied torrent9clone.yml -2023-03-16 18:54:02.3698 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml -2023-03-16 18:54:02.3698 Info Copied torrentbd.yml -2023-03-16 18:54:02.3698 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml -2023-03-16 18:54:02.3709 Info Copied torrentby.yml -2023-03-16 18:54:02.3709 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml -2023-03-16 18:54:02.3709 Info Copied torrentccf.yml -2023-03-16 18:54:02.3709 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml -2023-03-16 18:54:02.3720 Info Copied torrentcore.yml -2023-03-16 18:54:02.3720 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml -2023-03-16 18:54:02.3720 Info Copied torrentdownload.yml -2023-03-16 18:54:02.3727 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml -2023-03-16 18:54:02.3727 Info Copied torrentdownloads.yml -2023-03-16 18:54:02.3727 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml -2023-03-16 18:54:02.3727 Info Copied torrentfunk.yml -2023-03-16 18:54:02.3737 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml -2023-03-16 18:54:02.3737 Info Copied torrentgalaxy.yml -2023-03-16 18:54:02.3737 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml -2023-03-16 18:54:02.3747 Info Copied torrenthr.yml -2023-03-16 18:54:02.3747 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml -2023-03-16 18:54:02.3747 Info Copied torrenting.yml -2023-03-16 18:54:02.3747 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml -2023-03-16 18:54:02.3758 Info Copied torrentkitty.yml -2023-03-16 18:54:02.3758 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml -2023-03-16 18:54:02.3758 Info Copied torrentland.yml -2023-03-16 18:54:02.3758 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml -2023-03-16 18:54:02.3769 Info Copied torrentleech-pl.yml -2023-03-16 18:54:02.3769 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml -2023-03-16 18:54:02.3769 Info Copied torrentleech.yml -2023-03-16 18:54:02.3769 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml -2023-03-16 18:54:02.3878 Info Copied torrentlt.yml -2023-03-16 18:54:02.3878 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml -2023-03-16 18:54:02.3878 Info Copied torrentmasters.yml -2023-03-16 18:54:02.3878 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml -2023-03-16 18:54:02.3889 Info Copied torrentoyunindir.yml -2023-03-16 18:54:02.3889 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml -2023-03-16 18:54:02.3889 Info Copied torrentproject2.yml -2023-03-16 18:54:02.3889 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml -2023-03-16 18:54:02.3900 Info Copied torrentqq.yml -2023-03-16 18:54:02.3900 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml -2023-03-16 18:54:02.3900 Info Copied torrentsectorcrew.yml -2023-03-16 18:54:02.3907 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml -2023-03-16 18:54:02.3907 Info Copied torrentseeds-api.yml -2023-03-16 18:54:02.3907 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml -2023-03-16 18:54:02.3907 Info Copied torrentsir.yml -2023-03-16 18:54:02.3918 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml -2023-03-16 18:54:02.3918 Info Copied torrentslocal.yml -2023-03-16 18:54:02.3918 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml -2023-03-16 18:54:02.3927 Info Copied torrentv.yml -2023-03-16 18:54:02.3927 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml -2023-03-16 18:54:02.3927 Info Copied torrentview.yml -2023-03-16 18:54:02.3927 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml -2023-03-16 18:54:02.3938 Info Copied torrentwhiz.yml -2023-03-16 18:54:02.3938 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml -2023-03-16 18:54:02.3938 Info Copied torrentz2eu.yml -2023-03-16 18:54:02.3938 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml -2023-03-16 18:54:02.3948 Info Copied torrentz2nz.yml -2023-03-16 18:54:02.3948 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml -2023-03-16 18:54:02.3948 Info Copied totallykids.yml -2023-03-16 18:54:02.3948 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml -2023-03-16 18:54:02.3959 Info Copied totheglory.yml -2023-03-16 18:54:02.3959 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml -2023-03-16 18:54:02.3959 Info Copied totheglorycookie.yml -2023-03-16 18:54:02.3959 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml -2023-03-16 18:54:02.3969 Info Copied traht.yml -2023-03-16 18:54:02.3969 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml -2023-03-16 18:54:02.3969 Info Copied trancetraffic.yml -2023-03-16 18:54:02.3969 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml -2023-03-16 18:54:02.3980 Info Copied trezzor.yml -2023-03-16 18:54:02.3980 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml -2023-03-16 18:54:02.3980 Info Copied tribalmixes.yml -2023-03-16 18:54:02.3987 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml -2023-03-16 18:54:02.3987 Info Copied trupornolabs.yml -2023-03-16 18:54:02.3987 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml -2023-03-16 18:54:02.3987 Info Copied turkseed.yml -2023-03-16 18:54:02.3998 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml -2023-03-16 18:54:02.3998 Info Copied turktorrent.yml -2023-03-16 18:54:02.3998 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml -2023-03-16 18:54:02.4008 Info Copied tvchaosuk.yml -2023-03-16 18:54:02.4008 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml -2023-03-16 18:54:02.4008 Info Copied tvroad.yml -2023-03-16 18:54:02.4008 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml -2023-03-16 18:54:02.4019 Info Copied twilight.yml -2023-03-16 18:54:02.4019 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml -2023-03-16 18:54:02.4019 Info Copied u2.yml -2023-03-16 18:54:02.4027 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml -2023-03-16 18:54:02.4027 Info Copied uhdbits.yml -2023-03-16 18:54:02.4027 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml -2023-03-16 18:54:02.4037 Info Copied uniondht.yml -2023-03-16 18:54:02.4037 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml -2023-03-16 18:54:02.4037 Info Copied unionfansub.yml -2023-03-16 18:54:02.4037 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml -2023-03-16 18:54:02.4048 Info Copied uniongang.yml -2023-03-16 18:54:02.4048 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml -2023-03-16 18:54:02.4048 Info Copied unleashthecartoons.yml -2023-03-16 18:54:02.4048 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml -2023-03-16 18:54:02.4059 Info Copied unlimitz.yml -2023-03-16 18:54:02.4059 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml -2023-03-16 18:54:02.4059 Info Copied vsthouse.yml -2023-03-16 18:54:02.4067 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml -2023-03-16 18:54:02.4067 Info Copied vsttorrents.yml -2023-03-16 18:54:02.4067 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml -2023-03-16 18:54:02.4067 Info Copied vtorrent.yml -2023-03-16 18:54:02.4078 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml -2023-03-16 18:54:02.4193 Info Copied whiteangel.yml -2023-03-16 18:54:02.4193 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml -2023-03-16 18:54:02.4200 Info Copied wihd.yml -2023-03-16 18:54:02.4200 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml -2023-03-16 18:54:02.4200 Info Copied world-of-tomorrow.yml -2023-03-16 18:54:02.4208 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml -2023-03-16 18:54:02.4208 Info Copied x-ite.me.yml -2023-03-16 18:54:02.4208 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml -2023-03-16 18:54:02.4218 Info Copied xbytes2.yml -2023-03-16 18:54:02.4218 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml -2023-03-16 18:54:02.4218 Info Copied xthor-api.yml -2023-03-16 18:54:02.4218 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml -2023-03-16 18:54:02.4229 Info Copied xtorrenty.yml -2023-03-16 18:54:02.4229 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml -2023-03-16 18:54:02.4229 Info Copied xtremebytes.yml -2023-03-16 18:54:02.4236 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml -2023-03-16 18:54:02.4236 Info Copied xwtclassics.yml -2023-03-16 18:54:02.4236 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml -2023-03-16 18:54:02.4236 Info Copied xwtorrents.yml -2023-03-16 18:54:02.4248 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml -2023-03-16 18:54:02.4248 Info Copied xxxadulttorrent.yml -2023-03-16 18:54:02.4248 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml -2023-03-16 18:54:02.4257 Info Copied xxxtor.yml -2023-03-16 18:54:02.4257 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml -2023-03-16 18:54:02.4257 Info Copied xxxtorrents.yml -2023-03-16 18:54:02.4257 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml -2023-03-16 18:54:02.4268 Info Copied ydypt.yml -2023-03-16 18:54:02.4268 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml -2023-03-16 18:54:02.4268 Info Copied yggcookie.yml -2023-03-16 18:54:02.4268 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml -2023-03-16 18:54:02.4280 Info Copied yggtorrent.yml -2023-03-16 18:54:02.4280 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml -2023-03-16 18:54:02.4280 Info Copied yourbittorrent.yml -2023-03-16 18:54:02.4287 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml -2023-03-16 18:54:02.4287 Info Copied yts.yml -2023-03-16 18:54:02.4287 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml -2023-03-16 18:54:02.4296 Info Copied zamundanet.yml -2023-03-16 18:54:02.4296 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml -2023-03-16 18:54:02.4296 Info Copied zelkaorg.yml -2023-03-16 18:54:02.4296 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml -2023-03-16 18:54:02.4307 Info Copied zetorrents.yml -2023-03-16 18:54:02.4307 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml -2023-03-16 18:54:02.4307 Info Copied zmpt.yml -2023-03-16 18:54:02.4307 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml -2023-03-16 18:54:02.4318 Info Copied zomb.yml -2023-03-16 18:54:02.4318 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml -2023-03-16 18:54:02.4318 Info Copied ztracker.yml -2023-03-16 18:54:02.4327 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll -2023-03-16 18:54:02.4327 Info Copied FlareSolverrSharp.dll -2023-03-16 18:54:02.4327 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll -2023-03-16 18:54:02.4341 Info Copied ICSharpCode.SharpZipLib.dll -2023-03-16 18:54:02.4341 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh -2023-03-16 18:54:02.4347 Info Copied install_service_systemd.sh -2023-03-16 18:54:02.4347 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/jackett to destination: /app/Jackett/jackett -2023-03-16 18:54:02.4363 Info Copied jackett -2023-03-16 18:54:02.4363 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh -2023-03-16 18:54:02.4363 Info Copied jackett_launcher.sh -2023-03-16 18:54:02.4363 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll -2023-03-16 18:54:02.4411 Info Copied Jackett.Common.dll -2023-03-16 18:54:02.4411 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb -2023-03-16 18:54:02.4423 Info Copied Jackett.Common.pdb -2023-03-16 18:54:02.4423 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json -2023-03-16 18:54:02.4431 Info Copied jackett.deps.json -2023-03-16 18:54:02.4431 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll -2023-03-16 18:54:02.4443 Info Copied jackett.dll -2023-03-16 18:54:02.4443 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb -2023-03-16 18:54:02.4450 Info Copied jackett.pdb -2023-03-16 18:54:02.4450 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json -2023-03-16 18:54:02.4450 Info Copied jackett.runtimeconfig.json -2023-03-16 18:54:02.4457 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater -2023-03-16 18:54:02.4457 Info Copied JackettUpdater -2023-03-16 18:54:02.4457 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json -2023-03-16 18:54:02.4469 Info Copied JackettUpdater.deps.json -2023-03-16 18:54:02.4469 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll -2023-03-16 18:54:02.4488 Info Copied JackettUpdater.dll -2023-03-16 18:54:02.4488 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb -2023-03-16 18:54:02.4488 Info Copied JackettUpdater.pdb -2023-03-16 18:54:02.4496 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json -2023-03-16 18:54:02.4496 Info Copied JackettUpdater.runtimeconfig.json -2023-03-16 18:54:02.4496 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so -2023-03-16 18:54:02.4557 Info Copied libclrjit.so -2023-03-16 18:54:02.4557 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so -2023-03-16 18:54:02.4697 Info Copied libcoreclr.so -2023-03-16 18:54:02.4697 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so -2023-03-16 18:54:02.4718 Info Copied libcoreclrtraceptprovider.so -2023-03-16 18:54:02.4718 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so -2023-03-16 18:54:02.4734 Info Copied libdbgshim.so -2023-03-16 18:54:02.4734 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so -2023-03-16 18:54:02.4745 Info Copied libhostfxr.so -2023-03-16 18:54:02.4747 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so -2023-03-16 18:54:02.4757 Info Copied libhostpolicy.so -2023-03-16 18:54:02.4757 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so -2023-03-16 18:54:02.4757 Info Copied libMono.Unix.so -2023-03-16 18:54:02.4766 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so -2023-03-16 18:54:02.4815 Info Copied libmscordaccore.so -2023-03-16 18:54:02.4817 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so -2023-03-16 18:54:02.4860 Info Copied libmscordbi.so -2023-03-16 18:54:02.4860 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so -2023-03-16 18:54:02.4877 Info Copied libSystem.Globalization.Native.so -2023-03-16 18:54:02.4877 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so -2023-03-16 18:54:02.4897 Info Copied libSystem.IO.Compression.Native.so -2023-03-16 18:54:02.4897 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so -2023-03-16 18:54:02.4897 Info Copied libSystem.Native.so -2023-03-16 18:54:02.4897 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so -2023-03-16 18:54:02.4910 Info Copied libSystem.Net.Security.Native.so -2023-03-16 18:54:02.4910 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so -2023-03-16 18:54:02.4920 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so -2023-03-16 18:54:02.4920 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/LICENSE to destination: /app/Jackett/LICENSE -2023-03-16 18:54:02.4920 Info Copied LICENSE -2023-03-16 18:54:02.4928 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll -2023-03-16 18:54:02.4928 Info Copied Microsoft.AspNetCore.Antiforgery.dll -2023-03-16 18:54:02.4928 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-03-16 18:54:02.4940 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-03-16 18:54:02.4940 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll -2023-03-16 18:54:02.4948 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll -2023-03-16 18:54:02.4948 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll -2023-03-16 18:54:02.4948 Info Copied Microsoft.AspNetCore.Authentication.Core.dll -2023-03-16 18:54:02.4957 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll -2023-03-16 18:54:02.4957 Info Copied Microsoft.AspNetCore.Authentication.dll -2023-03-16 18:54:02.4957 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll -2023-03-16 18:54:02.4972 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll -2023-03-16 18:54:02.4972 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll -2023-03-16 18:54:02.4979 Info Copied Microsoft.AspNetCore.Authorization.dll -2023-03-16 18:54:02.4979 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll -2023-03-16 18:54:02.4979 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll -2023-03-16 18:54:02.4988 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll -2023-03-16 18:54:02.4988 Info Copied Microsoft.AspNetCore.Components.Authorization.dll -2023-03-16 18:54:02.4988 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll -2023-03-16 18:54:02.5009 Info Copied Microsoft.AspNetCore.Components.dll -2023-03-16 18:54:02.5009 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll -2023-03-16 18:54:02.5009 Info Copied Microsoft.AspNetCore.Components.Forms.dll -2023-03-16 18:54:02.5018 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll -2023-03-16 18:54:02.5034 Info Copied Microsoft.AspNetCore.Components.Server.dll -2023-03-16 18:54:02.5034 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll -2023-03-16 18:54:02.5044 Info Copied Microsoft.AspNetCore.Components.Web.dll -2023-03-16 18:54:02.5044 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll -2023-03-16 18:54:02.5052 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll -2023-03-16 18:54:02.5052 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll -2023-03-16 18:54:02.5058 Info Copied Microsoft.AspNetCore.CookiePolicy.dll -2023-03-16 18:54:02.5058 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll -2023-03-16 18:54:02.5058 Info Copied Microsoft.AspNetCore.Cors.dll -2023-03-16 18:54:02.5067 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll -2023-03-16 18:54:02.5067 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll -2023-03-16 18:54:02.5067 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-03-16 18:54:02.5078 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-03-16 18:54:02.5078 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-03-16 18:54:02.5078 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-03-16 18:54:02.5078 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll -2023-03-16 18:54:02.5097 Info Copied Microsoft.AspNetCore.DataProtection.dll -2023-03-16 18:54:02.5097 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-03-16 18:54:02.5097 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-03-16 18:54:02.5097 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-03-16 18:54:02.5109 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-03-16 18:54:02.5109 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll -2023-03-16 18:54:02.5121 Info Copied Microsoft.AspNetCore.Diagnostics.dll -2023-03-16 18:54:02.5121 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-03-16 18:54:02.5128 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-03-16 18:54:02.5128 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll -2023-03-16 18:54:02.5128 Info Copied Microsoft.AspNetCore.dll -2023-03-16 18:54:02.5137 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll -2023-03-16 18:54:02.5137 Info Copied Microsoft.AspNetCore.HostFiltering.dll -2023-03-16 18:54:02.5137 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-03-16 18:54:02.5150 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-03-16 18:54:02.5150 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll -2023-03-16 18:54:02.5162 Info Copied Microsoft.AspNetCore.Hosting.dll -2023-03-16 18:54:02.5162 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-03-16 18:54:02.5170 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-03-16 18:54:02.5170 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll -2023-03-16 18:54:02.5177 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll -2023-03-16 18:54:02.5177 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll -2023-03-16 18:54:02.5188 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll -2023-03-16 18:54:02.5188 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll -2023-03-16 18:54:02.5188 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll -2023-03-16 18:54:02.5197 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll -2023-03-16 18:54:02.5208 Info Copied Microsoft.AspNetCore.Http.Connections.dll -2023-03-16 18:54:02.5208 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll -2023-03-16 18:54:02.5219 Info Copied Microsoft.AspNetCore.Http.dll -2023-03-16 18:54:02.5219 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll -2023-03-16 18:54:02.5239 Info Copied Microsoft.AspNetCore.Http.Extensions.dll -2023-03-16 18:54:02.5239 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll -2023-03-16 18:54:02.5247 Info Copied Microsoft.AspNetCore.Http.Features.dll -2023-03-16 18:54:02.5247 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll -2023-03-16 18:54:02.5273 Info Copied Microsoft.AspNetCore.Http.Results.dll -2023-03-16 18:54:02.5279 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll -2023-03-16 18:54:02.5298 Info Copied Microsoft.AspNetCore.HttpLogging.dll -2023-03-16 18:54:02.5298 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll -2023-03-16 18:54:02.5318 Info Copied Microsoft.AspNetCore.HttpOverrides.dll -2023-03-16 18:54:02.5318 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll -2023-03-16 18:54:02.5336 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll -2023-03-16 18:54:02.5341 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll -2023-03-16 18:54:02.5361 Info Copied Microsoft.AspNetCore.Identity.dll -2023-03-16 18:54:02.5361 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll -2023-03-16 18:54:02.5379 Info Copied Microsoft.AspNetCore.JsonPatch.dll -2023-03-16 18:54:02.5379 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll -2023-03-16 18:54:02.5398 Info Copied Microsoft.AspNetCore.Localization.dll -2023-03-16 18:54:02.5398 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll -2023-03-16 18:54:02.5416 Info Copied Microsoft.AspNetCore.Localization.Routing.dll -2023-03-16 18:54:02.5420 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll -2023-03-16 18:54:02.5434 Info Copied Microsoft.AspNetCore.Metadata.dll -2023-03-16 18:54:02.5438 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-03-16 18:54:02.5459 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-03-16 18:54:02.5459 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-03-16 18:54:02.5483 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-03-16 18:54:02.5487 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll -2023-03-16 18:54:02.5565 Info Copied Microsoft.AspNetCore.Mvc.Core.dll -2023-03-16 18:54:02.5570 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll -2023-03-16 18:54:02.5584 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll -2023-03-16 18:54:02.5589 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-03-16 18:54:02.5606 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-03-16 18:54:02.5610 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll -2023-03-16 18:54:02.5624 Info Copied Microsoft.AspNetCore.Mvc.dll -2023-03-16 18:54:02.5629 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-03-16 18:54:02.5642 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-03-16 18:54:02.5642 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-03-16 18:54:02.5663 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-03-16 18:54:02.5668 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll -2023-03-16 18:54:02.5681 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll -2023-03-16 18:54:02.5681 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-03-16 18:54:02.5703 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-03-16 18:54:02.5708 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll -2023-03-16 18:54:02.5728 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll -2023-03-16 18:54:02.5728 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-03-16 18:54:02.5761 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-03-16 18:54:02.5761 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-03-16 18:54:02.5788 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-03-16 18:54:02.5788 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-03-16 18:54:02.5832 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-03-16 18:54:02.5837 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll -2023-03-16 18:54:02.5852 Info Copied Microsoft.AspNetCore.Razor.dll -2023-03-16 18:54:02.5852 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll -2023-03-16 18:54:02.5872 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll -2023-03-16 18:54:02.5877 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-03-16 18:54:02.5890 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-03-16 18:54:02.5890 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll -2023-03-16 18:54:02.5912 Info Copied Microsoft.AspNetCore.ResponseCaching.dll -2023-03-16 18:54:02.5917 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll -2023-03-16 18:54:02.5932 Info Copied Microsoft.AspNetCore.ResponseCompression.dll -2023-03-16 18:54:02.5937 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll -2023-03-16 18:54:02.5958 Info Copied Microsoft.AspNetCore.Rewrite.dll -2023-03-16 18:54:02.5958 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll -2023-03-16 18:54:02.5977 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll -2023-03-16 18:54:02.5977 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll -2023-03-16 18:54:02.6044 Info Copied Microsoft.AspNetCore.Routing.dll -2023-03-16 18:54:02.6051 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll -2023-03-16 18:54:02.6104 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll -2023-03-16 18:54:02.6110 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll -2023-03-16 18:54:02.6165 Info Copied Microsoft.AspNetCore.Server.IIS.dll -2023-03-16 18:54:02.6171 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll -2023-03-16 18:54:02.6189 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll -2023-03-16 18:54:02.6189 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-03-16 18:54:02.6359 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-03-16 18:54:02.6359 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll -2023-03-16 18:54:02.6382 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll -2023-03-16 18:54:02.6388 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-03-16 18:54:02.6420 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-03-16 18:54:02.6420 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-03-16 18:54:02.6451 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-03-16 18:54:02.6457 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll -2023-03-16 18:54:02.6474 Info Copied Microsoft.AspNetCore.Session.dll -2023-03-16 18:54:02.6478 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll -2023-03-16 18:54:02.6492 Info Copied Microsoft.AspNetCore.SignalR.Common.dll -2023-03-16 18:54:02.6492 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll -2023-03-16 18:54:02.6520 Info Copied Microsoft.AspNetCore.SignalR.Core.dll -2023-03-16 18:54:02.6520 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll -2023-03-16 18:54:02.6533 Info Copied Microsoft.AspNetCore.SignalR.dll -2023-03-16 18:54:02.6538 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-03-16 18:54:02.6552 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-03-16 18:54:02.6552 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll -2023-03-16 18:54:02.6572 Info Copied Microsoft.AspNetCore.StaticFiles.dll -2023-03-16 18:54:02.6572 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll -2023-03-16 18:54:02.6589 Info Copied Microsoft.AspNetCore.WebSockets.dll -2023-03-16 18:54:02.6589 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll -2023-03-16 18:54:02.6610 Info Copied Microsoft.AspNetCore.WebUtilities.dll -2023-03-16 18:54:02.6610 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll -2023-03-16 18:54:02.6652 Info Copied Microsoft.CSharp.dll -2023-03-16 18:54:02.6652 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll -2023-03-16 18:54:02.6668 Info Copied Microsoft.Extensions.Caching.Abstractions.dll -2023-03-16 18:54:02.6668 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll -2023-03-16 18:54:02.6685 Info Copied Microsoft.Extensions.Caching.Memory.dll -2023-03-16 18:54:02.6689 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll -2023-03-16 18:54:02.6700 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll -2023-03-16 18:54:02.6700 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll -2023-03-16 18:54:02.6716 Info Copied Microsoft.Extensions.Configuration.Binder.dll -2023-03-16 18:54:02.6720 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll -2023-03-16 18:54:02.6731 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll -2023-03-16 18:54:02.6731 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll -2023-03-16 18:54:02.6748 Info Copied Microsoft.Extensions.Configuration.dll -2023-03-16 18:54:02.6748 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-03-16 18:54:02.6761 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-03-16 18:54:02.6761 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll -2023-03-16 18:54:02.6777 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll -2023-03-16 18:54:02.6777 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll -2023-03-16 18:54:02.6791 Info Copied Microsoft.Extensions.Configuration.Ini.dll -2023-03-16 18:54:02.6791 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll -2023-03-16 18:54:02.6806 Info Copied Microsoft.Extensions.Configuration.Json.dll -2023-03-16 18:54:02.6810 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-03-16 18:54:02.6821 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-03-16 18:54:02.6821 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll -2023-03-16 18:54:02.6835 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll -2023-03-16 18:54:02.6839 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll -2023-03-16 18:54:02.7228 Info Copied Microsoft.Extensions.Configuration.Xml.dll -2023-03-16 18:54:02.7228 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-03-16 18:54:02.7251 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-03-16 18:54:02.7251 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll -2023-03-16 18:54:02.7274 Info Copied Microsoft.Extensions.DependencyInjection.dll -2023-03-16 18:54:02.7278 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-03-16 18:54:02.7290 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-03-16 18:54:02.7290 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-03-16 18:54:02.7308 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-03-16 18:54:02.7308 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll -2023-03-16 18:54:02.7322 Info Copied Microsoft.Extensions.Features.dll -2023-03-16 18:54:02.7322 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll -2023-03-16 18:54:02.7339 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll -2023-03-16 18:54:02.7339 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll -2023-03-16 18:54:02.7353 Info Copied Microsoft.Extensions.FileProviders.Composite.dll -2023-03-16 18:54:02.7357 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll -2023-03-16 18:54:02.7370 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll -2023-03-16 18:54:02.7370 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll -2023-03-16 18:54:02.7401 Info Copied Microsoft.Extensions.FileProviders.Physical.dll -2023-03-16 18:54:02.7401 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll -2023-03-16 18:54:02.7419 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll -2023-03-16 18:54:02.7419 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll -2023-03-16 18:54:02.7464 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll -2023-03-16 18:54:02.7469 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll -2023-03-16 18:54:02.7484 Info Copied Microsoft.Extensions.Hosting.dll -2023-03-16 18:54:02.7488 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll -2023-03-16 18:54:02.7504 Info Copied Microsoft.Extensions.Http.dll -2023-03-16 18:54:02.7508 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll -2023-03-16 18:54:02.7533 Info Copied Microsoft.Extensions.Identity.Core.dll -2023-03-16 18:54:02.7537 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll -2023-03-16 18:54:02.7551 Info Copied Microsoft.Extensions.Identity.Stores.dll -2023-03-16 18:54:02.7551 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll -2023-03-16 18:54:02.7566 Info Copied Microsoft.Extensions.Localization.Abstractions.dll -2023-03-16 18:54:02.7569 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll -2023-03-16 18:54:02.7580 Info Copied Microsoft.Extensions.Localization.dll -2023-03-16 18:54:02.7580 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll -2023-03-16 18:54:02.7600 Info Copied Microsoft.Extensions.Logging.Abstractions.dll -2023-03-16 18:54:02.7600 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll -2023-03-16 18:54:02.7615 Info Copied Microsoft.Extensions.Logging.Configuration.dll -2023-03-16 18:54:02.7619 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll -2023-03-16 18:54:02.7634 Info Copied Microsoft.Extensions.Logging.Console.dll -2023-03-16 18:54:02.7638 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll -2023-03-16 18:54:02.7648 Info Copied Microsoft.Extensions.Logging.Debug.dll -2023-03-16 18:54:02.7648 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll -2023-03-16 18:54:02.7664 Info Copied Microsoft.Extensions.Logging.dll -2023-03-16 18:54:02.7669 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll -2023-03-16 18:54:02.7680 Info Copied Microsoft.Extensions.Logging.EventLog.dll -2023-03-16 18:54:02.7680 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll -2023-03-16 18:54:02.7696 Info Copied Microsoft.Extensions.Logging.EventSource.dll -2023-03-16 18:54:02.7700 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll -2023-03-16 18:54:02.7711 Info Copied Microsoft.Extensions.Logging.TraceSource.dll -2023-03-16 18:54:02.7711 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll -2023-03-16 18:54:02.7726 Info Copied Microsoft.Extensions.ObjectPool.dll -2023-03-16 18:54:02.7731 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-03-16 18:54:02.7743 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-03-16 18:54:02.7748 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll -2023-03-16 18:54:02.7759 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll -2023-03-16 18:54:02.7759 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll -2023-03-16 18:54:02.7778 Info Copied Microsoft.Extensions.Options.dll -2023-03-16 18:54:02.7778 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll -2023-03-16 18:54:02.7796 Info Copied Microsoft.Extensions.Primitives.dll -2023-03-16 18:54:02.7801 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll -2023-03-16 18:54:02.7813 Info Copied Microsoft.Extensions.WebEncoders.dll -2023-03-16 18:54:02.7817 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll -2023-03-16 18:54:02.7833 Info Copied Microsoft.JSInterop.dll -2023-03-16 18:54:02.7837 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll -2023-03-16 18:54:02.7856 Info Copied Microsoft.Net.Http.Headers.dll -2023-03-16 18:54:02.7861 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll -2023-03-16 18:54:02.8435 Info Copied Microsoft.VisualBasic.Core.dll -2023-03-16 18:54:02.8442 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll -2023-03-16 18:54:02.8453 Info Copied Microsoft.VisualBasic.dll -2023-03-16 18:54:02.8458 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll -2023-03-16 18:54:02.8480 Info Copied Microsoft.Win32.Primitives.dll -2023-03-16 18:54:02.8480 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll -2023-03-16 18:54:02.8498 Info Copied Microsoft.Win32.Registry.dll -2023-03-16 18:54:02.8498 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll -2023-03-16 18:54:02.8523 Info Copied MimeMapping.dll -2023-03-16 18:54:02.8528 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll -2023-03-16 18:54:02.8546 Info Copied Mono.Posix.dll -2023-03-16 18:54:02.8551 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll -2023-03-16 18:54:02.8568 Info Copied Mono.Unix.dll -2023-03-16 18:54:02.8568 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll -2023-03-16 18:54:02.8583 Info Copied mscorlib.dll -2023-03-16 18:54:02.8588 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll -2023-03-16 18:54:02.8601 Info Copied netstandard.dll -2023-03-16 18:54:02.8601 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll -2023-03-16 18:54:02.8750 Info Copied Newtonsoft.Json.Bson.dll -2023-03-16 18:54:02.8758 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll -2023-03-16 18:54:02.8796 Info Copied Newtonsoft.Json.dll -2023-03-16 18:54:02.8802 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll -2023-03-16 18:54:02.8839 Info Copied NLog.dll -2023-03-16 18:54:02.8839 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll -2023-03-16 18:54:02.8856 Info Copied NLog.Extensions.Logging.dll -2023-03-16 18:54:02.8861 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll -2023-03-16 18:54:02.8877 Info Copied NLog.Web.AspNetCore.dll -2023-03-16 18:54:02.8877 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll -2023-03-16 18:54:02.8892 Info Copied Org.Mentalis.dll -2023-03-16 18:54:02.8897 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll -2023-03-16 18:54:02.8918 Info Copied Polly.dll -2023-03-16 18:54:02.8918 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/README.md to destination: /app/Jackett/README.md -2023-03-16 18:54:02.8932 Info Copied README.md -2023-03-16 18:54:02.8937 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll -2023-03-16 18:54:02.8947 Info Copied SocksWebProxy.dll -2023-03-16 18:54:02.8947 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll -2023-03-16 18:54:02.9848 Info Copied System.AppContext.dll -2023-03-16 18:54:02.9868 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll -2023-03-16 18:54:02.9868 Info Copied System.Buffers.dll -2023-03-16 18:54:02.9886 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll -2023-03-16 18:54:02.9914 Info Copied System.Collections.Concurrent.dll -2023-03-16 18:54:02.9920 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll -2023-03-16 18:54:02.9943 Info Copied System.Collections.dll -2023-03-16 18:54:02.9948 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll -2023-03-16 18:54:02.9991 Info Copied System.Collections.Immutable.dll -2023-03-16 18:54:02.9997 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll -2023-03-16 18:54:03.0014 Info Copied System.Collections.NonGeneric.dll -2023-03-16 18:54:03.0020 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll -2023-03-16 18:54:03.0036 Info Copied System.Collections.Specialized.dll -2023-03-16 18:54:03.0041 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll -2023-03-16 18:54:03.0426 Info Copied System.ComponentModel.Annotations.dll -2023-03-16 18:54:03.0434 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll -2023-03-16 18:54:03.0503 Info Copied System.ComponentModel.DataAnnotations.dll -2023-03-16 18:54:03.0508 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll -2023-03-16 18:54:03.0520 Info Copied System.ComponentModel.dll -2023-03-16 18:54:03.0520 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll -2023-03-16 18:54:03.0535 Info Copied System.ComponentModel.EventBasedAsync.dll -2023-03-16 18:54:03.0539 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll -2023-03-16 18:54:03.0553 Info Copied System.ComponentModel.Primitives.dll -2023-03-16 18:54:03.0557 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll -2023-03-16 18:54:03.0597 Info Copied System.ComponentModel.TypeConverter.dll -2023-03-16 18:54:03.0597 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll -2023-03-16 18:54:03.0611 Info Copied System.Configuration.dll -2023-03-16 18:54:03.0611 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll -2023-03-16 18:54:03.1073 Info Copied System.Console.dll -2023-03-16 18:54:03.1081 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll -2023-03-16 18:54:03.1097 Info Copied System.Core.dll -2023-03-16 18:54:03.1097 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll -2023-03-16 18:54:03.1228 Info Copied System.Data.Common.dll -2023-03-16 18:54:03.1228 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll -2023-03-16 18:54:03.1243 Info Copied System.Data.DataSetExtensions.dll -2023-03-16 18:54:03.1243 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll -2023-03-16 18:54:03.1256 Info Copied System.Data.dll -2023-03-16 18:54:03.1261 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll -2023-03-16 18:54:03.1846 Info Copied System.Diagnostics.Contracts.dll -2023-03-16 18:54:03.1854 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll -2023-03-16 18:54:03.1872 Info Copied System.Diagnostics.Debug.dll -2023-03-16 18:54:03.1872 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll -2023-03-16 18:54:03.1938 Info Copied System.Diagnostics.DiagnosticSource.dll -2023-03-16 18:54:03.1938 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll -2023-03-16 18:54:03.1971 Info Copied System.Diagnostics.EventLog.dll -2023-03-16 18:54:03.1971 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll -2023-03-16 18:54:03.1994 Info Copied System.Diagnostics.FileVersionInfo.dll -2023-03-16 18:54:03.2000 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll -2023-03-16 18:54:03.2042 Info Copied System.Diagnostics.Process.dll -2023-03-16 18:54:03.2047 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll -2023-03-16 18:54:03.2079 Info Copied System.Diagnostics.StackTrace.dll -2023-03-16 18:54:03.2079 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll -2023-03-16 18:54:03.2100 Info Copied System.Diagnostics.TextWriterTraceListener.dll -2023-03-16 18:54:03.2100 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll -2023-03-16 18:54:03.2115 Info Copied System.Diagnostics.Tools.dll -2023-03-16 18:54:03.2124 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll -2023-03-16 18:54:03.2139 Info Copied System.Diagnostics.TraceSource.dll -2023-03-16 18:54:03.2139 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll -2023-03-16 18:54:03.2159 Info Copied System.Diagnostics.Tracing.dll -2023-03-16 18:54:03.2159 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.dll to destination: /app/Jackett/System.dll -2023-03-16 18:54:03.2173 Info Copied System.dll -2023-03-16 18:54:03.2177 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll -2023-03-16 18:54:03.2187 Info Copied System.Drawing.dll -2023-03-16 18:54:03.2187 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll -2023-03-16 18:54:03.2204 Info Copied System.Drawing.Primitives.dll -2023-03-16 18:54:03.2209 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll -2023-03-16 18:54:03.2218 Info Copied System.Dynamic.Runtime.dll -2023-03-16 18:54:03.2218 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll -2023-03-16 18:54:03.2240 Info Copied System.Formats.Asn1.dll -2023-03-16 18:54:03.2240 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll -2023-03-16 18:54:03.2253 Info Copied System.Globalization.Calendars.dll -2023-03-16 18:54:03.2258 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll -2023-03-16 18:54:03.2267 Info Copied System.Globalization.dll -2023-03-16 18:54:03.2267 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll -2023-03-16 18:54:03.2279 Info Copied System.Globalization.Extensions.dll -2023-03-16 18:54:03.2279 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll -2023-03-16 18:54:03.2297 Info Copied System.IO.Compression.Brotli.dll -2023-03-16 18:54:03.2297 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll -2023-03-16 18:54:03.2833 Info Copied System.IO.Compression.dll -2023-03-16 18:54:03.2840 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll -2023-03-16 18:54:03.2851 Info Copied System.IO.Compression.FileSystem.dll -2023-03-16 18:54:03.2851 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll -2023-03-16 18:54:03.2868 Info Copied System.IO.Compression.ZipFile.dll -2023-03-16 18:54:03.2868 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll -2023-03-16 18:54:03.2881 Info Copied System.IO.dll -2023-03-16 18:54:03.2887 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll -2023-03-16 18:54:03.2898 Info Copied System.IO.FileSystem.AccessControl.dll -2023-03-16 18:54:03.2898 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll -2023-03-16 18:54:03.2912 Info Copied System.IO.FileSystem.dll -2023-03-16 18:54:03.2912 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll -2023-03-16 18:54:03.2929 Info Copied System.IO.FileSystem.DriveInfo.dll -2023-03-16 18:54:03.2929 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll -2023-03-16 18:54:03.2941 Info Copied System.IO.FileSystem.Primitives.dll -2023-03-16 18:54:03.2941 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll -2023-03-16 18:54:03.2958 Info Copied System.IO.FileSystem.Watcher.dll -2023-03-16 18:54:03.2958 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll -2023-03-16 18:54:03.2975 Info Copied System.IO.IsolatedStorage.dll -2023-03-16 18:54:03.2979 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll -2023-03-16 18:54:03.2994 Info Copied System.IO.MemoryMappedFiles.dll -2023-03-16 18:54:03.3010 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll -2023-03-16 18:54:03.3108 Info Copied System.IO.Pipelines.dll -2023-03-16 18:54:03.3108 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll -2023-03-16 18:54:03.3124 Info Copied System.IO.Pipes.AccessControl.dll -2023-03-16 18:54:03.3128 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll -2023-03-16 18:54:03.3143 Info Copied System.IO.Pipes.dll -2023-03-16 18:54:03.3143 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll -2023-03-16 18:54:03.3157 Info Copied System.IO.UnmanagedMemoryStream.dll -2023-03-16 18:54:03.3157 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll -2023-03-16 18:54:03.3189 Info Copied System.Linq.dll -2023-03-16 18:54:03.3189 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll -2023-03-16 18:54:03.3466 Info Copied System.Linq.Expressions.dll -2023-03-16 18:54:03.3472 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll -2023-03-16 18:54:03.3515 Info Copied System.Linq.Parallel.dll -2023-03-16 18:54:03.3520 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll -2023-03-16 18:54:03.3539 Info Copied System.Linq.Queryable.dll -2023-03-16 18:54:03.3539 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll -2023-03-16 18:54:03.3560 Info Copied System.Memory.dll -2023-03-16 18:54:03.3560 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll -2023-03-16 18:54:03.3576 Info Copied System.Net.dll -2023-03-16 18:54:03.3581 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll -2023-03-16 18:54:03.4115 Info Copied System.Net.Http.dll -2023-03-16 18:54:03.4121 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll -2023-03-16 18:54:03.4135 Info Copied System.Net.Http.Json.dll -2023-03-16 18:54:03.4139 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll -2023-03-16 18:54:03.4160 Info Copied System.Net.HttpListener.dll -2023-03-16 18:54:03.4160 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll -2023-03-16 18:54:03.4192 Info Copied System.Net.Mail.dll -2023-03-16 18:54:03.4192 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll -2023-03-16 18:54:03.4210 Info Copied System.Net.NameResolution.dll -2023-03-16 18:54:03.4210 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll -2023-03-16 18:54:03.4229 Info Copied System.Net.NetworkInformation.dll -2023-03-16 18:54:03.4229 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll -2023-03-16 18:54:03.4246 Info Copied System.Net.Ping.dll -2023-03-16 18:54:03.4250 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll -2023-03-16 18:54:03.4267 Info Copied System.Net.Primitives.dll -2023-03-16 18:54:03.4267 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll -2023-03-16 18:54:03.4294 Info Copied System.Net.Quic.dll -2023-03-16 18:54:03.4298 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll -2023-03-16 18:54:03.4500 Info Copied System.Net.Requests.dll -2023-03-16 18:54:03.4507 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll -2023-03-16 18:54:03.4541 Info Copied System.Net.Security.dll -2023-03-16 18:54:03.4541 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll -2023-03-16 18:54:03.4556 Info Copied System.Net.ServicePoint.dll -2023-03-16 18:54:03.4560 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll -2023-03-16 18:54:03.4587 Info Copied System.Net.Sockets.dll -2023-03-16 18:54:03.4587 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll -2023-03-16 18:54:03.4606 Info Copied System.Net.WebClient.dll -2023-03-16 18:54:03.4610 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll -2023-03-16 18:54:03.4621 Info Copied System.Net.WebHeaderCollection.dll -2023-03-16 18:54:03.4621 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll -2023-03-16 18:54:03.4635 Info Copied System.Net.WebProxy.dll -2023-03-16 18:54:03.4639 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll -2023-03-16 18:54:03.4652 Info Copied System.Net.WebSockets.Client.dll -2023-03-16 18:54:03.4652 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll -2023-03-16 18:54:03.4670 Info Copied System.Net.WebSockets.dll -2023-03-16 18:54:03.4670 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll -2023-03-16 18:54:03.4683 Info Copied System.Numerics.dll -2023-03-16 18:54:03.4687 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll -2023-03-16 18:54:03.4697 Info Copied System.Numerics.Vectors.dll -2023-03-16 18:54:03.4697 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll -2023-03-16 18:54:03.4713 Info Copied System.ObjectModel.dll -2023-03-16 18:54:03.4717 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll -2023-03-16 18:54:03.5211 Info Copied System.Private.CoreLib.dll -2023-03-16 18:54:03.5217 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll -2023-03-16 18:54:03.5285 Info Copied System.Private.DataContractSerialization.dll -2023-03-16 18:54:03.5287 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll -2023-03-16 18:54:03.5287 Info Copied System.Private.Uri.dll -2023-03-16 18:54:03.5297 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll -2023-03-16 18:54:03.5744 Info Copied System.Private.Xml.dll -2023-03-16 18:54:03.5747 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll -2023-03-16 18:54:03.5758 Info Copied System.Private.Xml.Linq.dll -2023-03-16 18:54:03.5758 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll -2023-03-16 18:54:03.5758 Info Copied System.Reflection.DispatchProxy.dll -2023-03-16 18:54:03.5758 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll -2023-03-16 18:54:03.5770 Info Copied System.Reflection.dll -2023-03-16 18:54:03.5770 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll -2023-03-16 18:54:03.5770 Info Copied System.Reflection.Emit.dll -2023-03-16 18:54:03.5777 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll -2023-03-16 18:54:03.5777 Info Copied System.Reflection.Emit.ILGeneration.dll -2023-03-16 18:54:03.5777 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll -2023-03-16 18:54:03.5777 Info Copied System.Reflection.Emit.Lightweight.dll -2023-03-16 18:54:03.5788 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll -2023-03-16 18:54:03.5788 Info Copied System.Reflection.Extensions.dll -2023-03-16 18:54:03.5788 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll -2023-03-16 18:54:03.5813 Info Copied System.Reflection.Metadata.dll -2023-03-16 18:54:03.5813 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll -2023-03-16 18:54:03.5823 Info Copied System.Reflection.Primitives.dll -2023-03-16 18:54:03.5823 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll -2023-03-16 18:54:03.5829 Info Copied System.Reflection.TypeExtensions.dll -2023-03-16 18:54:03.5829 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll -2023-03-16 18:54:03.5829 Info Copied System.Resources.Reader.dll -2023-03-16 18:54:03.5829 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll -2023-03-16 18:54:03.5838 Info Copied System.Resources.ResourceManager.dll -2023-03-16 18:54:03.5838 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll -2023-03-16 18:54:03.5838 Info Copied System.Resources.Writer.dll -2023-03-16 18:54:03.5838 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll -2023-03-16 18:54:03.5852 Info Copied System.Runtime.CompilerServices.Unsafe.dll -2023-03-16 18:54:03.5852 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll -2023-03-16 18:54:03.5857 Info Copied System.Runtime.CompilerServices.VisualC.dll -2023-03-16 18:54:03.5857 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll -2023-03-16 18:54:03.5857 Info Copied System.Runtime.dll -2023-03-16 18:54:03.5857 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll -2023-03-16 18:54:03.5868 Info Copied System.Runtime.Extensions.dll -2023-03-16 18:54:03.5868 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll -2023-03-16 18:54:03.5868 Info Copied System.Runtime.Handles.dll -2023-03-16 18:54:03.5868 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll -2023-03-16 18:54:03.5882 Info Copied System.Runtime.InteropServices.dll -2023-03-16 18:54:03.5882 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll -2023-03-16 18:54:03.5888 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll -2023-03-16 18:54:03.5888 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll -2023-03-16 18:54:03.5888 Info Copied System.Runtime.Intrinsics.dll -2023-03-16 18:54:03.5888 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll -2023-03-16 18:54:03.5898 Info Copied System.Runtime.Loader.dll -2023-03-16 18:54:03.5898 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll -2023-03-16 18:54:03.5915 Info Copied System.Runtime.Numerics.dll -2023-03-16 18:54:03.5917 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll -2023-03-16 18:54:03.5917 Info Copied System.Runtime.Serialization.dll -2023-03-16 18:54:03.5917 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll -2023-03-16 18:54:03.7262 Info Copied System.Runtime.Serialization.Formatters.dll -2023-03-16 18:54:03.7268 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll -2023-03-16 18:54:03.7268 Info Copied System.Runtime.Serialization.Json.dll -2023-03-16 18:54:03.7277 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll -2023-03-16 18:54:03.7277 Info Copied System.Runtime.Serialization.Primitives.dll -2023-03-16 18:54:03.7277 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll -2023-03-16 18:54:03.7292 Info Copied System.Runtime.Serialization.Xml.dll -2023-03-16 18:54:03.7292 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll -2023-03-16 18:54:03.7300 Info Copied System.Security.AccessControl.dll -2023-03-16 18:54:03.7300 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll -2023-03-16 18:54:03.7310 Info Copied System.Security.Claims.dll -2023-03-16 18:54:03.7310 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll -2023-03-16 18:54:03.7344 Info Copied System.Security.Cryptography.Algorithms.dll -2023-03-16 18:54:03.7347 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll -2023-03-16 18:54:03.7347 Info Copied System.Security.Cryptography.Cng.dll -2023-03-16 18:54:03.7347 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll -2023-03-16 18:54:03.7360 Info Copied System.Security.Cryptography.Csp.dll -2023-03-16 18:54:03.7360 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll -2023-03-16 18:54:03.7371 Info Copied System.Security.Cryptography.Encoding.dll -2023-03-16 18:54:03.7371 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll -2023-03-16 18:54:03.7385 Info Copied System.Security.Cryptography.OpenSsl.dll -2023-03-16 18:54:03.7387 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll -2023-03-16 18:54:03.7404 Info Copied System.Security.Cryptography.Pkcs.dll -2023-03-16 18:54:03.7404 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll -2023-03-16 18:54:03.7412 Info Copied System.Security.Cryptography.Primitives.dll -2023-03-16 18:54:03.7412 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll -2023-03-16 18:54:03.7418 Info Copied System.Security.Cryptography.ProtectedData.dll -2023-03-16 18:54:03.7418 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll -2023-03-16 18:54:03.7435 Info Copied System.Security.Cryptography.X509Certificates.dll -2023-03-16 18:54:03.7437 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll -2023-03-16 18:54:03.7448 Info Copied System.Security.Cryptography.Xml.dll -2023-03-16 18:54:03.7448 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll -2023-03-16 18:54:03.7448 Info Copied System.Security.dll -2023-03-16 18:54:03.7448 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll -2023-03-16 18:54:03.7458 Info Copied System.Security.Principal.dll -2023-03-16 18:54:03.7458 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll -2023-03-16 18:54:03.7967 Info Copied System.Security.Principal.Windows.dll -2023-03-16 18:54:03.7967 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll -2023-03-16 18:54:03.7967 Info Copied System.Security.SecureString.dll -2023-03-16 18:54:03.7967 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll -2023-03-16 18:54:03.7978 Info Copied System.ServiceModel.Web.dll -2023-03-16 18:54:03.7978 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll -2023-03-16 18:54:03.7978 Info Copied System.ServiceProcess.dll -2023-03-16 18:54:03.7978 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll -2023-03-16 18:54:03.7989 Info Copied System.ServiceProcess.ServiceController.dll -2023-03-16 18:54:03.7989 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll -2023-03-16 18:54:03.8007 Info Copied System.Text.Encoding.CodePages.dll -2023-03-16 18:54:03.8007 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll -2023-03-16 18:54:03.8007 Info Copied System.Text.Encoding.dll -2023-03-16 18:54:03.8007 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll -2023-03-16 18:54:03.8018 Info Copied System.Text.Encoding.Extensions.dll -2023-03-16 18:54:03.8018 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll -2023-03-16 18:54:03.8018 Info Copied System.Text.Encodings.Web.dll -2023-03-16 18:54:03.8027 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll -2023-03-16 18:54:03.8051 Info Copied System.Text.Json.dll -2023-03-16 18:54:03.8051 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll -2023-03-16 18:54:03.8066 Info Copied System.Text.RegularExpressions.dll -2023-03-16 18:54:03.8066 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll -2023-03-16 18:54:03.8066 Info Copied System.Threading.Channels.dll -2023-03-16 18:54:03.8066 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll -2023-03-16 18:54:03.8081 Info Copied System.Threading.dll -2023-03-16 18:54:03.8081 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll -2023-03-16 18:54:03.8087 Info Copied System.Threading.Overlapped.dll -2023-03-16 18:54:03.8087 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll -2023-03-16 18:54:03.8110 Info Copied System.Threading.Tasks.Dataflow.dll -2023-03-16 18:54:03.8110 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll -2023-03-16 18:54:03.8110 Info Copied System.Threading.Tasks.dll -2023-03-16 18:54:03.8117 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll -2023-03-16 18:54:03.8117 Info Copied System.Threading.Tasks.Extensions.dll -2023-03-16 18:54:03.8117 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll -2023-03-16 18:54:03.8129 Info Copied System.Threading.Tasks.Parallel.dll -2023-03-16 18:54:03.8129 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll -2023-03-16 18:54:03.8129 Info Copied System.Threading.Thread.dll -2023-03-16 18:54:03.8129 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll -2023-03-16 18:54:03.8139 Info Copied System.Threading.ThreadPool.dll -2023-03-16 18:54:03.8139 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll -2023-03-16 18:54:03.8139 Info Copied System.Threading.Timer.dll -2023-03-16 18:54:03.8139 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll -2023-03-16 18:54:03.8150 Info Copied System.Transactions.dll -2023-03-16 18:54:03.8150 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll -2023-03-16 18:54:03.8161 Info Copied System.Transactions.Local.dll -2023-03-16 18:54:03.8161 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll -2023-03-16 18:54:03.8161 Info Copied System.ValueTuple.dll -2023-03-16 18:54:03.8167 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll -2023-03-16 18:54:03.9037 Info Copied System.Web.dll -2023-03-16 18:54:03.9037 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll -2023-03-16 18:54:03.9037 Info Copied System.Web.HttpUtility.dll -2023-03-16 18:54:03.9037 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll -2023-03-16 18:54:03.9050 Info Copied System.Windows.dll -2023-03-16 18:54:03.9050 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll -2023-03-16 18:54:03.9050 Info Copied System.Xml.dll -2023-03-16 18:54:03.9057 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll -2023-03-16 18:54:03.9057 Info Copied System.Xml.Linq.dll -2023-03-16 18:54:03.9057 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll -2023-03-16 18:54:03.9066 Info Copied System.Xml.ReaderWriter.dll -2023-03-16 18:54:03.9066 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll -2023-03-16 18:54:03.9066 Info Copied System.Xml.Serialization.dll -2023-03-16 18:54:03.9066 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll -2023-03-16 18:54:03.9077 Info Copied System.Xml.XDocument.dll -2023-03-16 18:54:03.9077 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll -2023-03-16 18:54:03.9077 Info Copied System.Xml.XmlDocument.dll -2023-03-16 18:54:03.9077 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll -2023-03-16 18:54:03.9088 Info Copied System.Xml.XmlSerializer.dll -2023-03-16 18:54:03.9088 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll -2023-03-16 18:54:03.9088 Info Copied System.Xml.XPath.dll -2023-03-16 18:54:03.9088 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll -2023-03-16 18:54:03.9098 Info Copied System.Xml.XPath.XDocument.dll -2023-03-16 18:54:03.9098 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll -2023-03-16 18:54:03.9098 Info Copied WindowsBase.dll -2023-03-16 18:54:03.9098 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3609-638145896390739097/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll -2023-03-16 18:54:03.9113 Info Copied YamlDotNet.dll -2023-03-16 18:54:03.9113 Info File copying complete -2023-03-16 18:54:03.9242 Info Killing process 222 -2023-03-16 18:54:06.9972 Info Process 222 didn't exit within 2 seconds after a SIGTERM -2023-03-17 19:54:21.0083 Info Jackett Updater v0.20.3617 -2023-03-17 19:54:21.1027 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "307" "--NoRestart" -2023-03-17 19:54:21.1063 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-17 19:54:21.3162 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb -2023-03-17 19:54:21.3169 Info Deleted /app/Jackett/DateTimeRoutines.pdb -2023-03-17 19:54:21.3169 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb -2023-03-17 19:54:21.3169 Info Deleted /app/Jackett/Jackett.Common.pdb -2023-03-17 19:54:21.3177 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb -2023-03-17 19:54:21.3177 Info Deleted /app/Jackett/JackettUpdater.pdb -2023-03-17 19:54:21.3177 Info Attempting to remove: /app/Jackett/jackett.pdb -2023-03-17 19:54:21.3177 Info Deleted /app/Jackett/jackett.pdb -2023-03-17 19:54:21.3188 Info Attempting to remove: /app/Jackett/jackett -2023-03-17 19:54:21.3188 Info Deleted /app/Jackett/jackett -2023-03-17 19:54:21.3188 Info Finding files in: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/ -2023-03-17 19:54:21.3261 Info 892 update files found -2023-03-17 19:54:21.3274 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll -2023-03-17 19:54:21.3297 Info Copied AngleSharp.dll -2023-03-17 19:54:21.3297 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll -2023-03-17 19:54:21.3297 Info Copied AngleSharp.Xml.dll -2023-03-17 19:54:21.3307 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll -2023-03-17 19:54:21.3318 Info Copied Autofac.dll -2023-03-17 19:54:21.3318 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll -2023-03-17 19:54:21.3327 Info Copied Autofac.Extensions.DependencyInjection.dll -2023-03-17 19:54:21.3327 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll -2023-03-17 19:54:21.3339 Info Copied AutoMapper.dll -2023-03-17 19:54:21.3339 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll -2023-03-17 19:54:21.3355 Info Copied BencodeNET.dll -2023-03-17 19:54:21.3355 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll -2023-03-17 19:54:21.3367 Info Copied CommandLine.dll -2023-03-17 19:54:21.3367 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css -2023-03-17 19:54:21.3367 Info Copied animate.css -2023-03-17 19:54:21.3377 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png -2023-03-17 19:54:21.3377 Info Copied apple-touch-icon.png -2023-03-17 19:54:21.3377 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png -2023-03-17 19:54:21.3389 Info Copied binding_dark.png -2023-03-17 19:54:21.3389 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css -2023-03-17 19:54:21.3398 Info Copied bootstrap.min.css -2023-03-17 19:54:21.3398 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js -2023-03-17 19:54:21.3398 Info Copied bootstrap.min.js -2023-03-17 19:54:21.3407 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js -2023-03-17 19:54:21.3407 Info Copied common.js -2023-03-17 19:54:21.3407 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css -2023-03-17 19:54:21.3418 Info Copied bootstrap-multiselect.css -2023-03-17 19:54:21.3418 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css -2023-03-17 19:54:21.3418 Info Copied font-awesome.min.css -2023-03-17 19:54:21.3427 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css -2023-03-17 19:54:21.3427 Info Copied jquery.dataTables.min.css -2023-03-17 19:54:21.3427 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css -2023-03-17 19:54:21.3438 Info Copied tagify.css -2023-03-17 19:54:21.3438 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css -2023-03-17 19:54:21.3438 Info Copied custom_mobile.css -2023-03-17 19:54:21.3438 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css -2023-03-17 19:54:21.3450 Info Copied custom.css -2023-03-17 19:54:21.3450 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js -2023-03-17 19:54:21.3458 Info Copied custom.js -2023-03-17 19:54:21.3458 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico -2023-03-17 19:54:21.3475 Info Copied favicon.ico -2023-03-17 19:54:21.3478 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot -2023-03-17 19:54:21.3492 Info Copied fontawesome-webfont.eot -2023-03-17 19:54:21.3492 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg -2023-03-17 19:54:21.3504 Info Copied fontawesome-webfont.svg -2023-03-17 19:54:21.3504 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf -2023-03-17 19:54:21.3513 Info Copied fontawesome-webfont.ttf -2023-03-17 19:54:21.3513 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff -2023-03-17 19:54:21.3522 Info Copied fontawesome-webfont.woff -2023-03-17 19:54:21.3522 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 -2023-03-17 19:54:21.3529 Info Copied fontawesome-webfont.woff2 -2023-03-17 19:54:21.3529 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf -2023-03-17 19:54:21.3538 Info Copied FontAwesome.otf -2023-03-17 19:54:21.3538 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot -2023-03-17 19:54:21.3538 Info Copied glyphicons-halflings-regular.eot -2023-03-17 19:54:21.3547 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg -2023-03-17 19:54:21.3547 Info Copied glyphicons-halflings-regular.svg -2023-03-17 19:54:21.3547 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf -2023-03-17 19:54:21.3562 Info Copied glyphicons-halflings-regular.ttf -2023-03-17 19:54:21.3562 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff -2023-03-17 19:54:21.3569 Info Copied glyphicons-halflings-regular.woff -2023-03-17 19:54:21.3569 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 -2023-03-17 19:54:21.3569 Info Copied glyphicons-halflings-regular.woff2 -2023-03-17 19:54:21.3578 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png -2023-03-17 19:54:21.3578 Info Copied sort_asc_disabled.png -2023-03-17 19:54:21.3578 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png -2023-03-17 19:54:21.3589 Info Copied sort_asc.png -2023-03-17 19:54:21.3589 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png -2023-03-17 19:54:21.3589 Info Copied sort_both.png -2023-03-17 19:54:21.3597 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png -2023-03-17 19:54:21.3597 Info Copied sort_desc_disabled.png -2023-03-17 19:54:21.3597 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png -2023-03-17 19:54:21.3608 Info Copied sort_desc.png -2023-03-17 19:54:21.3608 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html -2023-03-17 19:54:21.3608 Info Copied index.html -2023-03-17 19:54:21.3618 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png -2023-03-17 19:54:21.3618 Info Copied jacket_medium.png -2023-03-17 19:54:21.3618 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js -2023-03-17 19:54:21.3629 Info Copied api.js -2023-03-17 19:54:21.3629 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js -2023-03-17 19:54:21.3629 Info Copied bootstrap-multiselect.js -2023-03-17 19:54:21.3638 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js -2023-03-17 19:54:21.3638 Info Copied bootstrap-notify.js -2023-03-17 19:54:21.3638 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js -2023-03-17 19:54:21.3650 Info Copied filesize.min.js -2023-03-17 19:54:21.3650 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js -2023-03-17 19:54:21.3658 Info Copied handlebars.min.js -2023-03-17 19:54:21.3658 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js -2023-03-17 19:54:21.3658 Info Copied handlebarsextend.js -2023-03-17 19:54:21.3667 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js -2023-03-17 19:54:21.3667 Info Copied handlebarsmoment.js -2023-03-17 19:54:21.3667 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js -2023-03-17 19:54:21.3680 Info Copied jquery.dataTables.min.js -2023-03-17 19:54:21.3680 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js -2023-03-17 19:54:21.3689 Info Copied jquery.min.js -2023-03-17 19:54:21.3689 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js -2023-03-17 19:54:21.3697 Info Copied jQuery.tagify.min.js -2023-03-17 19:54:21.3697 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js -2023-03-17 19:54:21.3713 Info Copied moment.min.js -2023-03-17 19:54:21.3713 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js -2023-03-17 19:54:21.3720 Info Copied tagify.min.js -2023-03-17 19:54:21.3720 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html -2023-03-17 19:54:21.3727 Info Copied login.html -2023-03-17 19:54:21.3727 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/createdump to destination: /app/Jackett/createdump -2023-03-17 19:54:21.3727 Info Copied createdump -2023-03-17 19:54:21.3756 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll -2023-03-17 19:54:21.3783 Info Copied DateTimeRoutines.dll -2023-03-17 19:54:21.3788 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb -2023-03-17 19:54:21.3802 Info Copied DateTimeRoutines.pdb -2023-03-17 19:54:21.3802 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml -2023-03-17 19:54:21.3817 Info Copied 0daykiev.yml -2023-03-17 19:54:21.3817 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml -2023-03-17 19:54:21.3833 Info Copied 0magnet.yml -2023-03-17 19:54:21.3838 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml -2023-03-17 19:54:21.3849 Info Copied 1337x.yml -2023-03-17 19:54:21.3849 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml -2023-03-17 19:54:21.3864 Info Copied 1ptbar.yml -2023-03-17 19:54:21.3869 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml -2023-03-17 19:54:21.3880 Info Copied 2fast4you.yml -2023-03-17 19:54:21.3880 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml -2023-03-17 19:54:21.3895 Info Copied 2xfree.yml -2023-03-17 19:54:21.3900 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml -2023-03-17 19:54:21.3911 Info Copied 3changtrai.yml -2023-03-17 19:54:21.3911 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml -2023-03-17 19:54:21.3926 Info Copied 3dtorrents.yml -2023-03-17 19:54:21.3931 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml -2023-03-17 19:54:21.3944 Info Copied 4thd.yml -2023-03-17 19:54:21.3950 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml -2023-03-17 19:54:21.3960 Info Copied 52pt.yml -2023-03-17 19:54:21.3960 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml -2023-03-17 19:54:21.3975 Info Copied abnormal.yml -2023-03-17 19:54:21.3981 Info Attempting to copy abtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/abtorrents.yml to destination: /app/Jackett/Definitions/abtorrents.yml -2023-03-17 19:54:21.3993 Info Copied abtorrents.yml -2023-03-17 19:54:21.3998 Info Attempting to copy acervos-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/acervos-api.yml to destination: /app/Jackett/Definitions/acervos-api.yml -2023-03-17 19:54:21.4009 Info Copied acervos-api.yml -2023-03-17 19:54:21.4009 Info Attempting to copy acgrip.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/acgrip.yml to destination: /app/Jackett/Definitions/acgrip.yml -2023-03-17 19:54:21.4025 Info Copied acgrip.yml -2023-03-17 19:54:21.4030 Info Attempting to copy acgsou.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/acgsou.yml to destination: /app/Jackett/Definitions/acgsou.yml -2023-03-17 19:54:21.4040 Info Copied acgsou.yml -2023-03-17 19:54:21.4040 Info Attempting to copy acidlounge.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/acidlounge.yml to destination: /app/Jackett/Definitions/acidlounge.yml -2023-03-17 19:54:21.4055 Info Copied acidlounge.yml -2023-03-17 19:54:21.4061 Info Attempting to copy acrossthetasman.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/acrossthetasman.yml to destination: /app/Jackett/Definitions/acrossthetasman.yml -2023-03-17 19:54:21.4071 Info Copied acrossthetasman.yml -2023-03-17 19:54:21.4071 Info Attempting to copy aftershock.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/aftershock.yml to destination: /app/Jackett/Definitions/aftershock.yml -2023-03-17 19:54:21.4087 Info Copied aftershock.yml -2023-03-17 19:54:21.4087 Info Attempting to copy aidoruonline.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/aidoruonline.yml to destination: /app/Jackett/Definitions/aidoruonline.yml -2023-03-17 19:54:21.4102 Info Copied aidoruonline.yml -2023-03-17 19:54:21.4107 Info Attempting to copy aither-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/aither-api.yml to destination: /app/Jackett/Definitions/aither-api.yml -2023-03-17 19:54:21.4118 Info Copied aither-api.yml -2023-03-17 19:54:21.4118 Info Attempting to copy amigosshare.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/amigosshare.yml to destination: /app/Jackett/Definitions/amigosshare.yml -2023-03-17 19:54:21.4133 Info Copied amigosshare.yml -2023-03-17 19:54:21.4138 Info Attempting to copy anilibria.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/anilibria.yml to destination: /app/Jackett/Definitions/anilibria.yml -2023-03-17 19:54:21.4149 Info Copied anilibria.yml -2023-03-17 19:54:21.4149 Info Attempting to copy anime-free.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/anime-free.yml to destination: /app/Jackett/Definitions/anime-free.yml -2023-03-17 19:54:21.4164 Info Copied anime-free.yml -2023-03-17 19:54:21.4168 Info Attempting to copy animelayer.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/animelayer.yml to destination: /app/Jackett/Definitions/animelayer.yml -2023-03-17 19:54:21.4178 Info Copied animelayer.yml -2023-03-17 19:54:21.4178 Info Attempting to copy animetracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/animetracker.yml to destination: /app/Jackett/Definitions/animetracker.yml -2023-03-17 19:54:21.4193 Info Copied animetracker.yml -2023-03-17 19:54:21.4210 Info Attempting to copy animeworld-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/animeworld-api.yml to destination: /app/Jackett/Definitions/animeworld-api.yml -2023-03-17 19:54:21.4222 Info Copied animeworld-api.yml -2023-03-17 19:54:21.4222 Info Attempting to copy anirena.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/anirena.yml to destination: /app/Jackett/Definitions/anirena.yml -2023-03-17 19:54:21.4237 Info Copied anirena.yml -2023-03-17 19:54:21.4237 Info Attempting to copy anisource.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/anisource.yml to destination: /app/Jackett/Definitions/anisource.yml -2023-03-17 19:54:21.4252 Info Copied anisource.yml -2023-03-17 19:54:21.4257 Info Attempting to copy anthelion-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/anthelion-api.yml to destination: /app/Jackett/Definitions/anthelion-api.yml -2023-03-17 19:54:21.4268 Info Copied anthelion-api.yml -2023-03-17 19:54:21.4268 Info Attempting to copy arabafenice.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/arabafenice.yml to destination: /app/Jackett/Definitions/arabafenice.yml -2023-03-17 19:54:21.4283 Info Copied arabafenice.yml -2023-03-17 19:54:21.4288 Info Attempting to copy arabp2p.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/arabp2p.yml to destination: /app/Jackett/Definitions/arabp2p.yml -2023-03-17 19:54:21.4298 Info Copied arabp2p.yml -2023-03-17 19:54:21.4298 Info Attempting to copy arabtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/arabtorrents.yml to destination: /app/Jackett/Definitions/arabtorrents.yml -2023-03-17 19:54:21.4314 Info Copied arabtorrents.yml -2023-03-17 19:54:21.4319 Info Attempting to copy arenabg.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/arenabg.yml to destination: /app/Jackett/Definitions/arenabg.yml -2023-03-17 19:54:21.4329 Info Copied arenabg.yml -2023-03-17 19:54:21.4329 Info Attempting to copy asiancinema.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/asiancinema.yml to destination: /app/Jackett/Definitions/asiancinema.yml -2023-03-17 19:54:21.4345 Info Copied asiancinema.yml -2023-03-17 19:54:21.4350 Info Attempting to copy asiandvdclub.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/asiandvdclub.yml to destination: /app/Jackett/Definitions/asiandvdclub.yml -2023-03-17 19:54:21.4360 Info Copied asiandvdclub.yml -2023-03-17 19:54:21.4399 Info Attempting to copy audiences.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/audiences.yml to destination: /app/Jackett/Definitions/audiences.yml -2023-03-17 19:54:21.4412 Info Copied audiences.yml -2023-03-17 19:54:21.4417 Info Attempting to copy audionews.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/audionews.yml to destination: /app/Jackett/Definitions/audionews.yml -2023-03-17 19:54:21.4430 Info Copied audionews.yml -2023-03-17 19:54:21.4430 Info Attempting to copy aussierules.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/aussierules.yml to destination: /app/Jackett/Definitions/aussierules.yml -2023-03-17 19:54:21.4447 Info Copied aussierules.yml -2023-03-17 19:54:21.4447 Info Attempting to copy backups.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/backups.yml to destination: /app/Jackett/Definitions/backups.yml -2023-03-17 19:54:21.4465 Info Copied backups.yml -2023-03-17 19:54:21.4471 Info Attempting to copy badasstorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/badasstorrents.yml to destination: /app/Jackett/Definitions/badasstorrents.yml -2023-03-17 19:54:21.4484 Info Copied badasstorrents.yml -2023-03-17 19:54:21.4491 Info Attempting to copy bangumi-moe.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bangumi-moe.yml to destination: /app/Jackett/Definitions/bangumi-moe.yml -2023-03-17 19:54:21.4504 Info Copied bangumi-moe.yml -2023-03-17 19:54:21.4511 Info Attempting to copy beitai.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/beitai.yml to destination: /app/Jackett/Definitions/beitai.yml -2023-03-17 19:54:21.4523 Info Copied beitai.yml -2023-03-17 19:54:21.4529 Info Attempting to copy bestcore.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bestcore.yml to destination: /app/Jackett/Definitions/bestcore.yml -2023-03-17 19:54:21.4541 Info Copied bestcore.yml -2023-03-17 19:54:21.4547 Info Attempting to copy beyond-hd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/beyond-hd.yml to destination: /app/Jackett/Definitions/beyond-hd.yml -2023-03-17 19:54:21.4558 Info Copied beyond-hd.yml -2023-03-17 19:54:21.4558 Info Attempting to copy bibliotik.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bibliotik.yml to destination: /app/Jackett/Definitions/bibliotik.yml -2023-03-17 19:54:21.4575 Info Copied bibliotik.yml -2023-03-17 19:54:21.4580 Info Attempting to copy bigfangroup.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bigfangroup.yml to destination: /app/Jackett/Definitions/bigfangroup.yml -2023-03-17 19:54:21.4591 Info Copied bigfangroup.yml -2023-03-17 19:54:21.4598 Info Attempting to copy bitbazis.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitbazis.yml to destination: /app/Jackett/Definitions/bitbazis.yml -2023-03-17 19:54:21.4608 Info Copied bitbazis.yml -2023-03-17 19:54:21.4608 Info Attempting to copy bitded.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitded.yml to destination: /app/Jackett/Definitions/bitded.yml -2023-03-17 19:54:21.4625 Info Copied bitded.yml -2023-03-17 19:54:21.4630 Info Attempting to copy bithorlo.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bithorlo.yml to destination: /app/Jackett/Definitions/bithorlo.yml -2023-03-17 19:54:21.4641 Info Copied bithorlo.yml -2023-03-17 19:54:21.4647 Info Attempting to copy bithumen.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bithumen.yml to destination: /app/Jackett/Definitions/bithumen.yml -2023-03-17 19:54:21.4659 Info Copied bithumen.yml -2023-03-17 19:54:21.4669 Info Attempting to copy bitnova.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitnova.yml to destination: /app/Jackett/Definitions/bitnova.yml -2023-03-17 19:54:21.4680 Info Copied bitnova.yml -2023-03-17 19:54:21.4680 Info Attempting to copy bitofvalor.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitofvalor.yml to destination: /app/Jackett/Definitions/bitofvalor.yml -2023-03-17 19:54:21.4696 Info Copied bitofvalor.yml -2023-03-17 19:54:21.4702 Info Attempting to copy bitru.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitru.yml to destination: /app/Jackett/Definitions/bitru.yml -2023-03-17 19:54:21.4714 Info Copied bitru.yml -2023-03-17 19:54:21.4718 Info Attempting to copy bitsearch.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitsearch.yml to destination: /app/Jackett/Definitions/bitsearch.yml -2023-03-17 19:54:21.4729 Info Copied bitsearch.yml -2023-03-17 19:54:21.4729 Info Attempting to copy bitsexy.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitsexy.yml to destination: /app/Jackett/Definitions/bitsexy.yml -2023-03-17 19:54:21.4748 Info Copied bitsexy.yml -2023-03-17 19:54:21.4748 Info Attempting to copy bitspyder.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitspyder.yml to destination: /app/Jackett/Definitions/bitspyder.yml -2023-03-17 19:54:21.4763 Info Copied bitspyder.yml -2023-03-17 19:54:21.4768 Info Attempting to copy Bittorrentfiles.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/Bittorrentfiles.yml to destination: /app/Jackett/Definitions/Bittorrentfiles.yml -2023-03-17 19:54:21.4780 Info Copied Bittorrentfiles.yml -2023-03-17 19:54:21.4780 Info Attempting to copy bitturk.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bitturk.yml to destination: /app/Jackett/Definitions/bitturk.yml -2023-03-17 19:54:21.4794 Info Copied bitturk.yml -2023-03-17 19:54:21.4800 Info Attempting to copy bluebird.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bluebird.yml to destination: /app/Jackett/Definitions/bluebird.yml -2023-03-17 19:54:21.4810 Info Copied bluebird.yml -2023-03-17 19:54:21.4810 Info Attempting to copy blutopia-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/blutopia-api.yml to destination: /app/Jackett/Definitions/blutopia-api.yml -2023-03-17 19:54:21.4826 Info Copied blutopia-api.yml -2023-03-17 19:54:21.4830 Info Attempting to copy booktracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/booktracker.yml to destination: /app/Jackett/Definitions/booktracker.yml -2023-03-17 19:54:21.4841 Info Copied booktracker.yml -2023-03-17 19:54:21.4841 Info Attempting to copy bootytape.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bootytape.yml to destination: /app/Jackett/Definitions/bootytape.yml -2023-03-17 19:54:21.4857 Info Copied bootytape.yml -2023-03-17 19:54:21.4857 Info Attempting to copy borgzelle.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/borgzelle.yml to destination: /app/Jackett/Definitions/borgzelle.yml -2023-03-17 19:54:21.4872 Info Copied borgzelle.yml -2023-03-17 19:54:21.4877 Info Attempting to copy boxingtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/boxingtorrents.yml to destination: /app/Jackett/Definitions/boxingtorrents.yml -2023-03-17 19:54:21.4889 Info Copied boxingtorrents.yml -2023-03-17 19:54:21.4889 Info Attempting to copy broadcity.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/broadcity.yml to destination: /app/Jackett/Definitions/broadcity.yml -2023-03-17 19:54:21.4905 Info Copied broadcity.yml -2023-03-17 19:54:21.4910 Info Attempting to copy brsociety-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/brsociety-api.yml to destination: /app/Jackett/Definitions/brsociety-api.yml -2023-03-17 19:54:21.4921 Info Copied brsociety-api.yml -2023-03-17 19:54:21.4921 Info Attempting to copy bt4g.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bt4g.yml to destination: /app/Jackett/Definitions/bt4g.yml -2023-03-17 19:54:21.4935 Info Copied bt4g.yml -2023-03-17 19:54:21.4940 Info Attempting to copy btdigg.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/btdigg.yml to destination: /app/Jackett/Definitions/btdigg.yml -2023-03-17 19:54:21.4950 Info Copied btdigg.yml -2023-03-17 19:54:21.4950 Info Attempting to copy btetree.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/btetree.yml to destination: /app/Jackett/Definitions/btetree.yml -2023-03-17 19:54:21.4965 Info Copied btetree.yml -2023-03-17 19:54:21.4970 Info Attempting to copy btmet.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/btmet.yml to destination: /app/Jackett/Definitions/btmet.yml -2023-03-17 19:54:21.4981 Info Copied btmet.yml -2023-03-17 19:54:21.4981 Info Attempting to copy btnext.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/btnext.yml to destination: /app/Jackett/Definitions/btnext.yml -2023-03-17 19:54:21.4996 Info Copied btnext.yml -2023-03-17 19:54:21.5001 Info Attempting to copy btschool.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/btschool.yml to destination: /app/Jackett/Definitions/btschool.yml -2023-03-17 19:54:21.5011 Info Copied btschool.yml -2023-03-17 19:54:21.5011 Info Attempting to copy btsow.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/btsow.yml to destination: /app/Jackett/Definitions/btsow.yml -2023-03-17 19:54:21.5027 Info Copied btsow.yml -2023-03-17 19:54:21.5027 Info Attempting to copy bulltorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bulltorrent.yml to destination: /app/Jackett/Definitions/bulltorrent.yml -2023-03-17 19:54:21.5040 Info Copied bulltorrent.yml -2023-03-17 19:54:21.5040 Info Attempting to copy bwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/bwtorrents.yml to destination: /app/Jackett/Definitions/bwtorrents.yml -2023-03-17 19:54:21.5057 Info Copied bwtorrents.yml -2023-03-17 19:54:21.5057 Info Attempting to copy byrbt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/byrbt.yml to destination: /app/Jackett/Definitions/byrbt.yml -2023-03-17 19:54:21.5072 Info Copied byrbt.yml -2023-03-17 19:54:21.5077 Info Attempting to copy byrutor.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/byrutor.yml to destination: /app/Jackett/Definitions/byrutor.yml -2023-03-17 19:54:21.5088 Info Copied byrutor.yml -2023-03-17 19:54:21.5088 Info Attempting to copy carpathians.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/carpathians.yml to destination: /app/Jackett/Definitions/carpathians.yml -2023-03-17 19:54:21.5104 Info Copied carpathians.yml -2023-03-17 19:54:21.5108 Info Attempting to copy carphunter.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/carphunter.yml to destination: /app/Jackett/Definitions/carphunter.yml -2023-03-17 19:54:21.5119 Info Copied carphunter.yml -2023-03-17 19:54:21.5119 Info Attempting to copy carpt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/carpt.yml to destination: /app/Jackett/Definitions/carpt.yml -2023-03-17 19:54:21.5134 Info Copied carpt.yml -2023-03-17 19:54:21.5139 Info Attempting to copy cartoonchaos.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/cartoonchaos.yml to destination: /app/Jackett/Definitions/cartoonchaos.yml -2023-03-17 19:54:21.5150 Info Copied cartoonchaos.yml -2023-03-17 19:54:21.5150 Info Attempting to copy cathoderaytube.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/cathoderaytube.yml to destination: /app/Jackett/Definitions/cathoderaytube.yml -2023-03-17 19:54:21.5167 Info Copied cathoderaytube.yml -2023-03-17 19:54:21.5171 Info Attempting to copy catorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/catorrent.yml to destination: /app/Jackett/Definitions/catorrent.yml -2023-03-17 19:54:21.5181 Info Copied catorrent.yml -2023-03-17 19:54:21.5181 Info Attempting to copy ccfbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ccfbits.yml to destination: /app/Jackett/Definitions/ccfbits.yml -2023-03-17 19:54:21.5195 Info Copied ccfbits.yml -2023-03-17 19:54:21.5200 Info Attempting to copy ceskeforum.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ceskeforum.yml to destination: /app/Jackett/Definitions/ceskeforum.yml -2023-03-17 19:54:21.5211 Info Copied ceskeforum.yml -2023-03-17 19:54:21.5211 Info Attempting to copy chdbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/chdbits.yml to destination: /app/Jackett/Definitions/chdbits.yml -2023-03-17 19:54:21.5225 Info Copied chdbits.yml -2023-03-17 19:54:21.5230 Info Attempting to copy chilebt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/chilebt.yml to destination: /app/Jackett/Definitions/chilebt.yml -2023-03-17 19:54:21.5240 Info Copied chilebt.yml -2023-03-17 19:54:21.5240 Info Attempting to copy cinemageddon.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/cinemageddon.yml to destination: /app/Jackett/Definitions/cinemageddon.yml -2023-03-17 19:54:21.5255 Info Copied cinemageddon.yml -2023-03-17 19:54:21.5260 Info Attempting to copy cinemamovies.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/cinemamovies.yml to destination: /app/Jackett/Definitions/cinemamovies.yml -2023-03-17 19:54:21.5271 Info Copied cinemamovies.yml -2023-03-17 19:54:21.5271 Info Attempting to copy cinematik.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/cinematik.yml to destination: /app/Jackett/Definitions/cinematik.yml -2023-03-17 19:54:21.5285 Info Copied cinematik.yml -2023-03-17 19:54:21.5290 Info Attempting to copy classix.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/classix.yml to destination: /app/Jackett/Definitions/classix.yml -2023-03-17 19:54:21.5300 Info Copied classix.yml -2023-03-17 19:54:21.5300 Info Attempting to copy coastalcrew.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/coastalcrew.yml to destination: /app/Jackett/Definitions/coastalcrew.yml -2023-03-17 19:54:21.5315 Info Copied coastalcrew.yml -2023-03-17 19:54:21.5319 Info Attempting to copy comicat.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/comicat.yml to destination: /app/Jackett/Definitions/comicat.yml -2023-03-17 19:54:21.5329 Info Copied comicat.yml -2023-03-17 19:54:21.5329 Info Attempting to copy concen.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/concen.yml to destination: /app/Jackett/Definitions/concen.yml -2023-03-17 19:54:21.5343 Info Copied concen.yml -2023-03-17 19:54:21.5348 Info Attempting to copy concertos.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/concertos.yml to destination: /app/Jackett/Definitions/concertos.yml -2023-03-17 19:54:21.5359 Info Copied concertos.yml -2023-03-17 19:54:21.5359 Info Attempting to copy cpabien.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/cpabien.yml to destination: /app/Jackett/Definitions/cpabien.yml -2023-03-17 19:54:21.5373 Info Copied cpabien.yml -2023-03-17 19:54:21.5378 Info Attempting to copy cpasbienclone.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/cpasbienclone.yml to destination: /app/Jackett/Definitions/cpasbienclone.yml -2023-03-17 19:54:21.5388 Info Copied cpasbienclone.yml -2023-03-17 19:54:21.5388 Info Attempting to copy cpasbiensi.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/cpasbiensi.yml to destination: /app/Jackett/Definitions/cpasbiensi.yml -2023-03-17 19:54:21.5402 Info Copied cpasbiensi.yml -2023-03-17 19:54:21.5402 Info Attempting to copy crackingpatching.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/crackingpatching.yml to destination: /app/Jackett/Definitions/crackingpatching.yml -2023-03-17 19:54:21.5416 Info Copied crackingpatching.yml -2023-03-17 19:54:21.5421 Info Attempting to copy crazyhd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/crazyhd.yml to destination: /app/Jackett/Definitions/crazyhd.yml -2023-03-17 19:54:21.5431 Info Copied crazyhd.yml -2023-03-17 19:54:21.5431 Info Attempting to copy crazyspirits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/crazyspirits.yml to destination: /app/Jackett/Definitions/crazyspirits.yml -2023-03-17 19:54:21.5445 Info Copied crazyspirits.yml -2023-03-17 19:54:21.5450 Info Attempting to copy crnaberza.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/crnaberza.yml to destination: /app/Jackett/Definitions/crnaberza.yml -2023-03-17 19:54:21.5460 Info Copied crnaberza.yml -2023-03-17 19:54:21.5460 Info Attempting to copy crt2fa.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/crt2fa.yml to destination: /app/Jackett/Definitions/crt2fa.yml -2023-03-17 19:54:21.5475 Info Copied crt2fa.yml -2023-03-17 19:54:21.5479 Info Attempting to copy danishbytes-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/danishbytes-api.yml to destination: /app/Jackett/Definitions/danishbytes-api.yml -2023-03-17 19:54:21.5489 Info Copied danishbytes-api.yml -2023-03-17 19:54:21.5489 Info Attempting to copy dariustracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/dariustracker.yml to destination: /app/Jackett/Definitions/dariustracker.yml -2023-03-17 19:54:21.5505 Info Copied dariustracker.yml -2023-03-17 19:54:21.5509 Info Attempting to copy dark-shadow.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/dark-shadow.yml to destination: /app/Jackett/Definitions/dark-shadow.yml -2023-03-17 19:54:21.5520 Info Copied dark-shadow.yml -2023-03-17 19:54:21.5520 Info Attempting to copy datascene-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/datascene-api.yml to destination: /app/Jackett/Definitions/datascene-api.yml -2023-03-17 19:54:21.5560 Info Copied datascene-api.yml -2023-03-17 19:54:21.5560 Info Attempting to copy datatalli.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/datatalli.yml to destination: /app/Jackett/Definitions/datatalli.yml -2023-03-17 19:54:21.5574 Info Copied datatalli.yml -2023-03-17 19:54:21.5579 Info Attempting to copy deildu.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/deildu.yml to destination: /app/Jackett/Definitions/deildu.yml -2023-03-17 19:54:21.5590 Info Copied deildu.yml -2023-03-17 19:54:21.5590 Info Attempting to copy demonoid.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/demonoid.yml to destination: /app/Jackett/Definitions/demonoid.yml -2023-03-17 19:54:21.5605 Info Copied demonoid.yml -2023-03-17 19:54:21.5609 Info Attempting to copy desitorrents-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/desitorrents-api.yml to destination: /app/Jackett/Definitions/desitorrents-api.yml -2023-03-17 19:54:21.5620 Info Copied desitorrents-api.yml -2023-03-17 19:54:21.5620 Info Attempting to copy devil-torrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/devil-torrents.yml to destination: /app/Jackett/Definitions/devil-torrents.yml -2023-03-17 19:54:21.5635 Info Copied devil-torrents.yml -2023-03-17 19:54:21.5639 Info Attempting to copy diablotorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/diablotorrent.yml to destination: /app/Jackett/Definitions/diablotorrent.yml -2023-03-17 19:54:21.5662 Info Copied diablotorrent.yml -2023-03-17 19:54:21.5662 Info Attempting to copy digitalcore.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/digitalcore.yml to destination: /app/Jackett/Definitions/digitalcore.yml -2023-03-17 19:54:21.5677 Info Copied digitalcore.yml -2023-03-17 19:54:21.5677 Info Attempting to copy dimeadozen.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/dimeadozen.yml to destination: /app/Jackett/Definitions/dimeadozen.yml -2023-03-17 19:54:21.5692 Info Copied dimeadozen.yml -2023-03-17 19:54:21.5697 Info Attempting to copy discfan.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/discfan.yml to destination: /app/Jackett/Definitions/discfan.yml -2023-03-17 19:54:21.5707 Info Copied discfan.yml -2023-03-17 19:54:21.5707 Info Attempting to copy divteam.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/divteam.yml to destination: /app/Jackett/Definitions/divteam.yml -2023-03-17 19:54:21.5722 Info Copied divteam.yml -2023-03-17 19:54:21.5722 Info Attempting to copy dmhy.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/dmhy.yml to destination: /app/Jackett/Definitions/dmhy.yml -2023-03-17 19:54:21.5736 Info Copied dmhy.yml -2023-03-17 19:54:21.5741 Info Attempting to copy docspedia.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/docspedia.yml to destination: /app/Jackett/Definitions/docspedia.yml -2023-03-17 19:54:21.5751 Info Copied docspedia.yml -2023-03-17 19:54:21.5751 Info Attempting to copy dodder.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/dodder.yml to destination: /app/Jackett/Definitions/dodder.yml -2023-03-17 19:54:21.5765 Info Copied dodder.yml -2023-03-17 19:54:21.5770 Info Attempting to copy dreamtracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/dreamtracker.yml to destination: /app/Jackett/Definitions/dreamtracker.yml -2023-03-17 19:54:21.5781 Info Copied dreamtracker.yml -2023-03-17 19:54:21.5781 Info Attempting to copy dxp.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/dxp.yml to destination: /app/Jackett/Definitions/dxp.yml -2023-03-17 19:54:21.5796 Info Copied dxp.yml -2023-03-17 19:54:21.5800 Info Attempting to copy ebookbay.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ebookbay.yml to destination: /app/Jackett/Definitions/ebookbay.yml -2023-03-17 19:54:21.5810 Info Copied ebookbay.yml -2023-03-17 19:54:21.5810 Info Attempting to copy ebooks-shares.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ebooks-shares.yml to destination: /app/Jackett/Definitions/ebooks-shares.yml -2023-03-17 19:54:21.5826 Info Copied ebooks-shares.yml -2023-03-17 19:54:21.5830 Info Attempting to copy ehentai.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ehentai.yml to destination: /app/Jackett/Definitions/ehentai.yml -2023-03-17 19:54:21.5840 Info Copied ehentai.yml -2023-03-17 19:54:21.5840 Info Attempting to copy electro-torrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/electro-torrent.yml to destination: /app/Jackett/Definitions/electro-torrent.yml -2023-03-17 19:54:21.5854 Info Copied electro-torrent.yml -2023-03-17 19:54:21.5860 Info Attempting to copy elitetorrent-pl.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/elitetorrent-pl.yml to destination: /app/Jackett/Definitions/elitetorrent-pl.yml -2023-03-17 19:54:21.5870 Info Copied elitetorrent-pl.yml -2023-03-17 19:54:21.5870 Info Attempting to copy empornium.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/empornium.yml to destination: /app/Jackett/Definitions/empornium.yml -2023-03-17 19:54:21.5885 Info Copied empornium.yml -2023-03-17 19:54:21.5889 Info Attempting to copy empornium2fa.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/empornium2fa.yml to destination: /app/Jackett/Definitions/empornium2fa.yml -2023-03-17 19:54:21.5901 Info Copied empornium2fa.yml -2023-03-17 19:54:21.5901 Info Attempting to copy eniahd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/eniahd.yml to destination: /app/Jackett/Definitions/eniahd.yml -2023-03-17 19:54:21.5915 Info Copied eniahd.yml -2023-03-17 19:54:21.5920 Info Attempting to copy esharenet.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/esharenet.yml to destination: /app/Jackett/Definitions/esharenet.yml -2023-03-17 19:54:21.5930 Info Copied esharenet.yml -2023-03-17 19:54:21.5930 Info Attempting to copy estone.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/estone.yml to destination: /app/Jackett/Definitions/estone.yml -2023-03-17 19:54:21.5945 Info Copied estone.yml -2023-03-17 19:54:21.5950 Info Attempting to copy exkinoray.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/exkinoray.yml to destination: /app/Jackett/Definitions/exkinoray.yml -2023-03-17 19:54:21.5960 Info Copied exkinoray.yml -2023-03-17 19:54:21.5960 Info Attempting to copy extratorrent-st.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/extratorrent-st.yml to destination: /app/Jackett/Definitions/extratorrent-st.yml -2023-03-17 19:54:21.5975 Info Copied extratorrent-st.yml -2023-03-17 19:54:21.5980 Info Attempting to copy extremebits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/extremebits.yml to destination: /app/Jackett/Definitions/extremebits.yml -2023-03-17 19:54:21.5990 Info Copied extremebits.yml -2023-03-17 19:54:21.5990 Info Attempting to copy extremetorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/extremetorrents.yml to destination: /app/Jackett/Definitions/extremetorrents.yml -2023-03-17 19:54:21.6005 Info Copied extremetorrents.yml -2023-03-17 19:54:21.6010 Info Attempting to copy extremlymtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/extremlymtorrents.yml to destination: /app/Jackett/Definitions/extremlymtorrents.yml -2023-03-17 19:54:21.6020 Info Copied extremlymtorrents.yml -2023-03-17 19:54:21.6020 Info Attempting to copy exttorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/exttorrents.yml to destination: /app/Jackett/Definitions/exttorrents.yml -2023-03-17 19:54:21.6035 Info Copied exttorrents.yml -2023-03-17 19:54:21.6039 Info Attempting to copy eztv.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/eztv.yml to destination: /app/Jackett/Definitions/eztv.yml -2023-03-17 19:54:21.6050 Info Copied eztv.yml -2023-03-17 19:54:21.6050 Info Attempting to copy falkonvisionteam.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/falkonvisionteam.yml to destination: /app/Jackett/Definitions/falkonvisionteam.yml -2023-03-17 19:54:21.6068 Info Copied falkonvisionteam.yml -2023-03-17 19:54:21.6068 Info Attempting to copy fanoin.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/fanoin.yml to destination: /app/Jackett/Definitions/fanoin.yml -2023-03-17 19:54:21.6083 Info Copied fanoin.yml -2023-03-17 19:54:21.6087 Info Attempting to copy fantasticheaven.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/fantasticheaven.yml to destination: /app/Jackett/Definitions/fantasticheaven.yml -2023-03-17 19:54:21.6098 Info Copied fantasticheaven.yml -2023-03-17 19:54:21.6098 Info Attempting to copy fantastiko.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/fantastiko.yml to destination: /app/Jackett/Definitions/fantastiko.yml -2023-03-17 19:54:21.6113 Info Copied fantastiko.yml -2023-03-17 19:54:21.6117 Info Attempting to copy femdomcult.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/femdomcult.yml to destination: /app/Jackett/Definitions/femdomcult.yml -2023-03-17 19:54:21.6127 Info Copied femdomcult.yml -2023-03-17 19:54:21.6127 Info Attempting to copy fenyarnyek-tracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/fenyarnyek-tracker.yml to destination: /app/Jackett/Definitions/fenyarnyek-tracker.yml -2023-03-17 19:54:21.6142 Info Copied fenyarnyek-tracker.yml -2023-03-17 19:54:21.6147 Info Attempting to copy file-tracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/file-tracker.yml to destination: /app/Jackett/Definitions/file-tracker.yml -2023-03-17 19:54:21.6158 Info Copied file-tracker.yml -2023-03-17 19:54:21.6174 Info Attempting to copy filelisting.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/filelisting.yml to destination: /app/Jackett/Definitions/filelisting.yml -2023-03-17 19:54:21.6174 Info Copied filelisting.yml -2023-03-17 19:54:21.6189 Info Attempting to copy finelite.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/finelite.yml to destination: /app/Jackett/Definitions/finelite.yml -2023-03-17 19:54:21.6199 Info Copied finelite.yml -2023-03-17 19:54:21.6199 Info Attempting to copy finvip.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/finvip.yml to destination: /app/Jackett/Definitions/finvip.yml -2023-03-17 19:54:21.6214 Info Copied finvip.yml -2023-03-17 19:54:21.6218 Info Attempting to copy firebit.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/firebit.yml to destination: /app/Jackett/Definitions/firebit.yml -2023-03-17 19:54:21.6229 Info Copied firebit.yml -2023-03-17 19:54:21.6229 Info Attempting to copy fluxzone.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/fluxzone.yml to destination: /app/Jackett/Definitions/fluxzone.yml -2023-03-17 19:54:21.6244 Info Copied fluxzone.yml -2023-03-17 19:54:21.6248 Info Attempting to copy freshmeat.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/freshmeat.yml to destination: /app/Jackett/Definitions/freshmeat.yml -2023-03-17 19:54:21.6260 Info Copied freshmeat.yml -2023-03-17 19:54:21.6260 Info Attempting to copy frozenlayer.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/frozenlayer.yml to destination: /app/Jackett/Definitions/frozenlayer.yml -2023-03-17 19:54:21.6274 Info Copied frozenlayer.yml -2023-03-17 19:54:21.6279 Info Attempting to copy ftuapps.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ftuapps.yml to destination: /app/Jackett/Definitions/ftuapps.yml -2023-03-17 19:54:21.6290 Info Copied ftuapps.yml -2023-03-17 19:54:21.6290 Info Attempting to copy funkytorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/funkytorrents.yml to destination: /app/Jackett/Definitions/funkytorrents.yml -2023-03-17 19:54:21.6305 Info Copied funkytorrents.yml -2023-03-17 19:54:21.6310 Info Attempting to copy fuzer.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/fuzer.yml to destination: /app/Jackett/Definitions/fuzer.yml -2023-03-17 19:54:21.6321 Info Copied fuzer.yml -2023-03-17 19:54:21.6321 Info Attempting to copy gainbound.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gainbound.yml to destination: /app/Jackett/Definitions/gainbound.yml -2023-03-17 19:54:21.6335 Info Copied gainbound.yml -2023-03-17 19:54:21.6340 Info Attempting to copy gamestorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gamestorrents.yml to destination: /app/Jackett/Definitions/gamestorrents.yml -2023-03-17 19:54:21.6350 Info Copied gamestorrents.yml -2023-03-17 19:54:21.6350 Info Attempting to copy gay-torrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gay-torrents.yml to destination: /app/Jackett/Definitions/gay-torrents.yml -2023-03-17 19:54:21.6365 Info Copied gay-torrents.yml -2023-03-17 19:54:21.6369 Info Attempting to copy gay-torrentsorg.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gay-torrentsorg.yml to destination: /app/Jackett/Definitions/gay-torrentsorg.yml -2023-03-17 19:54:21.6380 Info Copied gay-torrentsorg.yml -2023-03-17 19:54:21.6380 Info Attempting to copy gaytorrentru.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gaytorrentru.yml to destination: /app/Jackett/Definitions/gaytorrentru.yml -2023-03-17 19:54:21.6395 Info Copied gaytorrentru.yml -2023-03-17 19:54:21.6400 Info Attempting to copy generationfree-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/generationfree-api.yml to destination: /app/Jackett/Definitions/generationfree-api.yml -2023-03-17 19:54:21.6411 Info Copied generationfree-api.yml -2023-03-17 19:54:21.6411 Info Attempting to copy genesismovement.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/genesismovement.yml to destination: /app/Jackett/Definitions/genesismovement.yml -2023-03-17 19:54:21.6427 Info Copied genesismovement.yml -2023-03-17 19:54:21.6427 Info Attempting to copy gigatorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gigatorrents.yml to destination: /app/Jackett/Definitions/gigatorrents.yml -2023-03-17 19:54:21.6441 Info Copied gigatorrents.yml -2023-03-17 19:54:21.6441 Info Attempting to copy gimmepeers.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gimmepeers.yml to destination: /app/Jackett/Definitions/gimmepeers.yml -2023-03-17 19:54:21.6456 Info Copied gimmepeers.yml -2023-03-17 19:54:21.6461 Info Attempting to copy girotorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/girotorrent.yml to destination: /app/Jackett/Definitions/girotorrent.yml -2023-03-17 19:54:21.6471 Info Copied girotorrent.yml -2023-03-17 19:54:21.6471 Info Attempting to copy gktorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gktorrent.yml to destination: /app/Jackett/Definitions/gktorrent.yml -2023-03-17 19:54:21.6486 Info Copied gktorrent.yml -2023-03-17 19:54:21.6491 Info Attempting to copy glodls.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/glodls.yml to destination: /app/Jackett/Definitions/glodls.yml -2023-03-17 19:54:21.6501 Info Copied glodls.yml -2023-03-17 19:54:21.6501 Info Attempting to copy greekdiamond.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/greekdiamond.yml to destination: /app/Jackett/Definitions/greekdiamond.yml -2023-03-17 19:54:21.6517 Info Copied greekdiamond.yml -2023-03-17 19:54:21.6517 Info Attempting to copy greekteam.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/greekteam.yml to destination: /app/Jackett/Definitions/greekteam.yml -2023-03-17 19:54:21.6531 Info Copied greekteam.yml -2023-03-17 19:54:21.6531 Info Attempting to copy gtorrentpro.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/gtorrentpro.yml to destination: /app/Jackett/Definitions/gtorrentpro.yml -2023-03-17 19:54:21.6546 Info Copied gtorrentpro.yml -2023-03-17 19:54:21.6551 Info Attempting to copy haidan.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/haidan.yml to destination: /app/Jackett/Definitions/haidan.yml -2023-03-17 19:54:21.6561 Info Copied haidan.yml -2023-03-17 19:54:21.6561 Info Attempting to copy haitang.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/haitang.yml to destination: /app/Jackett/Definitions/haitang.yml -2023-03-17 19:54:21.6576 Info Copied haitang.yml -2023-03-17 19:54:21.6581 Info Attempting to copy happyfappy.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/happyfappy.yml to destination: /app/Jackett/Definitions/happyfappy.yml -2023-03-17 19:54:21.6590 Info Copied happyfappy.yml -2023-03-17 19:54:21.6590 Info Attempting to copy hawke-uno.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hawke-uno.yml to destination: /app/Jackett/Definitions/hawke-uno.yml -2023-03-17 19:54:21.6605 Info Copied hawke-uno.yml -2023-03-17 19:54:21.6610 Info Attempting to copy hd-unit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hd-unit3d-api.yml to destination: /app/Jackett/Definitions/hd-unit3d-api.yml -2023-03-17 19:54:21.6620 Info Copied hd-unit3d-api.yml -2023-03-17 19:54:21.6620 Info Attempting to copy hd4fans.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hd4fans.yml to destination: /app/Jackett/Definitions/hd4fans.yml -2023-03-17 19:54:21.6636 Info Copied hd4fans.yml -2023-03-17 19:54:21.6640 Info Attempting to copy hdarea.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdarea.yml to destination: /app/Jackett/Definitions/hdarea.yml -2023-03-17 19:54:21.6651 Info Copied hdarea.yml -2023-03-17 19:54:21.6651 Info Attempting to copy hdatmos.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdatmos.yml to destination: /app/Jackett/Definitions/hdatmos.yml -2023-03-17 19:54:21.6665 Info Copied hdatmos.yml -2023-03-17 19:54:21.6670 Info Attempting to copy hdc.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdc.yml to destination: /app/Jackett/Definitions/hdc.yml -2023-03-17 19:54:21.6680 Info Copied hdc.yml -2023-03-17 19:54:21.6680 Info Attempting to copy hdchina.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdchina.yml to destination: /app/Jackett/Definitions/hdchina.yml -2023-03-17 19:54:21.6695 Info Copied hdchina.yml -2023-03-17 19:54:21.6700 Info Attempting to copy hdcztorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdcztorrent.yml to destination: /app/Jackett/Definitions/hdcztorrent.yml -2023-03-17 19:54:21.6712 Info Copied hdcztorrent.yml -2023-03-17 19:54:21.6712 Info Attempting to copy hddolby.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hddolby.yml to destination: /app/Jackett/Definitions/hddolby.yml -2023-03-17 19:54:21.6726 Info Copied hddolby.yml -2023-03-17 19:54:21.6731 Info Attempting to copy hdfans.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdfans.yml to destination: /app/Jackett/Definitions/hdfans.yml -2023-03-17 19:54:21.6754 Info Copied hdfans.yml -2023-03-17 19:54:21.6760 Info Attempting to copy hdforever.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdforever.yml to destination: /app/Jackett/Definitions/hdforever.yml -2023-03-17 19:54:21.6770 Info Copied hdforever.yml -2023-03-17 19:54:21.6770 Info Attempting to copy hdgalaktik.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdgalaktik.yml to destination: /app/Jackett/Definitions/hdgalaktik.yml -2023-03-17 19:54:21.6784 Info Copied hdgalaktik.yml -2023-03-17 19:54:21.6789 Info Attempting to copy hdhome.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdhome.yml to destination: /app/Jackett/Definitions/hdhome.yml -2023-03-17 19:54:21.6799 Info Copied hdhome.yml -2023-03-17 19:54:21.6799 Info Attempting to copy hdmayi.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdmayi.yml to destination: /app/Jackett/Definitions/hdmayi.yml -2023-03-17 19:54:21.6814 Info Copied hdmayi.yml -2023-03-17 19:54:21.6819 Info Attempting to copy hdmonkey.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdmonkey.yml to destination: /app/Jackett/Definitions/hdmonkey.yml -2023-03-17 19:54:21.6829 Info Copied hdmonkey.yml -2023-03-17 19:54:21.6829 Info Attempting to copy hdolimpo-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdolimpo-api.yml to destination: /app/Jackett/Definitions/hdolimpo-api.yml -2023-03-17 19:54:21.6842 Info Copied hdolimpo-api.yml -2023-03-17 19:54:21.6848 Info Attempting to copy hdonly.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdonly.yml to destination: /app/Jackett/Definitions/hdonly.yml -2023-03-17 19:54:21.6859 Info Copied hdonly.yml -2023-03-17 19:54:21.6859 Info Attempting to copy hdroute.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdroute.yml to destination: /app/Jackett/Definitions/hdroute.yml -2023-03-17 19:54:21.6872 Info Copied hdroute.yml -2023-03-17 19:54:21.6872 Info Attempting to copy hdsky.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdsky.yml to destination: /app/Jackett/Definitions/hdsky.yml -2023-03-17 19:54:21.6887 Info Copied hdsky.yml -2023-03-17 19:54:21.6887 Info Attempting to copy hdtime.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdtime.yml to destination: /app/Jackett/Definitions/hdtime.yml -2023-03-17 19:54:21.6902 Info Copied hdtime.yml -2023-03-17 19:54:21.6902 Info Attempting to copy hdtorrentsit.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdtorrentsit.yml to destination: /app/Jackett/Definitions/hdtorrentsit.yml -2023-03-17 19:54:21.6917 Info Copied hdtorrentsit.yml -2023-03-17 19:54:21.6917 Info Attempting to copy hdturk.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdturk.yml to destination: /app/Jackett/Definitions/hdturk.yml -2023-03-17 19:54:21.6930 Info Copied hdturk.yml -2023-03-17 19:54:21.6930 Info Attempting to copy hdu.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdu.yml to destination: /app/Jackett/Definitions/hdu.yml -2023-03-17 19:54:21.6945 Info Copied hdu.yml -2023-03-17 19:54:21.6950 Info Attempting to copy hdzone.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hdzone.yml to destination: /app/Jackett/Definitions/hdzone.yml -2023-03-17 19:54:21.6960 Info Copied hdzone.yml -2023-03-17 19:54:21.6960 Info Attempting to copy hebits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hebits.yml to destination: /app/Jackett/Definitions/hebits.yml -2023-03-17 19:54:21.6975 Info Copied hebits.yml -2023-03-17 19:54:21.6980 Info Attempting to copy hellashut.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hellashut.yml to destination: /app/Jackett/Definitions/hellashut.yml -2023-03-17 19:54:21.6990 Info Copied hellashut.yml -2023-03-17 19:54:21.6990 Info Attempting to copy hhanclub.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hhanclub.yml to destination: /app/Jackett/Definitions/hhanclub.yml -2023-03-17 19:54:21.7005 Info Copied hhanclub.yml -2023-03-17 19:54:21.7009 Info Attempting to copy houseofdevil.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/houseofdevil.yml to destination: /app/Jackett/Definitions/houseofdevil.yml -2023-03-17 19:54:21.7020 Info Copied houseofdevil.yml -2023-03-17 19:54:21.7020 Info Attempting to copy hqmusic.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/hqmusic.yml to destination: /app/Jackett/Definitions/hqmusic.yml -2023-03-17 19:54:21.7048 Info Copied hqmusic.yml -2023-03-17 19:54:21.7048 Info Attempting to copy huntorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/huntorrent.yml to destination: /app/Jackett/Definitions/huntorrent.yml -2023-03-17 19:54:21.7063 Info Copied huntorrent.yml -2023-03-17 19:54:21.7068 Info Attempting to copy icc2022.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/icc2022.yml to destination: /app/Jackett/Definitions/icc2022.yml -2023-03-17 19:54:21.7079 Info Copied icc2022.yml -2023-03-17 19:54:21.7079 Info Attempting to copy idope.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/idope.yml to destination: /app/Jackett/Definitions/idope.yml -2023-03-17 19:54:21.7093 Info Copied idope.yml -2023-03-17 19:54:21.7097 Info Attempting to copy ihdbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ihdbits.yml to destination: /app/Jackett/Definitions/ihdbits.yml -2023-03-17 19:54:21.7109 Info Copied ihdbits.yml -2023-03-17 19:54:21.7109 Info Attempting to copy ilcorsaroblu.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ilcorsaroblu.yml to destination: /app/Jackett/Definitions/ilcorsaroblu.yml -2023-03-17 19:54:21.7123 Info Copied ilcorsaroblu.yml -2023-03-17 19:54:21.7128 Info Attempting to copy ilcorsaronero.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ilcorsaronero.yml to destination: /app/Jackett/Definitions/ilcorsaronero.yml -2023-03-17 19:54:21.7139 Info Copied ilcorsaronero.yml -2023-03-17 19:54:21.7139 Info Attempting to copy immortuos.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/immortuos.yml to destination: /app/Jackett/Definitions/immortuos.yml -2023-03-17 19:54:21.7153 Info Copied immortuos.yml -2023-03-17 19:54:21.7158 Info Attempting to copy indietorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/indietorrents.yml to destination: /app/Jackett/Definitions/indietorrents.yml -2023-03-17 19:54:21.7168 Info Copied indietorrents.yml -2023-03-17 19:54:21.7168 Info Attempting to copy insanetracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/insanetracker.yml to destination: /app/Jackett/Definitions/insanetracker.yml -2023-03-17 19:54:21.7183 Info Copied insanetracker.yml -2023-03-17 19:54:21.7188 Info Attempting to copy internetarchive.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/internetarchive.yml to destination: /app/Jackett/Definitions/internetarchive.yml -2023-03-17 19:54:21.7197 Info Copied internetarchive.yml -2023-03-17 19:54:21.7197 Info Attempting to copy isohunt2.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/isohunt2.yml to destination: /app/Jackett/Definitions/isohunt2.yml -2023-03-17 19:54:21.7211 Info Copied isohunt2.yml -2023-03-17 19:54:21.7211 Info Attempting to copy itorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/itorrent.yml to destination: /app/Jackett/Definitions/itorrent.yml -2023-03-17 19:54:21.7226 Info Copied itorrent.yml -2023-03-17 19:54:21.7231 Info Attempting to copy jav-torrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/jav-torrent.yml to destination: /app/Jackett/Definitions/jav-torrent.yml -2023-03-17 19:54:21.7240 Info Copied jav-torrent.yml -2023-03-17 19:54:21.7240 Info Attempting to copy jme-reunit3d-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/jme-reunit3d-api.yml to destination: /app/Jackett/Definitions/jme-reunit3d-api.yml -2023-03-17 19:54:21.7255 Info Copied jme-reunit3d-api.yml -2023-03-17 19:54:21.7260 Info Attempting to copy joyhd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/joyhd.yml to destination: /app/Jackett/Definitions/joyhd.yml -2023-03-17 19:54:21.7270 Info Copied joyhd.yml -2023-03-17 19:54:21.7270 Info Attempting to copy jpopsuki.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/jpopsuki.yml to destination: /app/Jackett/Definitions/jpopsuki.yml -2023-03-17 19:54:21.7283 Info Copied jpopsuki.yml -2023-03-17 19:54:21.7288 Info Attempting to copy jptv.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/jptv.yml to destination: /app/Jackett/Definitions/jptv.yml -2023-03-17 19:54:21.7300 Info Copied jptv.yml -2023-03-17 19:54:21.7300 Info Attempting to copy kamept.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/kamept.yml to destination: /app/Jackett/Definitions/kamept.yml -2023-03-17 19:54:21.7315 Info Copied kamept.yml -2023-03-17 19:54:21.7319 Info Attempting to copy karagarga.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/karagarga.yml to destination: /app/Jackett/Definitions/karagarga.yml -2023-03-17 19:54:21.7330 Info Copied karagarga.yml -2023-03-17 19:54:21.7330 Info Attempting to copy keepfriends.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/keepfriends.yml to destination: /app/Jackett/Definitions/keepfriends.yml -2023-03-17 19:54:21.7344 Info Copied keepfriends.yml -2023-03-17 19:54:21.7349 Info Attempting to copy kickasstorrents-to.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/kickasstorrents-to.yml to destination: /app/Jackett/Definitions/kickasstorrents-to.yml -2023-03-17 19:54:21.7359 Info Copied kickasstorrents-to.yml -2023-03-17 19:54:21.7359 Info Attempting to copy kickasstorrents-ws.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/kickasstorrents-ws.yml to destination: /app/Jackett/Definitions/kickasstorrents-ws.yml -2023-03-17 19:54:21.7374 Info Copied kickasstorrents-ws.yml -2023-03-17 19:54:21.7379 Info Attempting to copy kinorun.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/kinorun.yml to destination: /app/Jackett/Definitions/kinorun.yml -2023-03-17 19:54:21.7389 Info Copied kinorun.yml -2023-03-17 19:54:21.7389 Info Attempting to copy kinozal.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/kinozal.yml to destination: /app/Jackett/Definitions/kinozal.yml -2023-03-17 19:54:21.7404 Info Copied kinozal.yml -2023-03-17 19:54:21.7408 Info Attempting to copy knaben.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/knaben.yml to destination: /app/Jackett/Definitions/knaben.yml -2023-03-17 19:54:21.7419 Info Copied knaben.yml -2023-03-17 19:54:21.7419 Info Attempting to copy korsar.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/korsar.yml to destination: /app/Jackett/Definitions/korsar.yml -2023-03-17 19:54:21.7448 Info Copied korsar.yml -2023-03-17 19:54:21.7448 Info Attempting to copy krazyzone.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/krazyzone.yml to destination: /app/Jackett/Definitions/krazyzone.yml -2023-03-17 19:54:21.7464 Info Copied krazyzone.yml -2023-03-17 19:54:21.7469 Info Attempting to copy kufirc.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/kufirc.yml to destination: /app/Jackett/Definitions/kufirc.yml -2023-03-17 19:54:21.7479 Info Copied kufirc.yml -2023-03-17 19:54:21.7479 Info Attempting to copy lastfiles.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/lastfiles.yml to destination: /app/Jackett/Definitions/lastfiles.yml -2023-03-17 19:54:21.7494 Info Copied lastfiles.yml -2023-03-17 19:54:21.7514 Info Attempting to copy lat-team-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/lat-team-api.yml to destination: /app/Jackett/Definitions/lat-team-api.yml -2023-03-17 19:54:21.7524 Info Copied lat-team-api.yml -2023-03-17 19:54:21.7529 Info Attempting to copy learnbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/learnbits.yml to destination: /app/Jackett/Definitions/learnbits.yml -2023-03-17 19:54:21.7540 Info Copied learnbits.yml -2023-03-17 19:54:21.7540 Info Attempting to copy learnflakes.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/learnflakes.yml to destination: /app/Jackett/Definitions/learnflakes.yml -2023-03-17 19:54:21.7554 Info Copied learnflakes.yml -2023-03-17 19:54:21.7559 Info Attempting to copy leech24.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/leech24.yml to destination: /app/Jackett/Definitions/leech24.yml -2023-03-17 19:54:21.7569 Info Copied leech24.yml -2023-03-17 19:54:21.7569 Info Attempting to copy lemonhd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/lemonhd.yml to destination: /app/Jackett/Definitions/lemonhd.yml -2023-03-17 19:54:21.7583 Info Copied lemonhd.yml -2023-03-17 19:54:21.7588 Info Attempting to copy lepornoinfo.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/lepornoinfo.yml to destination: /app/Jackett/Definitions/lepornoinfo.yml -2023-03-17 19:54:21.7598 Info Copied lepornoinfo.yml -2023-03-17 19:54:21.7598 Info Attempting to copy les-cinephiles.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/les-cinephiles.yml to destination: /app/Jackett/Definitions/les-cinephiles.yml -2023-03-17 19:54:21.7614 Info Copied les-cinephiles.yml -2023-03-17 19:54:21.7619 Info Attempting to copy lesaloon.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/lesaloon.yml to destination: /app/Jackett/Definitions/lesaloon.yml -2023-03-17 19:54:21.7629 Info Copied lesaloon.yml -2023-03-17 19:54:21.7629 Info Attempting to copy libranet.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/libranet.yml to destination: /app/Jackett/Definitions/libranet.yml -2023-03-17 19:54:21.7643 Info Copied libranet.yml -2023-03-17 19:54:21.7648 Info Attempting to copy lightning-tor.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/lightning-tor.yml to destination: /app/Jackett/Definitions/lightning-tor.yml -2023-03-17 19:54:21.7661 Info Copied lightning-tor.yml -2023-03-17 19:54:21.7661 Info Attempting to copy limetorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/limetorrents.yml to destination: /app/Jackett/Definitions/limetorrents.yml -2023-03-17 19:54:21.7675 Info Copied limetorrents.yml -2023-03-17 19:54:21.7679 Info Attempting to copy limetorrentsclone.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/limetorrentsclone.yml to destination: /app/Jackett/Definitions/limetorrentsclone.yml -2023-03-17 19:54:21.7689 Info Copied limetorrentsclone.yml -2023-03-17 19:54:21.7689 Info Attempting to copy linkomanija.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/linkomanija.yml to destination: /app/Jackett/Definitions/linkomanija.yml -2023-03-17 19:54:21.7704 Info Copied linkomanija.yml -2023-03-17 19:54:21.7708 Info Attempting to copy linuxtracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/linuxtracker.yml to destination: /app/Jackett/Definitions/linuxtracker.yml -2023-03-17 19:54:21.7719 Info Copied linuxtracker.yml -2023-03-17 19:54:21.7719 Info Attempting to copy locadora.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/locadora.yml to destination: /app/Jackett/Definitions/locadora.yml -2023-03-17 19:54:21.7732 Info Copied locadora.yml -2023-03-17 19:54:21.7738 Info Attempting to copy losslessclub.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/losslessclub.yml to destination: /app/Jackett/Definitions/losslessclub.yml -2023-03-17 19:54:21.7761 Info Copied losslessclub.yml -2023-03-17 19:54:21.7761 Info Attempting to copy lst.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/lst.yml to destination: /app/Jackett/Definitions/lst.yml -2023-03-17 19:54:21.7775 Info Copied lst.yml -2023-03-17 19:54:21.7780 Info Attempting to copy mactorrentsdownload.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mactorrentsdownload.yml to destination: /app/Jackett/Definitions/mactorrentsdownload.yml -2023-03-17 19:54:21.7790 Info Copied mactorrentsdownload.yml -2023-03-17 19:54:21.7790 Info Attempting to copy madsrevolution.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/madsrevolution.yml to destination: /app/Jackett/Definitions/madsrevolution.yml -2023-03-17 19:54:21.7805 Info Copied madsrevolution.yml -2023-03-17 19:54:21.7809 Info Attempting to copy magicheaven.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/magicheaven.yml to destination: /app/Jackett/Definitions/magicheaven.yml -2023-03-17 19:54:21.7820 Info Copied magicheaven.yml -2023-03-17 19:54:21.7820 Info Attempting to copy magico.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/magico.yml to destination: /app/Jackett/Definitions/magico.yml -2023-03-17 19:54:21.7834 Info Copied magico.yml -2023-03-17 19:54:21.7839 Info Attempting to copy majomparade.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/majomparade.yml to destination: /app/Jackett/Definitions/majomparade.yml -2023-03-17 19:54:21.7849 Info Copied majomparade.yml -2023-03-17 19:54:21.7849 Info Attempting to copy marinetracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/marinetracker.yml to destination: /app/Jackett/Definitions/marinetracker.yml -2023-03-17 19:54:21.7864 Info Copied marinetracker.yml -2023-03-17 19:54:21.7868 Info Attempting to copy mazepa.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mazepa.yml to destination: /app/Jackett/Definitions/mazepa.yml -2023-03-17 19:54:21.7879 Info Copied mazepa.yml -2023-03-17 19:54:21.7879 Info Attempting to copy megamixtracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/megamixtracker.yml to destination: /app/Jackett/Definitions/megamixtracker.yml -2023-03-17 19:54:21.7894 Info Copied megamixtracker.yml -2023-03-17 19:54:21.7899 Info Attempting to copy megapeer.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/megapeer.yml to destination: /app/Jackett/Definitions/megapeer.yml -2023-03-17 19:54:21.7909 Info Copied megapeer.yml -2023-03-17 19:54:21.7909 Info Attempting to copy mesevilag.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mesevilag.yml to destination: /app/Jackett/Definitions/mesevilag.yml -2023-03-17 19:54:21.7923 Info Copied mesevilag.yml -2023-03-17 19:54:21.7928 Info Attempting to copy metaltracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/metaltracker.yml to destination: /app/Jackett/Definitions/metaltracker.yml -2023-03-17 19:54:21.7938 Info Copied metaltracker.yml -2023-03-17 19:54:21.7938 Info Attempting to copy mikan.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mikan.yml to destination: /app/Jackett/Definitions/mikan.yml -2023-03-17 19:54:21.7952 Info Copied mikan.yml -2023-03-17 19:54:21.7957 Info Attempting to copy milkie.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/milkie.yml to destination: /app/Jackett/Definitions/milkie.yml -2023-03-17 19:54:21.7957 Info Copied milkie.yml -2023-03-17 19:54:21.7972 Info Attempting to copy miobt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/miobt.yml to destination: /app/Jackett/Definitions/miobt.yml -2023-03-17 19:54:21.7982 Info Copied miobt.yml -2023-03-17 19:54:21.7982 Info Attempting to copy mircrew.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mircrew.yml to destination: /app/Jackett/Definitions/mircrew.yml -2023-03-17 19:54:21.7995 Info Copied mircrew.yml -2023-03-17 19:54:21.8000 Info Attempting to copy mixtapetorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mixtapetorrent.yml to destination: /app/Jackett/Definitions/mixtapetorrent.yml -2023-03-17 19:54:21.8010 Info Copied mixtapetorrent.yml -2023-03-17 19:54:21.8010 Info Attempting to copy mma-torrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mma-torrents.yml to destination: /app/Jackett/Definitions/mma-torrents.yml -2023-03-17 19:54:21.8051 Info Copied mma-torrents.yml -2023-03-17 19:54:21.8051 Info Attempting to copy mnv.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mnv.yml to destination: /app/Jackett/Definitions/mnv.yml -2023-03-17 19:54:21.8067 Info Copied mnv.yml -2023-03-17 19:54:21.8067 Info Attempting to copy mojblink.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mojblink.yml to destination: /app/Jackett/Definitions/mojblink.yml -2023-03-17 19:54:21.8081 Info Copied mojblink.yml -2023-03-17 19:54:21.8081 Info Attempting to copy mousebits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mousebits.yml to destination: /app/Jackett/Definitions/mousebits.yml -2023-03-17 19:54:21.8095 Info Copied mousebits.yml -2023-03-17 19:54:21.8100 Info Attempting to copy moviesdvdr.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/moviesdvdr.yml to destination: /app/Jackett/Definitions/moviesdvdr.yml -2023-03-17 19:54:21.8110 Info Copied moviesdvdr.yml -2023-03-17 19:54:21.8110 Info Attempting to copy moviesite.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/moviesite.yml to destination: /app/Jackett/Definitions/moviesite.yml -2023-03-17 19:54:21.8124 Info Copied moviesite.yml -2023-03-17 19:54:21.8128 Info Attempting to copy movietorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/movietorrent.yml to destination: /app/Jackett/Definitions/movietorrent.yml -2023-03-17 19:54:21.8138 Info Copied movietorrent.yml -2023-03-17 19:54:21.8138 Info Attempting to copy movietorrentz.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/movietorrentz.yml to destination: /app/Jackett/Definitions/movietorrentz.yml -2023-03-17 19:54:21.8152 Info Copied movietorrentz.yml -2023-03-17 19:54:21.8152 Info Attempting to copy mteamtp.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mteamtp.yml to destination: /app/Jackett/Definitions/mteamtp.yml -2023-03-17 19:54:21.8166 Info Copied mteamtp.yml -2023-03-17 19:54:21.8170 Info Attempting to copy mteamtp2fa.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mteamtp2fa.yml to destination: /app/Jackett/Definitions/mteamtp2fa.yml -2023-03-17 19:54:21.8182 Info Copied mteamtp2fa.yml -2023-03-17 19:54:21.8182 Info Attempting to copy muziekfabriek.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/muziekfabriek.yml to destination: /app/Jackett/Definitions/muziekfabriek.yml -2023-03-17 19:54:21.8196 Info Copied muziekfabriek.yml -2023-03-17 19:54:21.8200 Info Attempting to copy mvgroupforum.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mvgroupforum.yml to destination: /app/Jackett/Definitions/mvgroupforum.yml -2023-03-17 19:54:21.8210 Info Copied mvgroupforum.yml -2023-03-17 19:54:21.8210 Info Attempting to copy mvgroupmain.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mvgroupmain.yml to destination: /app/Jackett/Definitions/mvgroupmain.yml -2023-03-17 19:54:21.8225 Info Copied mvgroupmain.yml -2023-03-17 19:54:21.8230 Info Attempting to copy mypornclub.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/mypornclub.yml to destination: /app/Jackett/Definitions/mypornclub.yml -2023-03-17 19:54:21.8252 Info Copied mypornclub.yml -2023-03-17 19:54:21.8252 Info Attempting to copy myspleen.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/myspleen.yml to destination: /app/Jackett/Definitions/myspleen.yml -2023-03-17 19:54:21.8267 Info Copied myspleen.yml -2023-03-17 19:54:21.8267 Info Attempting to copy nethd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/nethd.yml to destination: /app/Jackett/Definitions/nethd.yml -2023-03-17 19:54:21.8281 Info Copied nethd.yml -2023-03-17 19:54:21.8281 Info Attempting to copy newretro.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/newretro.yml to destination: /app/Jackett/Definitions/newretro.yml -2023-03-17 19:54:21.8296 Info Copied newretro.yml -2023-03-17 19:54:21.8301 Info Attempting to copy newstudio.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/newstudio.yml to destination: /app/Jackett/Definitions/newstudio.yml -2023-03-17 19:54:21.8310 Info Copied newstudio.yml -2023-03-17 19:54:21.8310 Info Attempting to copy newstudiol.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/newstudiol.yml to destination: /app/Jackett/Definitions/newstudiol.yml -2023-03-17 19:54:21.8337 Info Copied newstudiol.yml -2023-03-17 19:54:21.8337 Info Attempting to copy nicept.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/nicept.yml to destination: /app/Jackett/Definitions/nicept.yml -2023-03-17 19:54:21.8363 Info Copied nicept.yml -2023-03-17 19:54:21.8367 Info Attempting to copy nipponsei.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/nipponsei.yml to destination: /app/Jackett/Definitions/nipponsei.yml -2023-03-17 19:54:21.8378 Info Copied nipponsei.yml -2023-03-17 19:54:21.8378 Info Attempting to copy nntt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/nntt.yml to destination: /app/Jackett/Definitions/nntt.yml -2023-03-17 19:54:21.8393 Info Copied nntt.yml -2023-03-17 19:54:21.8397 Info Attempting to copy noname-club.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/noname-club.yml to destination: /app/Jackett/Definitions/noname-club.yml -2023-03-17 19:54:21.8409 Info Copied noname-club.yml -2023-03-17 19:54:21.8409 Info Attempting to copy noname-clubl.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/noname-clubl.yml to destination: /app/Jackett/Definitions/noname-clubl.yml -2023-03-17 19:54:21.8424 Info Copied noname-clubl.yml -2023-03-17 19:54:21.8429 Info Attempting to copy nyaasi.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/nyaasi.yml to destination: /app/Jackett/Definitions/nyaasi.yml -2023-03-17 19:54:21.8440 Info Copied nyaasi.yml -2023-03-17 19:54:21.8440 Info Attempting to copy oldtoonsworld.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/oldtoonsworld.yml to destination: /app/Jackett/Definitions/oldtoonsworld.yml -2023-03-17 19:54:21.8454 Info Copied oldtoonsworld.yml -2023-03-17 19:54:21.8460 Info Attempting to copy onejav.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/onejav.yml to destination: /app/Jackett/Definitions/onejav.yml -2023-03-17 19:54:21.8469 Info Copied onejav.yml -2023-03-17 19:54:21.8469 Info Attempting to copy opencd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/opencd.yml to destination: /app/Jackett/Definitions/opencd.yml -2023-03-17 19:54:21.8485 Info Copied opencd.yml -2023-03-17 19:54:21.8490 Info Attempting to copy oshenpt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/oshenpt.yml to destination: /app/Jackett/Definitions/oshenpt.yml -2023-03-17 19:54:21.8500 Info Copied oshenpt.yml -2023-03-17 19:54:21.8500 Info Attempting to copy ourbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ourbits.yml to destination: /app/Jackett/Definitions/ourbits.yml -2023-03-17 19:54:21.8513 Info Copied ourbits.yml -2023-03-17 19:54:21.8518 Info Attempting to copy p2pbg.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/p2pbg.yml to destination: /app/Jackett/Definitions/p2pbg.yml -2023-03-17 19:54:21.8529 Info Copied p2pbg.yml -2023-03-17 19:54:21.8529 Info Attempting to copy parnuxi.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/parnuxi.yml to destination: /app/Jackett/Definitions/parnuxi.yml -2023-03-17 19:54:21.8628 Info Copied parnuxi.yml -2023-03-17 19:54:21.8628 Info Attempting to copy partis.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/partis.yml to destination: /app/Jackett/Definitions/partis.yml -2023-03-17 19:54:21.8641 Info Copied partis.yml -2023-03-17 19:54:21.8641 Info Attempting to copy pctorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pctorrent.yml to destination: /app/Jackett/Definitions/pctorrent.yml -2023-03-17 19:54:21.8654 Info Copied pctorrent.yml -2023-03-17 19:54:21.8658 Info Attempting to copy peeratiko.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/peeratiko.yml to destination: /app/Jackett/Definitions/peeratiko.yml -2023-03-17 19:54:21.8668 Info Copied peeratiko.yml -2023-03-17 19:54:21.8668 Info Attempting to copy peersfm.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/peersfm.yml to destination: /app/Jackett/Definitions/peersfm.yml -2023-03-17 19:54:21.8681 Info Copied peersfm.yml -2023-03-17 19:54:21.8681 Info Attempting to copy pier720.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pier720.yml to destination: /app/Jackett/Definitions/pier720.yml -2023-03-17 19:54:21.8694 Info Copied pier720.yml -2023-03-17 19:54:21.8697 Info Attempting to copy pignetwork.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pignetwork.yml to destination: /app/Jackett/Definitions/pignetwork.yml -2023-03-17 19:54:21.8707 Info Copied pignetwork.yml -2023-03-17 19:54:21.8707 Info Attempting to copy piratbit.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/piratbit.yml to destination: /app/Jackett/Definitions/piratbit.yml -2023-03-17 19:54:21.8721 Info Copied piratbit.yml -2023-03-17 19:54:21.8721 Info Attempting to copy piratbitl.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/piratbitl.yml to destination: /app/Jackett/Definitions/piratbitl.yml -2023-03-17 19:54:21.8736 Info Copied piratbitl.yml -2023-03-17 19:54:21.8741 Info Attempting to copy pixelcove.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pixelcove.yml to destination: /app/Jackett/Definitions/pixelcove.yml -2023-03-17 19:54:21.8750 Info Copied pixelcove.yml -2023-03-17 19:54:21.8750 Info Attempting to copy pixelcove2fa.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pixelcove2fa.yml to destination: /app/Jackett/Definitions/pixelcove2fa.yml -2023-03-17 19:54:21.8763 Info Copied pixelcove2fa.yml -2023-03-17 19:54:21.8763 Info Attempting to copy polishsource.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/polishsource.yml to destination: /app/Jackett/Definitions/polishsource.yml -2023-03-17 19:54:21.8776 Info Copied polishsource.yml -2023-03-17 19:54:21.8780 Info Attempting to copy polishtracker-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/polishtracker-api.yml to destination: /app/Jackett/Definitions/polishtracker-api.yml -2023-03-17 19:54:21.8789 Info Copied polishtracker-api.yml -2023-03-17 19:54:21.8789 Info Attempting to copy pornbay.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pornbay.yml to destination: /app/Jackett/Definitions/pornbay.yml -2023-03-17 19:54:21.8801 Info Copied pornbay.yml -2023-03-17 19:54:21.8801 Info Attempting to copy pornoslab.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pornoslab.yml to destination: /app/Jackett/Definitions/pornoslab.yml -2023-03-17 19:54:21.8814 Info Copied pornoslab.yml -2023-03-17 19:54:21.8818 Info Attempting to copy pornotorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pornotorrent.yml to destination: /app/Jackett/Definitions/pornotorrent.yml -2023-03-17 19:54:21.8827 Info Copied pornotorrent.yml -2023-03-17 19:54:21.8827 Info Attempting to copy portugas-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/portugas-api.yml to destination: /app/Jackett/Definitions/portugas-api.yml -2023-03-17 19:54:21.8840 Info Copied portugas-api.yml -2023-03-17 19:54:21.8840 Info Attempting to copy potuk.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/potuk.yml to destination: /app/Jackett/Definitions/potuk.yml -2023-03-17 19:54:21.8853 Info Copied potuk.yml -2023-03-17 19:54:21.8853 Info Attempting to copy proaudiotorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/proaudiotorrents.yml to destination: /app/Jackett/Definitions/proaudiotorrents.yml -2023-03-17 19:54:21.8865 Info Copied proaudiotorrents.yml -2023-03-17 19:54:21.8869 Info Attempting to copy proporno.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/proporno.yml to destination: /app/Jackett/Definitions/proporno.yml -2023-03-17 19:54:21.8879 Info Copied proporno.yml -2023-03-17 19:54:21.8879 Info Attempting to copy ptchina.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ptchina.yml to destination: /app/Jackett/Definitions/ptchina.yml -2023-03-17 19:54:21.8892 Info Copied ptchina.yml -2023-03-17 19:54:21.8892 Info Attempting to copy pterclub.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pterclub.yml to destination: /app/Jackett/Definitions/pterclub.yml -2023-03-17 19:54:21.8906 Info Copied pterclub.yml -2023-03-17 19:54:21.8910 Info Attempting to copy ptfiles.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ptfiles.yml to destination: /app/Jackett/Definitions/ptfiles.yml -2023-03-17 19:54:21.8919 Info Copied ptfiles.yml -2023-03-17 19:54:21.8919 Info Attempting to copy pthome.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pthome.yml to destination: /app/Jackett/Definitions/pthome.yml -2023-03-17 19:54:21.8932 Info Copied pthome.yml -2023-03-17 19:54:21.8932 Info Attempting to copy ptmsg.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ptmsg.yml to destination: /app/Jackett/Definitions/ptmsg.yml -2023-03-17 19:54:21.8945 Info Copied ptmsg.yml -2023-03-17 19:54:21.8949 Info Attempting to copy ptsbao.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ptsbao.yml to destination: /app/Jackett/Definitions/ptsbao.yml -2023-03-17 19:54:21.8960 Info Copied ptsbao.yml -2023-03-17 19:54:21.8960 Info Attempting to copy pttime.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pttime.yml to destination: /app/Jackett/Definitions/pttime.yml -2023-03-17 19:54:21.8972 Info Copied pttime.yml -2023-03-17 19:54:21.8972 Info Attempting to copy punkshorror.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/punkshorror.yml to destination: /app/Jackett/Definitions/punkshorror.yml -2023-03-17 19:54:21.8986 Info Copied punkshorror.yml -2023-03-17 19:54:21.8989 Info Attempting to copy puntotorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/puntotorrent.yml to destination: /app/Jackett/Definitions/puntotorrent.yml -2023-03-17 19:54:21.8989 Info Copied puntotorrent.yml -2023-03-17 19:54:21.8989 Info Attempting to copy pussytorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pussytorrents.yml to destination: /app/Jackett/Definitions/pussytorrents.yml -2023-03-17 19:54:21.8998 Info Copied pussytorrents.yml -2023-03-17 19:54:21.8998 Info Attempting to copy putao.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/putao.yml to destination: /app/Jackett/Definitions/putao.yml -2023-03-17 19:54:21.8998 Info Copied putao.yml -2023-03-17 19:54:21.8998 Info Attempting to copy puurhollands.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/puurhollands.yml to destination: /app/Jackett/Definitions/puurhollands.yml -2023-03-17 19:54:21.9009 Info Copied puurhollands.yml -2023-03-17 19:54:21.9009 Info Attempting to copy pwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/pwtorrents.yml to destination: /app/Jackett/Definitions/pwtorrents.yml -2023-03-17 19:54:21.9009 Info Copied pwtorrents.yml -2023-03-17 19:54:21.9009 Info Attempting to copy r3vwtf.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/r3vwtf.yml to destination: /app/Jackett/Definitions/r3vwtf.yml -2023-03-17 19:54:21.9019 Info Copied r3vwtf.yml -2023-03-17 19:54:21.9019 Info Attempting to copy racing4everyone-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/racing4everyone-api.yml to destination: /app/Jackett/Definitions/racing4everyone-api.yml -2023-03-17 19:54:21.9019 Info Copied racing4everyone-api.yml -2023-03-17 19:54:21.9019 Info Attempting to copy racingforme.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/racingforme.yml to destination: /app/Jackett/Definitions/racingforme.yml -2023-03-17 19:54:21.9030 Info Copied racingforme.yml -2023-03-17 19:54:21.9030 Info Attempting to copy rainbowtracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rainbowtracker.yml to destination: /app/Jackett/Definitions/rainbowtracker.yml -2023-03-17 19:54:21.9030 Info Copied rainbowtracker.yml -2023-03-17 19:54:21.9036 Info Attempting to copy rapidzona.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rapidzona.yml to destination: /app/Jackett/Definitions/rapidzona.yml -2023-03-17 19:54:21.9036 Info Copied rapidzona.yml -2023-03-17 19:54:21.9036 Info Attempting to copy redbits-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/redbits-api.yml to destination: /app/Jackett/Definitions/redbits-api.yml -2023-03-17 19:54:21.9036 Info Copied redbits-api.yml -2023-03-17 19:54:21.9047 Info Attempting to copy redstartorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/redstartorrent.yml to destination: /app/Jackett/Definitions/redstartorrent.yml -2023-03-17 19:54:21.9047 Info Copied redstartorrent.yml -2023-03-17 19:54:21.9047 Info Attempting to copy reelflix-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/reelflix-api.yml to destination: /app/Jackett/Definitions/reelflix-api.yml -2023-03-17 19:54:21.9047 Info Copied reelflix-api.yml -2023-03-17 19:54:21.9057 Info Attempting to copy resurrectthenet.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/resurrectthenet.yml to destination: /app/Jackett/Definitions/resurrectthenet.yml -2023-03-17 19:54:21.9057 Info Copied resurrectthenet.yml -2023-03-17 19:54:21.9057 Info Attempting to copy rgfootball.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rgfootball.yml to destination: /app/Jackett/Definitions/rgfootball.yml -2023-03-17 19:54:21.9067 Info Copied rgfootball.yml -2023-03-17 19:54:21.9067 Info Attempting to copy rintor.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rintor.yml to destination: /app/Jackett/Definitions/rintor.yml -2023-03-17 19:54:21.9067 Info Copied rintor.yml -2023-03-17 19:54:21.9067 Info Attempting to copy rintornet.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rintornet.yml to destination: /app/Jackett/Definitions/rintornet.yml -2023-03-17 19:54:21.9078 Info Copied rintornet.yml -2023-03-17 19:54:21.9078 Info Attempting to copy riperam.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/riperam.yml to destination: /app/Jackett/Definitions/riperam.yml -2023-03-17 19:54:21.9078 Info Copied riperam.yml -2023-03-17 19:54:21.9078 Info Attempting to copy rockbox.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rockbox.yml to destination: /app/Jackett/Definitions/rockbox.yml -2023-03-17 19:54:21.9089 Info Copied rockbox.yml -2023-03-17 19:54:21.9089 Info Attempting to copy romanianmetaltorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/romanianmetaltorrents.yml to destination: /app/Jackett/Definitions/romanianmetaltorrents.yml -2023-03-17 19:54:21.9089 Info Copied romanianmetaltorrents.yml -2023-03-17 19:54:21.9089 Info Attempting to copy rptorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rptorrents.yml to destination: /app/Jackett/Definitions/rptorrents.yml -2023-03-17 19:54:21.9100 Info Copied rptorrents.yml -2023-03-17 19:54:21.9100 Info Attempting to copy rudub.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rudub.yml to destination: /app/Jackett/Definitions/rudub.yml -2023-03-17 19:54:21.9100 Info Copied rudub.yml -2023-03-17 19:54:21.9100 Info Attempting to copy rus-media.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rus-media.yml to destination: /app/Jackett/Definitions/rus-media.yml -2023-03-17 19:54:21.9110 Info Copied rus-media.yml -2023-03-17 19:54:21.9110 Info Attempting to copy rustorka.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rustorka.yml to destination: /app/Jackett/Definitions/rustorka.yml -2023-03-17 19:54:21.9116 Info Copied rustorka.yml -2023-03-17 19:54:21.9116 Info Attempting to copy rutor.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rutor.yml to destination: /app/Jackett/Definitions/rutor.yml -2023-03-17 19:54:21.9116 Info Copied rutor.yml -2023-03-17 19:54:21.9116 Info Attempting to copy rutracker-ru.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/rutracker-ru.yml to destination: /app/Jackett/Definitions/rutracker-ru.yml -2023-03-17 19:54:21.9127 Info Copied rutracker-ru.yml -2023-03-17 19:54:21.9127 Info Attempting to copy satclubbing.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/satclubbing.yml to destination: /app/Jackett/Definitions/satclubbing.yml -2023-03-17 19:54:21.9127 Info Copied satclubbing.yml -2023-03-17 19:54:21.9127 Info Attempting to copy scenerush.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/scenerush.yml to destination: /app/Jackett/Definitions/scenerush.yml -2023-03-17 19:54:21.9138 Info Copied scenerush.yml -2023-03-17 19:54:21.9138 Info Attempting to copy sdbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sdbits.yml to destination: /app/Jackett/Definitions/sdbits.yml -2023-03-17 19:54:21.9138 Info Copied sdbits.yml -2023-03-17 19:54:21.9138 Info Attempting to copy seedfile.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/seedfile.yml to destination: /app/Jackett/Definitions/seedfile.yml -2023-03-17 19:54:21.9148 Info Copied seedfile.yml -2023-03-17 19:54:21.9148 Info Attempting to copy seedoff.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/seedoff.yml to destination: /app/Jackett/Definitions/seedoff.yml -2023-03-17 19:54:21.9148 Info Copied seedoff.yml -2023-03-17 19:54:21.9148 Info Attempting to copy selezen.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/selezen.yml to destination: /app/Jackett/Definitions/selezen.yml -2023-03-17 19:54:21.9158 Info Copied selezen.yml -2023-03-17 19:54:21.9158 Info Attempting to copy sexypics.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sexypics.yml to destination: /app/Jackett/Definitions/sexypics.yml -2023-03-17 19:54:21.9158 Info Copied sexypics.yml -2023-03-17 19:54:21.9158 Info Attempting to copy shanaproject.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/shanaproject.yml to destination: /app/Jackett/Definitions/shanaproject.yml -2023-03-17 19:54:21.9169 Info Copied shanaproject.yml -2023-03-17 19:54:21.9169 Info Attempting to copy shareisland-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/shareisland-api.yml to destination: /app/Jackett/Definitions/shareisland-api.yml -2023-03-17 19:54:21.9169 Info Copied shareisland-api.yml -2023-03-17 19:54:21.9169 Info Attempting to copy sharewood.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sharewood.yml to destination: /app/Jackett/Definitions/sharewood.yml -2023-03-17 19:54:21.9179 Info Copied sharewood.yml -2023-03-17 19:54:21.9179 Info Attempting to copy sharkpt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sharkpt.yml to destination: /app/Jackett/Definitions/sharkpt.yml -2023-03-17 19:54:21.9179 Info Copied sharkpt.yml -2023-03-17 19:54:21.9179 Info Attempting to copy showrss.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/showrss.yml to destination: /app/Jackett/Definitions/showrss.yml -2023-03-17 19:54:21.9190 Info Copied showrss.yml -2023-03-17 19:54:21.9190 Info Attempting to copy siambit.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/siambit.yml to destination: /app/Jackett/Definitions/siambit.yml -2023-03-17 19:54:21.9190 Info Copied siambit.yml -2023-03-17 19:54:21.9196 Info Attempting to copy skipthecommercials-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/skipthecommercials-api.yml to destination: /app/Jackett/Definitions/skipthecommercials-api.yml -2023-03-17 19:54:21.9196 Info Copied skipthecommercials-api.yml -2023-03-17 19:54:21.9196 Info Attempting to copy skipthetrailers.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/skipthetrailers.yml to destination: /app/Jackett/Definitions/skipthetrailers.yml -2023-03-17 19:54:21.9196 Info Copied skipthetrailers.yml -2023-03-17 19:54:21.9207 Info Attempting to copy sktorrent-org.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sktorrent-org.yml to destination: /app/Jackett/Definitions/sktorrent-org.yml -2023-03-17 19:54:21.9207 Info Copied sktorrent-org.yml -2023-03-17 19:54:21.9207 Info Attempting to copy sktorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sktorrent.yml to destination: /app/Jackett/Definitions/sktorrent.yml -2023-03-17 19:54:21.9216 Info Copied sktorrent.yml -2023-03-17 19:54:21.9216 Info Attempting to copy slosoul.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/slosoul.yml to destination: /app/Jackett/Definitions/slosoul.yml -2023-03-17 19:54:21.9216 Info Copied slosoul.yml -2023-03-17 19:54:21.9216 Info Attempting to copy snowpt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/snowpt.yml to destination: /app/Jackett/Definitions/snowpt.yml -2023-03-17 19:54:21.9227 Info Copied snowpt.yml -2023-03-17 19:54:21.9227 Info Attempting to copy solidtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/solidtorrents.yml to destination: /app/Jackett/Definitions/solidtorrents.yml -2023-03-17 19:54:21.9227 Info Copied solidtorrents.yml -2023-03-17 19:54:21.9227 Info Attempting to copy sosulki.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sosulki.yml to destination: /app/Jackett/Definitions/sosulki.yml -2023-03-17 19:54:21.9238 Info Copied sosulki.yml -2023-03-17 19:54:21.9238 Info Attempting to copy soulvoice.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/soulvoice.yml to destination: /app/Jackett/Definitions/soulvoice.yml -2023-03-17 19:54:21.9238 Info Copied soulvoice.yml -2023-03-17 19:54:21.9238 Info Attempting to copy speedmasterhd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/speedmasterhd.yml to destination: /app/Jackett/Definitions/speedmasterhd.yml -2023-03-17 19:54:21.9248 Info Copied speedmasterhd.yml -2023-03-17 19:54:21.9248 Info Attempting to copy speedtorrentreloaded.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/speedtorrentreloaded.yml to destination: /app/Jackett/Definitions/speedtorrentreloaded.yml -2023-03-17 19:54:21.9248 Info Copied speedtorrentreloaded.yml -2023-03-17 19:54:21.9248 Info Attempting to copy spidertk.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/spidertk.yml to destination: /app/Jackett/Definitions/spidertk.yml -2023-03-17 19:54:21.9259 Info Copied spidertk.yml -2023-03-17 19:54:21.9259 Info Attempting to copy spiritofrevolution.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/spiritofrevolution.yml to destination: /app/Jackett/Definitions/spiritofrevolution.yml -2023-03-17 19:54:21.9259 Info Copied spiritofrevolution.yml -2023-03-17 19:54:21.9259 Info Attempting to copy sporthd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sporthd.yml to destination: /app/Jackett/Definitions/sporthd.yml -2023-03-17 19:54:21.9270 Info Copied sporthd.yml -2023-03-17 19:54:21.9270 Info Attempting to copy sportscult.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sportscult.yml to destination: /app/Jackett/Definitions/sportscult.yml -2023-03-17 19:54:21.9270 Info Copied sportscult.yml -2023-03-17 19:54:21.9277 Info Attempting to copy springsunday.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/springsunday.yml to destination: /app/Jackett/Definitions/springsunday.yml -2023-03-17 19:54:21.9277 Info Copied springsunday.yml -2023-03-17 19:54:21.9277 Info Attempting to copy sugoimusic.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sugoimusic.yml to destination: /app/Jackett/Definitions/sugoimusic.yml -2023-03-17 19:54:21.9277 Info Copied sugoimusic.yml -2023-03-17 19:54:21.9287 Info Attempting to copy sukebeinyaasi.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/sukebeinyaasi.yml to destination: /app/Jackett/Definitions/sukebeinyaasi.yml -2023-03-17 19:54:21.9287 Info Copied sukebeinyaasi.yml -2023-03-17 19:54:21.9287 Info Attempting to copy superbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/superbits.yml to destination: /app/Jackett/Definitions/superbits.yml -2023-03-17 19:54:21.9296 Info Copied superbits.yml -2023-03-17 19:54:21.9296 Info Attempting to copy swarmazon-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/swarmazon-api.yml to destination: /app/Jackett/Definitions/swarmazon-api.yml -2023-03-17 19:54:21.9296 Info Copied swarmazon-api.yml -2023-03-17 19:54:21.9296 Info Attempting to copy tapochek.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tapochek.yml to destination: /app/Jackett/Definitions/tapochek.yml -2023-03-17 19:54:21.9308 Info Copied tapochek.yml -2023-03-17 19:54:21.9308 Info Attempting to copy tasmanit.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tasmanit.yml to destination: /app/Jackett/Definitions/tasmanit.yml -2023-03-17 19:54:21.9308 Info Copied tasmanit.yml -2023-03-17 19:54:21.9308 Info Attempting to copy teamctgame.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/teamctgame.yml to destination: /app/Jackett/Definitions/teamctgame.yml -2023-03-17 19:54:21.9318 Info Copied teamctgame.yml -2023-03-17 19:54:21.9318 Info Attempting to copy teamhd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/teamhd.yml to destination: /app/Jackett/Definitions/teamhd.yml -2023-03-17 19:54:21.9318 Info Copied teamhd.yml -2023-03-17 19:54:21.9318 Info Attempting to copy teamos.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/teamos.yml to destination: /app/Jackett/Definitions/teamos.yml -2023-03-17 19:54:21.9328 Info Copied teamos.yml -2023-03-17 19:54:21.9328 Info Attempting to copy tekno3d.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tekno3d.yml to destination: /app/Jackett/Definitions/tekno3d.yml -2023-03-17 19:54:21.9328 Info Copied tekno3d.yml -2023-03-17 19:54:21.9328 Info Attempting to copy tellytorrent-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tellytorrent-api.yml to destination: /app/Jackett/Definitions/tellytorrent-api.yml -2023-03-17 19:54:21.9339 Info Copied tellytorrent-api.yml -2023-03-17 19:54:21.9339 Info Attempting to copy teracod.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/teracod.yml to destination: /app/Jackett/Definitions/teracod.yml -2023-03-17 19:54:21.9339 Info Copied teracod.yml -2023-03-17 19:54:21.9339 Info Attempting to copy the-crazy-ones.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/the-crazy-ones.yml to destination: /app/Jackett/Definitions/the-crazy-ones.yml -2023-03-17 19:54:21.9349 Info Copied the-crazy-ones.yml -2023-03-17 19:54:21.9349 Info Attempting to copy thedarkcommunity-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/thedarkcommunity-api.yml to destination: /app/Jackett/Definitions/thedarkcommunity-api.yml -2023-03-17 19:54:21.9349 Info Copied thedarkcommunity-api.yml -2023-03-17 19:54:21.9356 Info Attempting to copy theempire.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/theempire.yml to destination: /app/Jackett/Definitions/theempire.yml -2023-03-17 19:54:21.9356 Info Copied theempire.yml -2023-03-17 19:54:21.9356 Info Attempting to copy thefallingangels.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/thefallingangels.yml to destination: /app/Jackett/Definitions/thefallingangels.yml -2023-03-17 19:54:21.9356 Info Copied thefallingangels.yml -2023-03-17 19:54:21.9368 Info Attempting to copy thegeeks.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/thegeeks.yml to destination: /app/Jackett/Definitions/thegeeks.yml -2023-03-17 19:54:21.9368 Info Copied thegeeks.yml -2023-03-17 19:54:21.9368 Info Attempting to copy theleachzone.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/theleachzone.yml to destination: /app/Jackett/Definitions/theleachzone.yml -2023-03-17 19:54:21.9377 Info Copied theleachzone.yml -2023-03-17 19:54:21.9377 Info Attempting to copy themixingbowl.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/themixingbowl.yml to destination: /app/Jackett/Definitions/themixingbowl.yml -2023-03-17 19:54:21.9377 Info Copied themixingbowl.yml -2023-03-17 19:54:21.9377 Info Attempting to copy thenewfun.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/thenewfun.yml to destination: /app/Jackett/Definitions/thenewfun.yml -2023-03-17 19:54:21.9388 Info Copied thenewfun.yml -2023-03-17 19:54:21.9388 Info Attempting to copy theoccult.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/theoccult.yml to destination: /app/Jackett/Definitions/theoccult.yml -2023-03-17 19:54:21.9388 Info Copied theoccult.yml -2023-03-17 19:54:21.9388 Info Attempting to copy theoldschool-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/theoldschool-api.yml to destination: /app/Jackett/Definitions/theoldschool-api.yml -2023-03-17 19:54:21.9406 Info Copied theoldschool-api.yml -2023-03-17 19:54:21.9408 Info Attempting to copy thepiratebay.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/thepiratebay.yml to destination: /app/Jackett/Definitions/thepiratebay.yml -2023-03-17 19:54:21.9408 Info Copied thepiratebay.yml -2023-03-17 19:54:21.9408 Info Attempting to copy theplace.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/theplace.yml to destination: /app/Jackett/Definitions/theplace.yml -2023-03-17 19:54:21.9418 Info Copied theplace.yml -2023-03-17 19:54:21.9418 Info Attempting to copy thesceneplace.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/thesceneplace.yml to destination: /app/Jackett/Definitions/thesceneplace.yml -2023-03-17 19:54:21.9418 Info Copied thesceneplace.yml -2023-03-17 19:54:21.9418 Info Attempting to copy theshinning-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/theshinning-api.yml to destination: /app/Jackett/Definitions/theshinning-api.yml -2023-03-17 19:54:21.9428 Info Copied theshinning-api.yml -2023-03-17 19:54:21.9428 Info Attempting to copy theshow.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/theshow.yml to destination: /app/Jackett/Definitions/theshow.yml -2023-03-17 19:54:21.9428 Info Copied theshow.yml -2023-03-17 19:54:21.9428 Info Attempting to copy thevault.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/thevault.yml to destination: /app/Jackett/Definitions/thevault.yml -2023-03-17 19:54:21.9447 Info Copied thevault.yml -2023-03-17 19:54:21.9447 Info Attempting to copy tjupt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tjupt.yml to destination: /app/Jackett/Definitions/tjupt.yml -2023-03-17 19:54:21.9447 Info Copied tjupt.yml -2023-03-17 19:54:21.9447 Info Attempting to copy tlfbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tlfbits.yml to destination: /app/Jackett/Definitions/tlfbits.yml -2023-03-17 19:54:21.9458 Info Copied tlfbits.yml -2023-03-17 19:54:21.9458 Info Attempting to copy tmghub.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tmghub.yml to destination: /app/Jackett/Definitions/tmghub.yml -2023-03-17 19:54:21.9458 Info Copied tmghub.yml -2023-03-17 19:54:21.9458 Info Attempting to copy tokyotosho.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tokyotosho.yml to destination: /app/Jackett/Definitions/tokyotosho.yml -2023-03-17 19:54:21.9469 Info Copied tokyotosho.yml -2023-03-17 19:54:21.9469 Info Attempting to copy torlock.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torlock.yml to destination: /app/Jackett/Definitions/torlock.yml -2023-03-17 19:54:21.9469 Info Copied torlock.yml -2023-03-17 19:54:21.9469 Info Attempting to copy tornado.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tornado.yml to destination: /app/Jackett/Definitions/tornado.yml -2023-03-17 19:54:21.9479 Info Copied tornado.yml -2023-03-17 19:54:21.9479 Info Attempting to copy torrent-explosiv.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrent-explosiv.yml to destination: /app/Jackett/Definitions/torrent-explosiv.yml -2023-03-17 19:54:21.9479 Info Copied torrent-explosiv.yml -2023-03-17 19:54:21.9479 Info Attempting to copy torrent-pirat.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrent-pirat.yml to destination: /app/Jackett/Definitions/torrent-pirat.yml -2023-03-17 19:54:21.9490 Info Copied torrent-pirat.yml -2023-03-17 19:54:21.9490 Info Attempting to copy torrent-turk.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrent-turk.yml to destination: /app/Jackett/Definitions/torrent-turk.yml -2023-03-17 19:54:21.9490 Info Copied torrent-turk.yml -2023-03-17 19:54:21.9497 Info Attempting to copy torrent9.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrent9.yml to destination: /app/Jackett/Definitions/torrent9.yml -2023-03-17 19:54:21.9497 Info Copied torrent9.yml -2023-03-17 19:54:21.9497 Info Attempting to copy torrent911.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrent911.yml to destination: /app/Jackett/Definitions/torrent911.yml -2023-03-17 19:54:21.9507 Info Copied torrent911.yml -2023-03-17 19:54:21.9507 Info Attempting to copy torrent9clone.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrent9clone.yml to destination: /app/Jackett/Definitions/torrent9clone.yml -2023-03-17 19:54:21.9507 Info Copied torrent9clone.yml -2023-03-17 19:54:21.9507 Info Attempting to copy torrentbd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentbd.yml to destination: /app/Jackett/Definitions/torrentbd.yml -2023-03-17 19:54:21.9518 Info Copied torrentbd.yml -2023-03-17 19:54:21.9518 Info Attempting to copy torrentby.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentby.yml to destination: /app/Jackett/Definitions/torrentby.yml -2023-03-17 19:54:21.9530 Info Copied torrentby.yml -2023-03-17 19:54:21.9530 Info Attempting to copy torrentccf.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentccf.yml to destination: /app/Jackett/Definitions/torrentccf.yml -2023-03-17 19:54:21.9530 Info Copied torrentccf.yml -2023-03-17 19:54:21.9537 Info Attempting to copy torrentcore.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentcore.yml to destination: /app/Jackett/Definitions/torrentcore.yml -2023-03-17 19:54:21.9537 Info Copied torrentcore.yml -2023-03-17 19:54:21.9537 Info Attempting to copy torrentdownload.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentdownload.yml to destination: /app/Jackett/Definitions/torrentdownload.yml -2023-03-17 19:54:21.9547 Info Copied torrentdownload.yml -2023-03-17 19:54:21.9547 Info Attempting to copy torrentdownloads.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentdownloads.yml to destination: /app/Jackett/Definitions/torrentdownloads.yml -2023-03-17 19:54:21.9547 Info Copied torrentdownloads.yml -2023-03-17 19:54:21.9547 Info Attempting to copy torrentfunk.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentfunk.yml to destination: /app/Jackett/Definitions/torrentfunk.yml -2023-03-17 19:54:21.9558 Info Copied torrentfunk.yml -2023-03-17 19:54:21.9558 Info Attempting to copy torrentgalaxy.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentgalaxy.yml to destination: /app/Jackett/Definitions/torrentgalaxy.yml -2023-03-17 19:54:21.9558 Info Copied torrentgalaxy.yml -2023-03-17 19:54:21.9558 Info Attempting to copy torrenthr.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrenthr.yml to destination: /app/Jackett/Definitions/torrenthr.yml -2023-03-17 19:54:21.9569 Info Copied torrenthr.yml -2023-03-17 19:54:21.9569 Info Attempting to copy torrenting.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrenting.yml to destination: /app/Jackett/Definitions/torrenting.yml -2023-03-17 19:54:21.9569 Info Copied torrenting.yml -2023-03-17 19:54:21.9569 Info Attempting to copy torrentkitty.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentkitty.yml to destination: /app/Jackett/Definitions/torrentkitty.yml -2023-03-17 19:54:21.9580 Info Copied torrentkitty.yml -2023-03-17 19:54:21.9580 Info Attempting to copy torrentland.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentland.yml to destination: /app/Jackett/Definitions/torrentland.yml -2023-03-17 19:54:21.9580 Info Copied torrentland.yml -2023-03-17 19:54:21.9587 Info Attempting to copy torrentleech-pl.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentleech-pl.yml to destination: /app/Jackett/Definitions/torrentleech-pl.yml -2023-03-17 19:54:21.9587 Info Copied torrentleech-pl.yml -2023-03-17 19:54:21.9587 Info Attempting to copy torrentleech.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentleech.yml to destination: /app/Jackett/Definitions/torrentleech.yml -2023-03-17 19:54:21.9587 Info Copied torrentleech.yml -2023-03-17 19:54:21.9597 Info Attempting to copy torrentlt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentlt.yml to destination: /app/Jackett/Definitions/torrentlt.yml -2023-03-17 19:54:21.9597 Info Copied torrentlt.yml -2023-03-17 19:54:21.9597 Info Attempting to copy torrentmasters.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentmasters.yml to destination: /app/Jackett/Definitions/torrentmasters.yml -2023-03-17 19:54:21.9597 Info Copied torrentmasters.yml -2023-03-17 19:54:21.9608 Info Attempting to copy torrentoyunindir.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentoyunindir.yml to destination: /app/Jackett/Definitions/torrentoyunindir.yml -2023-03-17 19:54:21.9608 Info Copied torrentoyunindir.yml -2023-03-17 19:54:21.9608 Info Attempting to copy torrentproject2.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentproject2.yml to destination: /app/Jackett/Definitions/torrentproject2.yml -2023-03-17 19:54:21.9617 Info Copied torrentproject2.yml -2023-03-17 19:54:21.9617 Info Attempting to copy torrentqq.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentqq.yml to destination: /app/Jackett/Definitions/torrentqq.yml -2023-03-17 19:54:21.9617 Info Copied torrentqq.yml -2023-03-17 19:54:21.9617 Info Attempting to copy torrentsectorcrew.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentsectorcrew.yml to destination: /app/Jackett/Definitions/torrentsectorcrew.yml -2023-03-17 19:54:21.9628 Info Copied torrentsectorcrew.yml -2023-03-17 19:54:21.9628 Info Attempting to copy torrentseeds-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentseeds-api.yml to destination: /app/Jackett/Definitions/torrentseeds-api.yml -2023-03-17 19:54:21.9628 Info Copied torrentseeds-api.yml -2023-03-17 19:54:21.9628 Info Attempting to copy torrentsir.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentsir.yml to destination: /app/Jackett/Definitions/torrentsir.yml -2023-03-17 19:54:21.9638 Info Copied torrentsir.yml -2023-03-17 19:54:21.9638 Info Attempting to copy torrentslocal.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentslocal.yml to destination: /app/Jackett/Definitions/torrentslocal.yml -2023-03-17 19:54:21.9638 Info Copied torrentslocal.yml -2023-03-17 19:54:21.9638 Info Attempting to copy torrentv.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentv.yml to destination: /app/Jackett/Definitions/torrentv.yml -2023-03-17 19:54:21.9649 Info Copied torrentv.yml -2023-03-17 19:54:21.9649 Info Attempting to copy torrentview.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentview.yml to destination: /app/Jackett/Definitions/torrentview.yml -2023-03-17 19:54:21.9649 Info Copied torrentview.yml -2023-03-17 19:54:21.9649 Info Attempting to copy torrentwhiz.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentwhiz.yml to destination: /app/Jackett/Definitions/torrentwhiz.yml -2023-03-17 19:54:21.9660 Info Copied torrentwhiz.yml -2023-03-17 19:54:21.9660 Info Attempting to copy torrentz2eu.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentz2eu.yml to destination: /app/Jackett/Definitions/torrentz2eu.yml -2023-03-17 19:54:21.9660 Info Copied torrentz2eu.yml -2023-03-17 19:54:21.9668 Info Attempting to copy torrentz2nz.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/torrentz2nz.yml to destination: /app/Jackett/Definitions/torrentz2nz.yml -2023-03-17 19:54:21.9668 Info Copied torrentz2nz.yml -2023-03-17 19:54:21.9668 Info Attempting to copy totallykids.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/totallykids.yml to destination: /app/Jackett/Definitions/totallykids.yml -2023-03-17 19:54:21.9678 Info Copied totallykids.yml -2023-03-17 19:54:21.9678 Info Attempting to copy totheglory.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/totheglory.yml to destination: /app/Jackett/Definitions/totheglory.yml -2023-03-17 19:54:21.9678 Info Copied totheglory.yml -2023-03-17 19:54:21.9678 Info Attempting to copy totheglorycookie.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/totheglorycookie.yml to destination: /app/Jackett/Definitions/totheglorycookie.yml -2023-03-17 19:54:21.9688 Info Copied totheglorycookie.yml -2023-03-17 19:54:21.9688 Info Attempting to copy traht.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/traht.yml to destination: /app/Jackett/Definitions/traht.yml -2023-03-17 19:54:21.9688 Info Copied traht.yml -2023-03-17 19:54:21.9688 Info Attempting to copy trancetraffic.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/trancetraffic.yml to destination: /app/Jackett/Definitions/trancetraffic.yml -2023-03-17 19:54:21.9699 Info Copied trancetraffic.yml -2023-03-17 19:54:21.9699 Info Attempting to copy trezzor.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/trezzor.yml to destination: /app/Jackett/Definitions/trezzor.yml -2023-03-17 19:54:21.9699 Info Copied trezzor.yml -2023-03-17 19:54:21.9706 Info Attempting to copy tribalmixes.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tribalmixes.yml to destination: /app/Jackett/Definitions/tribalmixes.yml -2023-03-17 19:54:21.9706 Info Copied tribalmixes.yml -2023-03-17 19:54:21.9706 Info Attempting to copy trupornolabs.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/trupornolabs.yml to destination: /app/Jackett/Definitions/trupornolabs.yml -2023-03-17 19:54:21.9706 Info Copied trupornolabs.yml -2023-03-17 19:54:21.9717 Info Attempting to copy turkseed.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/turkseed.yml to destination: /app/Jackett/Definitions/turkseed.yml -2023-03-17 19:54:21.9717 Info Copied turkseed.yml -2023-03-17 19:54:21.9717 Info Attempting to copy turktorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/turktorrent.yml to destination: /app/Jackett/Definitions/turktorrent.yml -2023-03-17 19:54:21.9717 Info Copied turktorrent.yml -2023-03-17 19:54:21.9728 Info Attempting to copy tvchaosuk.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tvchaosuk.yml to destination: /app/Jackett/Definitions/tvchaosuk.yml -2023-03-17 19:54:21.9728 Info Copied tvchaosuk.yml -2023-03-17 19:54:21.9728 Info Attempting to copy tvroad.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/tvroad.yml to destination: /app/Jackett/Definitions/tvroad.yml -2023-03-17 19:54:21.9745 Info Copied tvroad.yml -2023-03-17 19:54:21.9747 Info Attempting to copy twilight.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/twilight.yml to destination: /app/Jackett/Definitions/twilight.yml -2023-03-17 19:54:21.9747 Info Copied twilight.yml -2023-03-17 19:54:21.9747 Info Attempting to copy u2.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/u2.yml to destination: /app/Jackett/Definitions/u2.yml -2023-03-17 19:54:21.9747 Info Copied u2.yml -2023-03-17 19:54:21.9758 Info Attempting to copy uhdbits.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/uhdbits.yml to destination: /app/Jackett/Definitions/uhdbits.yml -2023-03-17 19:54:21.9758 Info Copied uhdbits.yml -2023-03-17 19:54:21.9758 Info Attempting to copy uniondht.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/uniondht.yml to destination: /app/Jackett/Definitions/uniondht.yml -2023-03-17 19:54:21.9768 Info Copied uniondht.yml -2023-03-17 19:54:21.9768 Info Attempting to copy unionfansub.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/unionfansub.yml to destination: /app/Jackett/Definitions/unionfansub.yml -2023-03-17 19:54:21.9768 Info Copied unionfansub.yml -2023-03-17 19:54:21.9768 Info Attempting to copy uniongang.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/uniongang.yml to destination: /app/Jackett/Definitions/uniongang.yml -2023-03-17 19:54:21.9778 Info Copied uniongang.yml -2023-03-17 19:54:21.9778 Info Attempting to copy unleashthecartoons.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/unleashthecartoons.yml to destination: /app/Jackett/Definitions/unleashthecartoons.yml -2023-03-17 19:54:21.9778 Info Copied unleashthecartoons.yml -2023-03-17 19:54:21.9778 Info Attempting to copy unlimitz.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/unlimitz.yml to destination: /app/Jackett/Definitions/unlimitz.yml -2023-03-17 19:54:21.9789 Info Copied unlimitz.yml -2023-03-17 19:54:21.9789 Info Attempting to copy vsthouse.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/vsthouse.yml to destination: /app/Jackett/Definitions/vsthouse.yml -2023-03-17 19:54:21.9789 Info Copied vsthouse.yml -2023-03-17 19:54:21.9789 Info Attempting to copy vsttorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/vsttorrents.yml to destination: /app/Jackett/Definitions/vsttorrents.yml -2023-03-17 19:54:21.9800 Info Copied vsttorrents.yml -2023-03-17 19:54:21.9800 Info Attempting to copy vtorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/vtorrent.yml to destination: /app/Jackett/Definitions/vtorrent.yml -2023-03-17 19:54:21.9800 Info Copied vtorrent.yml -2023-03-17 19:54:21.9808 Info Attempting to copy whiteangel.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/whiteangel.yml to destination: /app/Jackett/Definitions/whiteangel.yml -2023-03-17 19:54:21.9808 Info Copied whiteangel.yml -2023-03-17 19:54:21.9808 Info Attempting to copy wihd.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/wihd.yml to destination: /app/Jackett/Definitions/wihd.yml -2023-03-17 19:54:21.9817 Info Copied wihd.yml -2023-03-17 19:54:21.9817 Info Attempting to copy world-of-tomorrow.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/world-of-tomorrow.yml to destination: /app/Jackett/Definitions/world-of-tomorrow.yml -2023-03-17 19:54:21.9817 Info Copied world-of-tomorrow.yml -2023-03-17 19:54:21.9817 Info Attempting to copy x-ite.me.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/x-ite.me.yml to destination: /app/Jackett/Definitions/x-ite.me.yml -2023-03-17 19:54:21.9828 Info Copied x-ite.me.yml -2023-03-17 19:54:21.9828 Info Attempting to copy xbytes2.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xbytes2.yml to destination: /app/Jackett/Definitions/xbytes2.yml -2023-03-17 19:54:21.9828 Info Copied xbytes2.yml -2023-03-17 19:54:21.9828 Info Attempting to copy xthor-api.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xthor-api.yml to destination: /app/Jackett/Definitions/xthor-api.yml -2023-03-17 19:54:21.9839 Info Copied xthor-api.yml -2023-03-17 19:54:21.9839 Info Attempting to copy xtorrenty.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xtorrenty.yml to destination: /app/Jackett/Definitions/xtorrenty.yml -2023-03-17 19:54:21.9839 Info Copied xtorrenty.yml -2023-03-17 19:54:21.9839 Info Attempting to copy xtremebytes.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xtremebytes.yml to destination: /app/Jackett/Definitions/xtremebytes.yml -2023-03-17 19:54:21.9850 Info Copied xtremebytes.yml -2023-03-17 19:54:21.9850 Info Attempting to copy xwtclassics.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xwtclassics.yml to destination: /app/Jackett/Definitions/xwtclassics.yml -2023-03-17 19:54:21.9850 Info Copied xwtclassics.yml -2023-03-17 19:54:21.9857 Info Attempting to copy xwtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xwtorrents.yml to destination: /app/Jackett/Definitions/xwtorrents.yml -2023-03-17 19:54:21.9857 Info Copied xwtorrents.yml -2023-03-17 19:54:21.9857 Info Attempting to copy xxxadulttorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xxxadulttorrent.yml to destination: /app/Jackett/Definitions/xxxadulttorrent.yml -2023-03-17 19:54:21.9867 Info Copied xxxadulttorrent.yml -2023-03-17 19:54:21.9867 Info Attempting to copy xxxtor.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xxxtor.yml to destination: /app/Jackett/Definitions/xxxtor.yml -2023-03-17 19:54:21.9867 Info Copied xxxtor.yml -2023-03-17 19:54:21.9867 Info Attempting to copy xxxtorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/xxxtorrents.yml to destination: /app/Jackett/Definitions/xxxtorrents.yml -2023-03-17 19:54:21.9877 Info Copied xxxtorrents.yml -2023-03-17 19:54:21.9877 Info Attempting to copy ydypt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ydypt.yml to destination: /app/Jackett/Definitions/ydypt.yml -2023-03-17 19:54:21.9877 Info Copied ydypt.yml -2023-03-17 19:54:21.9877 Info Attempting to copy yggcookie.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/yggcookie.yml to destination: /app/Jackett/Definitions/yggcookie.yml -2023-03-17 19:54:21.9889 Info Copied yggcookie.yml -2023-03-17 19:54:21.9889 Info Attempting to copy yggtorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/yggtorrent.yml to destination: /app/Jackett/Definitions/yggtorrent.yml -2023-03-17 19:54:21.9889 Info Copied yggtorrent.yml -2023-03-17 19:54:21.9889 Info Attempting to copy yourbittorrent.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/yourbittorrent.yml to destination: /app/Jackett/Definitions/yourbittorrent.yml -2023-03-17 19:54:21.9900 Info Copied yourbittorrent.yml -2023-03-17 19:54:21.9900 Info Attempting to copy yts.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/yts.yml to destination: /app/Jackett/Definitions/yts.yml -2023-03-17 19:54:21.9900 Info Copied yts.yml -2023-03-17 19:54:21.9907 Info Attempting to copy zamundanet.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/zamundanet.yml to destination: /app/Jackett/Definitions/zamundanet.yml -2023-03-17 19:54:21.9907 Info Copied zamundanet.yml -2023-03-17 19:54:21.9907 Info Attempting to copy zelkaorg.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/zelkaorg.yml to destination: /app/Jackett/Definitions/zelkaorg.yml -2023-03-17 19:54:21.9907 Info Copied zelkaorg.yml -2023-03-17 19:54:21.9918 Info Attempting to copy zetorrents.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/zetorrents.yml to destination: /app/Jackett/Definitions/zetorrents.yml -2023-03-17 19:54:21.9918 Info Copied zetorrents.yml -2023-03-17 19:54:21.9918 Info Attempting to copy zmpt.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/zmpt.yml to destination: /app/Jackett/Definitions/zmpt.yml -2023-03-17 19:54:21.9926 Info Copied zmpt.yml -2023-03-17 19:54:21.9926 Info Attempting to copy zomb.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/zomb.yml to destination: /app/Jackett/Definitions/zomb.yml -2023-03-17 19:54:21.9926 Info Copied zomb.yml -2023-03-17 19:54:21.9926 Info Attempting to copy ztracker.yml from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Definitions/ztracker.yml to destination: /app/Jackett/Definitions/ztracker.yml -2023-03-17 19:54:21.9945 Info Copied ztracker.yml -2023-03-17 19:54:21.9945 Info Attempting to copy FlareSolverrSharp.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/FlareSolverrSharp.dll to destination: /app/Jackett/FlareSolverrSharp.dll -2023-03-17 19:54:21.9945 Info Copied FlareSolverrSharp.dll -2023-03-17 19:54:21.9945 Info Attempting to copy ICSharpCode.SharpZipLib.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/ICSharpCode.SharpZipLib.dll to destination: /app/Jackett/ICSharpCode.SharpZipLib.dll -2023-03-17 19:54:21.9961 Info Copied ICSharpCode.SharpZipLib.dll -2023-03-17 19:54:21.9961 Info Attempting to copy install_service_systemd.sh from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/install_service_systemd.sh to destination: /app/Jackett/install_service_systemd.sh -2023-03-17 19:54:21.9966 Info Copied install_service_systemd.sh -2023-03-17 19:54:21.9966 Info Attempting to copy jackett from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/jackett to destination: /app/Jackett/jackett -2023-03-17 19:54:21.9983 Info Copied jackett -2023-03-17 19:54:21.9983 Info Attempting to copy jackett_launcher.sh from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/jackett_launcher.sh to destination: /app/Jackett/jackett_launcher.sh -2023-03-17 19:54:21.9989 Info Copied jackett_launcher.sh -2023-03-17 19:54:21.9989 Info Attempting to copy Jackett.Common.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Jackett.Common.dll to destination: /app/Jackett/Jackett.Common.dll -2023-03-17 19:54:22.0015 Info Copied Jackett.Common.dll -2023-03-17 19:54:22.0017 Info Attempting to copy Jackett.Common.pdb from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Jackett.Common.pdb to destination: /app/Jackett/Jackett.Common.pdb -2023-03-17 19:54:22.0027 Info Copied Jackett.Common.pdb -2023-03-17 19:54:22.0027 Info Attempting to copy jackett.deps.json from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/jackett.deps.json to destination: /app/Jackett/jackett.deps.json -2023-03-17 19:54:22.0027 Info Copied jackett.deps.json -2023-03-17 19:54:22.0027 Info Attempting to copy jackett.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/jackett.dll to destination: /app/Jackett/jackett.dll -2023-03-17 19:54:22.0046 Info Copied jackett.dll -2023-03-17 19:54:22.0047 Info Attempting to copy jackett.pdb from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/jackett.pdb to destination: /app/Jackett/jackett.pdb -2023-03-17 19:54:22.0047 Info Copied jackett.pdb -2023-03-17 19:54:22.0047 Info Attempting to copy jackett.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/jackett.runtimeconfig.json to destination: /app/Jackett/jackett.runtimeconfig.json -2023-03-17 19:54:22.0058 Info Copied jackett.runtimeconfig.json -2023-03-17 19:54:22.0058 Info Attempting to copy JackettUpdater from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/JackettUpdater to destination: /app/Jackett/JackettUpdater -2023-03-17 19:54:22.0058 Info Copied JackettUpdater -2023-03-17 19:54:22.0067 Info Attempting to copy JackettUpdater.deps.json from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/JackettUpdater.deps.json to destination: /app/Jackett/JackettUpdater.deps.json -2023-03-17 19:54:22.0067 Info Copied JackettUpdater.deps.json -2023-03-17 19:54:22.0067 Info Attempting to copy JackettUpdater.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/JackettUpdater.dll to destination: /app/Jackett/JackettUpdater.dll -2023-03-17 19:54:22.0091 Info Copied JackettUpdater.dll -2023-03-17 19:54:22.0091 Info Attempting to copy JackettUpdater.pdb from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/JackettUpdater.pdb to destination: /app/Jackett/JackettUpdater.pdb -2023-03-17 19:54:22.0099 Info Copied JackettUpdater.pdb -2023-03-17 19:54:22.0099 Info Attempting to copy JackettUpdater.runtimeconfig.json from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/JackettUpdater.runtimeconfig.json to destination: /app/Jackett/JackettUpdater.runtimeconfig.json -2023-03-17 19:54:22.0099 Info Copied JackettUpdater.runtimeconfig.json -2023-03-17 19:54:22.0099 Info Attempting to copy libclrjit.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libclrjit.so to destination: /app/Jackett/libclrjit.so -2023-03-17 19:54:22.0170 Info Copied libclrjit.so -2023-03-17 19:54:22.0170 Info Attempting to copy libcoreclr.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libcoreclr.so to destination: /app/Jackett/libcoreclr.so -2023-03-17 19:54:22.0313 Info Copied libcoreclr.so -2023-03-17 19:54:22.0316 Info Attempting to copy libcoreclrtraceptprovider.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libcoreclrtraceptprovider.so to destination: /app/Jackett/libcoreclrtraceptprovider.so -2023-03-17 19:54:22.0334 Info Copied libcoreclrtraceptprovider.so -2023-03-17 19:54:22.0334 Info Attempting to copy libdbgshim.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libdbgshim.so to destination: /app/Jackett/libdbgshim.so -2023-03-17 19:54:22.0360 Info Copied libdbgshim.so -2023-03-17 19:54:22.0360 Info Attempting to copy libhostfxr.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libhostfxr.so to destination: /app/Jackett/libhostfxr.so -2023-03-17 19:54:22.0373 Info Copied libhostfxr.so -2023-03-17 19:54:22.0373 Info Attempting to copy libhostpolicy.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libhostpolicy.so to destination: /app/Jackett/libhostpolicy.so -2023-03-17 19:54:22.0384 Info Copied libhostpolicy.so -2023-03-17 19:54:22.0384 Info Attempting to copy libMono.Unix.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libMono.Unix.so to destination: /app/Jackett/libMono.Unix.so -2023-03-17 19:54:22.0392 Info Copied libMono.Unix.so -2023-03-17 19:54:22.0392 Info Attempting to copy libmscordaccore.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libmscordaccore.so to destination: /app/Jackett/libmscordaccore.so -2023-03-17 19:54:22.0474 Info Copied libmscordaccore.so -2023-03-17 19:54:22.0477 Info Attempting to copy libmscordbi.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libmscordbi.so to destination: /app/Jackett/libmscordbi.so -2023-03-17 19:54:22.0543 Info Copied libmscordbi.so -2023-03-17 19:54:22.0547 Info Attempting to copy libSystem.Globalization.Native.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libSystem.Globalization.Native.so to destination: /app/Jackett/libSystem.Globalization.Native.so -2023-03-17 19:54:22.0547 Info Copied libSystem.Globalization.Native.so -2023-03-17 19:54:22.0547 Info Attempting to copy libSystem.IO.Compression.Native.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libSystem.IO.Compression.Native.so to destination: /app/Jackett/libSystem.IO.Compression.Native.so -2023-03-17 19:54:22.0574 Info Copied libSystem.IO.Compression.Native.so -2023-03-17 19:54:22.0574 Info Attempting to copy libSystem.Native.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libSystem.Native.so to destination: /app/Jackett/libSystem.Native.so -2023-03-17 19:54:22.0582 Info Copied libSystem.Native.so -2023-03-17 19:54:22.0582 Info Attempting to copy libSystem.Net.Security.Native.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libSystem.Net.Security.Native.so to destination: /app/Jackett/libSystem.Net.Security.Native.so -2023-03-17 19:54:22.0587 Info Copied libSystem.Net.Security.Native.so -2023-03-17 19:54:22.0587 Info Attempting to copy libSystem.Security.Cryptography.Native.OpenSsl.so from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so to destination: /app/Jackett/libSystem.Security.Cryptography.Native.OpenSsl.so -2023-03-17 19:54:22.0597 Info Copied libSystem.Security.Cryptography.Native.OpenSsl.so -2023-03-17 19:54:22.0597 Info Attempting to copy LICENSE from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/LICENSE to destination: /app/Jackett/LICENSE -2023-03-17 19:54:22.0597 Info Copied LICENSE -2023-03-17 19:54:22.0597 Info Attempting to copy Microsoft.AspNetCore.Antiforgery.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Antiforgery.dll to destination: /app/Jackett/Microsoft.AspNetCore.Antiforgery.dll -2023-03-17 19:54:22.0609 Info Copied Microsoft.AspNetCore.Antiforgery.dll -2023-03-17 19:54:22.0609 Info Attempting to copy Microsoft.AspNetCore.Authentication.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-03-17 19:54:22.0609 Info Copied Microsoft.AspNetCore.Authentication.Abstractions.dll -2023-03-17 19:54:22.0618 Info Attempting to copy Microsoft.AspNetCore.Authentication.Cookies.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Cookies.dll -2023-03-17 19:54:22.0618 Info Copied Microsoft.AspNetCore.Authentication.Cookies.dll -2023-03-17 19:54:22.0618 Info Attempting to copy Microsoft.AspNetCore.Authentication.Core.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Authentication.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.Core.dll -2023-03-17 19:54:22.0632 Info Copied Microsoft.AspNetCore.Authentication.Core.dll -2023-03-17 19:54:22.0632 Info Attempting to copy Microsoft.AspNetCore.Authentication.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Authentication.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.dll -2023-03-17 19:54:22.0640 Info Copied Microsoft.AspNetCore.Authentication.dll -2023-03-17 19:54:22.0640 Info Attempting to copy Microsoft.AspNetCore.Authentication.OAuth.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authentication.OAuth.dll -2023-03-17 19:54:22.0648 Info Copied Microsoft.AspNetCore.Authentication.OAuth.dll -2023-03-17 19:54:22.0648 Info Attempting to copy Microsoft.AspNetCore.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.dll -2023-03-17 19:54:22.0648 Info Copied Microsoft.AspNetCore.Authorization.dll -2023-03-17 19:54:22.0657 Info Attempting to copy Microsoft.AspNetCore.Authorization.Policy.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll to destination: /app/Jackett/Microsoft.AspNetCore.Authorization.Policy.dll -2023-03-17 19:54:22.0657 Info Copied Microsoft.AspNetCore.Authorization.Policy.dll -2023-03-17 19:54:22.0657 Info Attempting to copy Microsoft.AspNetCore.Components.Authorization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Components.Authorization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Authorization.dll -2023-03-17 19:54:22.0668 Info Copied Microsoft.AspNetCore.Components.Authorization.dll -2023-03-17 19:54:22.0668 Info Attempting to copy Microsoft.AspNetCore.Components.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Components.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.dll -2023-03-17 19:54:22.0684 Info Copied Microsoft.AspNetCore.Components.dll -2023-03-17 19:54:22.0684 Info Attempting to copy Microsoft.AspNetCore.Components.Forms.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Components.Forms.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Forms.dll -2023-03-17 19:54:22.0690 Info Copied Microsoft.AspNetCore.Components.Forms.dll -2023-03-17 19:54:22.0690 Info Attempting to copy Microsoft.AspNetCore.Components.Server.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Components.Server.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Server.dll -2023-03-17 19:54:22.0709 Info Copied Microsoft.AspNetCore.Components.Server.dll -2023-03-17 19:54:22.0709 Info Attempting to copy Microsoft.AspNetCore.Components.Web.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Components.Web.dll to destination: /app/Jackett/Microsoft.AspNetCore.Components.Web.dll -2023-03-17 19:54:22.0719 Info Copied Microsoft.AspNetCore.Components.Web.dll -2023-03-17 19:54:22.0719 Info Attempting to copy Microsoft.AspNetCore.Connections.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Connections.Abstractions.dll -2023-03-17 19:54:22.0727 Info Copied Microsoft.AspNetCore.Connections.Abstractions.dll -2023-03-17 19:54:22.0727 Info Attempting to copy Microsoft.AspNetCore.CookiePolicy.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.CookiePolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.CookiePolicy.dll -2023-03-17 19:54:22.0727 Info Copied Microsoft.AspNetCore.CookiePolicy.dll -2023-03-17 19:54:22.0727 Info Attempting to copy Microsoft.AspNetCore.Cors.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cors.dll -2023-03-17 19:54:22.0740 Info Copied Microsoft.AspNetCore.Cors.dll -2023-03-17 19:54:22.0740 Info Attempting to copy Microsoft.AspNetCore.Cryptography.Internal.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.Internal.dll -2023-03-17 19:54:22.0748 Info Copied Microsoft.AspNetCore.Cryptography.Internal.dll -2023-03-17 19:54:22.0748 Info Attempting to copy Microsoft.AspNetCore.Cryptography.KeyDerivation.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll to destination: /app/Jackett/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-03-17 19:54:22.0748 Info Copied Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -2023-03-17 19:54:22.0748 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-03-17 19:54:22.0760 Info Copied Microsoft.AspNetCore.DataProtection.Abstractions.dll -2023-03-17 19:54:22.0760 Info Attempting to copy Microsoft.AspNetCore.DataProtection.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.DataProtection.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.dll -2023-03-17 19:54:22.0772 Info Copied Microsoft.AspNetCore.DataProtection.dll -2023-03-17 19:54:22.0772 Info Attempting to copy Microsoft.AspNetCore.DataProtection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-03-17 19:54:22.0779 Info Copied Microsoft.AspNetCore.DataProtection.Extensions.dll -2023-03-17 19:54:22.0779 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-03-17 19:54:22.0779 Info Copied Microsoft.AspNetCore.Diagnostics.Abstractions.dll -2023-03-17 19:54:22.0779 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Diagnostics.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.dll -2023-03-17 19:54:22.0797 Info Copied Microsoft.AspNetCore.Diagnostics.dll -2023-03-17 19:54:22.0797 Info Attempting to copy Microsoft.AspNetCore.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-03-17 19:54:22.0797 Info Copied Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -2023-03-17 19:54:22.0797 Info Attempting to copy Microsoft.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.dll to destination: /app/Jackett/Microsoft.AspNetCore.dll -2023-03-17 19:54:22.0810 Info Copied Microsoft.AspNetCore.dll -2023-03-17 19:54:22.0810 Info Attempting to copy Microsoft.AspNetCore.HostFiltering.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.HostFiltering.dll to destination: /app/Jackett/Microsoft.AspNetCore.HostFiltering.dll -2023-03-17 19:54:22.0816 Info Copied Microsoft.AspNetCore.HostFiltering.dll -2023-03-17 19:54:22.0816 Info Attempting to copy Microsoft.AspNetCore.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-03-17 19:54:22.0816 Info Copied Microsoft.AspNetCore.Hosting.Abstractions.dll -2023-03-17 19:54:22.0816 Info Attempting to copy Microsoft.AspNetCore.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Hosting.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.dll -2023-03-17 19:54:22.0834 Info Copied Microsoft.AspNetCore.Hosting.dll -2023-03-17 19:54:22.0834 Info Attempting to copy Microsoft.AspNetCore.Hosting.Server.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-03-17 19:54:22.0840 Info Copied Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -2023-03-17 19:54:22.0840 Info Attempting to copy Microsoft.AspNetCore.Html.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Html.Abstractions.dll -2023-03-17 19:54:22.0840 Info Copied Microsoft.AspNetCore.Html.Abstractions.dll -2023-03-17 19:54:22.0848 Info Attempting to copy Microsoft.AspNetCore.Http.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Abstractions.dll -2023-03-17 19:54:22.0848 Info Copied Microsoft.AspNetCore.Http.Abstractions.dll -2023-03-17 19:54:22.0857 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.Common.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.Common.dll -2023-03-17 19:54:22.0857 Info Copied Microsoft.AspNetCore.Http.Connections.Common.dll -2023-03-17 19:54:22.0857 Info Attempting to copy Microsoft.AspNetCore.Http.Connections.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Http.Connections.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Connections.dll -2023-03-17 19:54:22.0872 Info Copied Microsoft.AspNetCore.Http.Connections.dll -2023-03-17 19:54:22.0872 Info Attempting to copy Microsoft.AspNetCore.Http.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Http.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.dll -2023-03-17 19:54:22.0891 Info Copied Microsoft.AspNetCore.Http.dll -2023-03-17 19:54:22.0891 Info Attempting to copy Microsoft.AspNetCore.Http.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Http.Extensions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Extensions.dll -2023-03-17 19:54:22.0902 Info Copied Microsoft.AspNetCore.Http.Extensions.dll -2023-03-17 19:54:22.0902 Info Attempting to copy Microsoft.AspNetCore.Http.Features.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Http.Features.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Features.dll -2023-03-17 19:54:22.0909 Info Copied Microsoft.AspNetCore.Http.Features.dll -2023-03-17 19:54:22.0909 Info Attempting to copy Microsoft.AspNetCore.Http.Results.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Http.Results.dll to destination: /app/Jackett/Microsoft.AspNetCore.Http.Results.dll -2023-03-17 19:54:22.0917 Info Copied Microsoft.AspNetCore.Http.Results.dll -2023-03-17 19:54:22.0917 Info Attempting to copy Microsoft.AspNetCore.HttpLogging.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.HttpLogging.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpLogging.dll -2023-03-17 19:54:22.0917 Info Copied Microsoft.AspNetCore.HttpLogging.dll -2023-03-17 19:54:22.0917 Info Attempting to copy Microsoft.AspNetCore.HttpOverrides.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.HttpOverrides.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpOverrides.dll -2023-03-17 19:54:22.0938 Info Copied Microsoft.AspNetCore.HttpOverrides.dll -2023-03-17 19:54:22.0938 Info Attempting to copy Microsoft.AspNetCore.HttpsPolicy.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll to destination: /app/Jackett/Microsoft.AspNetCore.HttpsPolicy.dll -2023-03-17 19:54:22.0952 Info Copied Microsoft.AspNetCore.HttpsPolicy.dll -2023-03-17 19:54:22.0952 Info Attempting to copy Microsoft.AspNetCore.Identity.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Identity.dll to destination: /app/Jackett/Microsoft.AspNetCore.Identity.dll -2023-03-17 19:54:22.0968 Info Copied Microsoft.AspNetCore.Identity.dll -2023-03-17 19:54:22.0968 Info Attempting to copy Microsoft.AspNetCore.JsonPatch.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.JsonPatch.dll to destination: /app/Jackett/Microsoft.AspNetCore.JsonPatch.dll -2023-03-17 19:54:22.0968 Info Copied Microsoft.AspNetCore.JsonPatch.dll -2023-03-17 19:54:22.0977 Info Attempting to copy Microsoft.AspNetCore.Localization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.dll -2023-03-17 19:54:22.0977 Info Copied Microsoft.AspNetCore.Localization.dll -2023-03-17 19:54:22.0977 Info Attempting to copy Microsoft.AspNetCore.Localization.Routing.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Localization.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Localization.Routing.dll -2023-03-17 19:54:22.0987 Info Copied Microsoft.AspNetCore.Localization.Routing.dll -2023-03-17 19:54:22.0987 Info Attempting to copy Microsoft.AspNetCore.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Metadata.dll to destination: /app/Jackett/Microsoft.AspNetCore.Metadata.dll -2023-03-17 19:54:22.0987 Info Copied Microsoft.AspNetCore.Metadata.dll -2023-03-17 19:54:22.0987 Info Attempting to copy Microsoft.AspNetCore.Mvc.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-03-17 19:54:22.1002 Info Copied Microsoft.AspNetCore.Mvc.Abstractions.dll -2023-03-17 19:54:22.1002 Info Attempting to copy Microsoft.AspNetCore.Mvc.ApiExplorer.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-03-17 19:54:22.1019 Info Copied Microsoft.AspNetCore.Mvc.ApiExplorer.dll -2023-03-17 19:54:22.1019 Info Attempting to copy Microsoft.AspNetCore.Mvc.Core.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Core.dll -2023-03-17 19:54:22.1054 Info Copied Microsoft.AspNetCore.Mvc.Core.dll -2023-03-17 19:54:22.1054 Info Attempting to copy Microsoft.AspNetCore.Mvc.Cors.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Cors.dll -2023-03-17 19:54:22.1061 Info Copied Microsoft.AspNetCore.Mvc.Cors.dll -2023-03-17 19:54:22.1061 Info Attempting to copy Microsoft.AspNetCore.Mvc.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-03-17 19:54:22.1069 Info Copied Microsoft.AspNetCore.Mvc.DataAnnotations.dll -2023-03-17 19:54:22.1069 Info Attempting to copy Microsoft.AspNetCore.Mvc.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.dll -2023-03-17 19:54:22.1069 Info Copied Microsoft.AspNetCore.Mvc.dll -2023-03-17 19:54:22.1077 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Json.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-03-17 19:54:22.1077 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Json.dll -2023-03-17 19:54:22.1077 Info Attempting to copy Microsoft.AspNetCore.Mvc.Formatters.Xml.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-03-17 19:54:22.1089 Info Copied Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -2023-03-17 19:54:22.1089 Info Attempting to copy Microsoft.AspNetCore.Mvc.Localization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Localization.dll -2023-03-17 19:54:22.1089 Info Copied Microsoft.AspNetCore.Mvc.Localization.dll -2023-03-17 19:54:22.1097 Info Attempting to copy Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-03-17 19:54:22.1097 Info Copied Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -2023-03-17 19:54:22.1097 Info Attempting to copy Microsoft.AspNetCore.Mvc.Razor.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.Razor.dll -2023-03-17 19:54:22.1111 Info Copied Microsoft.AspNetCore.Mvc.Razor.dll -2023-03-17 19:54:22.1111 Info Attempting to copy Microsoft.AspNetCore.Mvc.RazorPages.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-03-17 19:54:22.1124 Info Copied Microsoft.AspNetCore.Mvc.RazorPages.dll -2023-03-17 19:54:22.1124 Info Attempting to copy Microsoft.AspNetCore.Mvc.TagHelpers.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-03-17 19:54:22.1133 Info Copied Microsoft.AspNetCore.Mvc.TagHelpers.dll -2023-03-17 19:54:22.1133 Info Attempting to copy Microsoft.AspNetCore.Mvc.ViewFeatures.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll to destination: /app/Jackett/Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-03-17 19:54:22.1151 Info Copied Microsoft.AspNetCore.Mvc.ViewFeatures.dll -2023-03-17 19:54:22.1151 Info Attempting to copy Microsoft.AspNetCore.Razor.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Razor.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.dll -2023-03-17 19:54:22.1157 Info Copied Microsoft.AspNetCore.Razor.dll -2023-03-17 19:54:22.1157 Info Attempting to copy Microsoft.AspNetCore.Razor.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll to destination: /app/Jackett/Microsoft.AspNetCore.Razor.Runtime.dll -2023-03-17 19:54:22.1157 Info Copied Microsoft.AspNetCore.Razor.Runtime.dll -2023-03-17 19:54:22.1157 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-03-17 19:54:22.1170 Info Copied Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -2023-03-17 19:54:22.1170 Info Attempting to copy Microsoft.AspNetCore.ResponseCaching.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.ResponseCaching.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCaching.dll -2023-03-17 19:54:22.1178 Info Copied Microsoft.AspNetCore.ResponseCaching.dll -2023-03-17 19:54:22.1178 Info Attempting to copy Microsoft.AspNetCore.ResponseCompression.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.ResponseCompression.dll to destination: /app/Jackett/Microsoft.AspNetCore.ResponseCompression.dll -2023-03-17 19:54:22.1178 Info Copied Microsoft.AspNetCore.ResponseCompression.dll -2023-03-17 19:54:22.1178 Info Attempting to copy Microsoft.AspNetCore.Rewrite.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Rewrite.dll to destination: /app/Jackett/Microsoft.AspNetCore.Rewrite.dll -2023-03-17 19:54:22.1193 Info Copied Microsoft.AspNetCore.Rewrite.dll -2023-03-17 19:54:22.1193 Info Attempting to copy Microsoft.AspNetCore.Routing.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.Abstractions.dll -2023-03-17 19:54:22.1200 Info Copied Microsoft.AspNetCore.Routing.Abstractions.dll -2023-03-17 19:54:22.1200 Info Attempting to copy Microsoft.AspNetCore.Routing.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Routing.dll to destination: /app/Jackett/Microsoft.AspNetCore.Routing.dll -2023-03-17 19:54:22.1218 Info Copied Microsoft.AspNetCore.Routing.dll -2023-03-17 19:54:22.1218 Info Attempting to copy Microsoft.AspNetCore.Server.HttpSys.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.HttpSys.dll -2023-03-17 19:54:22.1232 Info Copied Microsoft.AspNetCore.Server.HttpSys.dll -2023-03-17 19:54:22.1232 Info Attempting to copy Microsoft.AspNetCore.Server.IIS.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Server.IIS.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IIS.dll -2023-03-17 19:54:22.1248 Info Copied Microsoft.AspNetCore.Server.IIS.dll -2023-03-17 19:54:22.1248 Info Attempting to copy Microsoft.AspNetCore.Server.IISIntegration.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.IISIntegration.dll -2023-03-17 19:54:22.1248 Info Copied Microsoft.AspNetCore.Server.IISIntegration.dll -2023-03-17 19:54:22.1248 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Core.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-03-17 19:54:22.1300 Info Copied Microsoft.AspNetCore.Server.Kestrel.Core.dll -2023-03-17 19:54:22.1300 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.dll -2023-03-17 19:54:22.1307 Info Copied Microsoft.AspNetCore.Server.Kestrel.dll -2023-03-17 19:54:22.1307 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-03-17 19:54:22.1317 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -2023-03-17 19:54:22.1317 Info Attempting to copy Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-03-17 19:54:22.1317 Info Copied Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -2023-03-17 19:54:22.1327 Info Attempting to copy Microsoft.AspNetCore.Session.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.Session.dll to destination: /app/Jackett/Microsoft.AspNetCore.Session.dll -2023-03-17 19:54:22.1327 Info Copied Microsoft.AspNetCore.Session.dll -2023-03-17 19:54:22.1327 Info Attempting to copy Microsoft.AspNetCore.SignalR.Common.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.SignalR.Common.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Common.dll -2023-03-17 19:54:22.1340 Info Copied Microsoft.AspNetCore.SignalR.Common.dll -2023-03-17 19:54:22.1340 Info Attempting to copy Microsoft.AspNetCore.SignalR.Core.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.SignalR.Core.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Core.dll -2023-03-17 19:54:22.1352 Info Copied Microsoft.AspNetCore.SignalR.Core.dll -2023-03-17 19:54:22.1352 Info Attempting to copy Microsoft.AspNetCore.SignalR.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.SignalR.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.dll -2023-03-17 19:54:22.1358 Info Copied Microsoft.AspNetCore.SignalR.dll -2023-03-17 19:54:22.1358 Info Attempting to copy Microsoft.AspNetCore.SignalR.Protocols.Json.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll to destination: /app/Jackett/Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-03-17 19:54:22.1358 Info Copied Microsoft.AspNetCore.SignalR.Protocols.Json.dll -2023-03-17 19:54:22.1367 Info Attempting to copy Microsoft.AspNetCore.StaticFiles.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.StaticFiles.dll to destination: /app/Jackett/Microsoft.AspNetCore.StaticFiles.dll -2023-03-17 19:54:22.1367 Info Copied Microsoft.AspNetCore.StaticFiles.dll -2023-03-17 19:54:22.1367 Info Attempting to copy Microsoft.AspNetCore.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.WebSockets.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebSockets.dll -2023-03-17 19:54:22.1386 Info Copied Microsoft.AspNetCore.WebSockets.dll -2023-03-17 19:54:22.1388 Info Attempting to copy Microsoft.AspNetCore.WebUtilities.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.AspNetCore.WebUtilities.dll to destination: /app/Jackett/Microsoft.AspNetCore.WebUtilities.dll -2023-03-17 19:54:22.1388 Info Copied Microsoft.AspNetCore.WebUtilities.dll -2023-03-17 19:54:22.1398 Info Attempting to copy Microsoft.CSharp.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.CSharp.dll to destination: /app/Jackett/Microsoft.CSharp.dll -2023-03-17 19:54:22.1423 Info Copied Microsoft.CSharp.dll -2023-03-17 19:54:22.1423 Info Attempting to copy Microsoft.Extensions.Caching.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Caching.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Abstractions.dll -2023-03-17 19:54:22.1430 Info Copied Microsoft.Extensions.Caching.Abstractions.dll -2023-03-17 19:54:22.1430 Info Attempting to copy Microsoft.Extensions.Caching.Memory.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Caching.Memory.dll to destination: /app/Jackett/Microsoft.Extensions.Caching.Memory.dll -2023-03-17 19:54:22.1437 Info Copied Microsoft.Extensions.Caching.Memory.dll -2023-03-17 19:54:22.1437 Info Attempting to copy Microsoft.Extensions.Configuration.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Abstractions.dll -2023-03-17 19:54:22.1437 Info Copied Microsoft.Extensions.Configuration.Abstractions.dll -2023-03-17 19:54:22.1437 Info Attempting to copy Microsoft.Extensions.Configuration.Binder.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.Binder.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Binder.dll -2023-03-17 19:54:22.1450 Info Copied Microsoft.Extensions.Configuration.Binder.dll -2023-03-17 19:54:22.1450 Info Attempting to copy Microsoft.Extensions.Configuration.CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.CommandLine.dll -2023-03-17 19:54:22.1450 Info Copied Microsoft.Extensions.Configuration.CommandLine.dll -2023-03-17 19:54:22.1457 Info Attempting to copy Microsoft.Extensions.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.dll -2023-03-17 19:54:22.1457 Info Copied Microsoft.Extensions.Configuration.dll -2023-03-17 19:54:22.1457 Info Attempting to copy Microsoft.Extensions.Configuration.EnvironmentVariables.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-03-17 19:54:22.1468 Info Copied Microsoft.Extensions.Configuration.EnvironmentVariables.dll -2023-03-17 19:54:22.1468 Info Attempting to copy Microsoft.Extensions.Configuration.FileExtensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.FileExtensions.dll -2023-03-17 19:54:22.1468 Info Copied Microsoft.Extensions.Configuration.FileExtensions.dll -2023-03-17 19:54:22.1468 Info Attempting to copy Microsoft.Extensions.Configuration.Ini.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.Ini.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Ini.dll -2023-03-17 19:54:22.1480 Info Copied Microsoft.Extensions.Configuration.Ini.dll -2023-03-17 19:54:22.1480 Info Attempting to copy Microsoft.Extensions.Configuration.Json.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.Json.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Json.dll -2023-03-17 19:54:22.1480 Info Copied Microsoft.Extensions.Configuration.Json.dll -2023-03-17 19:54:22.1488 Info Attempting to copy Microsoft.Extensions.Configuration.KeyPerFile.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-03-17 19:54:22.1488 Info Copied Microsoft.Extensions.Configuration.KeyPerFile.dll -2023-03-17 19:54:22.1488 Info Attempting to copy Microsoft.Extensions.Configuration.UserSecrets.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.UserSecrets.dll -2023-03-17 19:54:22.1498 Info Copied Microsoft.Extensions.Configuration.UserSecrets.dll -2023-03-17 19:54:22.1498 Info Attempting to copy Microsoft.Extensions.Configuration.Xml.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Configuration.Xml.dll to destination: /app/Jackett/Microsoft.Extensions.Configuration.Xml.dll -2023-03-17 19:54:22.1498 Info Copied Microsoft.Extensions.Configuration.Xml.dll -2023-03-17 19:54:22.1498 Info Attempting to copy Microsoft.Extensions.DependencyInjection.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-03-17 19:54:22.1512 Info Copied Microsoft.Extensions.DependencyInjection.Abstractions.dll -2023-03-17 19:54:22.1512 Info Attempting to copy Microsoft.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.DependencyInjection.dll to destination: /app/Jackett/Microsoft.Extensions.DependencyInjection.dll -2023-03-17 19:54:22.1528 Info Copied Microsoft.Extensions.DependencyInjection.dll -2023-03-17 19:54:22.1528 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-03-17 19:54:22.1528 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -2023-03-17 19:54:22.1528 Info Attempting to copy Microsoft.Extensions.Diagnostics.HealthChecks.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll to destination: /app/Jackett/Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-03-17 19:54:22.1541 Info Copied Microsoft.Extensions.Diagnostics.HealthChecks.dll -2023-03-17 19:54:22.1541 Info Attempting to copy Microsoft.Extensions.Features.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Features.dll to destination: /app/Jackett/Microsoft.Extensions.Features.dll -2023-03-17 19:54:22.1547 Info Copied Microsoft.Extensions.Features.dll -2023-03-17 19:54:22.1547 Info Attempting to copy Microsoft.Extensions.FileProviders.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Abstractions.dll -2023-03-17 19:54:22.1547 Info Copied Microsoft.Extensions.FileProviders.Abstractions.dll -2023-03-17 19:54:22.1547 Info Attempting to copy Microsoft.Extensions.FileProviders.Composite.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.FileProviders.Composite.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Composite.dll -2023-03-17 19:54:22.1558 Info Copied Microsoft.Extensions.FileProviders.Composite.dll -2023-03-17 19:54:22.1558 Info Attempting to copy Microsoft.Extensions.FileProviders.Embedded.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Embedded.dll -2023-03-17 19:54:22.1558 Info Copied Microsoft.Extensions.FileProviders.Embedded.dll -2023-03-17 19:54:22.1558 Info Attempting to copy Microsoft.Extensions.FileProviders.Physical.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.FileProviders.Physical.dll to destination: /app/Jackett/Microsoft.Extensions.FileProviders.Physical.dll -2023-03-17 19:54:22.1572 Info Copied Microsoft.Extensions.FileProviders.Physical.dll -2023-03-17 19:54:22.1572 Info Attempting to copy Microsoft.Extensions.FileSystemGlobbing.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll to destination: /app/Jackett/Microsoft.Extensions.FileSystemGlobbing.dll -2023-03-17 19:54:22.1579 Info Copied Microsoft.Extensions.FileSystemGlobbing.dll -2023-03-17 19:54:22.1579 Info Attempting to copy Microsoft.Extensions.Hosting.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.Abstractions.dll -2023-03-17 19:54:22.1579 Info Copied Microsoft.Extensions.Hosting.Abstractions.dll -2023-03-17 19:54:22.1587 Info Attempting to copy Microsoft.Extensions.Hosting.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Hosting.dll to destination: /app/Jackett/Microsoft.Extensions.Hosting.dll -2023-03-17 19:54:22.1587 Info Copied Microsoft.Extensions.Hosting.dll -2023-03-17 19:54:22.1587 Info Attempting to copy Microsoft.Extensions.Http.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Http.dll to destination: /app/Jackett/Microsoft.Extensions.Http.dll -2023-03-17 19:54:22.1600 Info Copied Microsoft.Extensions.Http.dll -2023-03-17 19:54:22.1600 Info Attempting to copy Microsoft.Extensions.Identity.Core.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Identity.Core.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Core.dll -2023-03-17 19:54:22.1612 Info Copied Microsoft.Extensions.Identity.Core.dll -2023-03-17 19:54:22.1612 Info Attempting to copy Microsoft.Extensions.Identity.Stores.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Identity.Stores.dll to destination: /app/Jackett/Microsoft.Extensions.Identity.Stores.dll -2023-03-17 19:54:22.1619 Info Copied Microsoft.Extensions.Identity.Stores.dll -2023-03-17 19:54:22.1619 Info Attempting to copy Microsoft.Extensions.Localization.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Localization.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.Abstractions.dll -2023-03-17 19:54:22.1619 Info Copied Microsoft.Extensions.Localization.Abstractions.dll -2023-03-17 19:54:22.1626 Info Attempting to copy Microsoft.Extensions.Localization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Localization.dll to destination: /app/Jackett/Microsoft.Extensions.Localization.dll -2023-03-17 19:54:22.1626 Info Copied Microsoft.Extensions.Localization.dll -2023-03-17 19:54:22.1626 Info Attempting to copy Microsoft.Extensions.Logging.Abstractions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Logging.Abstractions.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Abstractions.dll -2023-03-17 19:54:22.1639 Info Copied Microsoft.Extensions.Logging.Abstractions.dll -2023-03-17 19:54:22.1639 Info Attempting to copy Microsoft.Extensions.Logging.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Logging.Configuration.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Configuration.dll -2023-03-17 19:54:22.1639 Info Copied Microsoft.Extensions.Logging.Configuration.dll -2023-03-17 19:54:22.1646 Info Attempting to copy Microsoft.Extensions.Logging.Console.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Logging.Console.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Console.dll -2023-03-17 19:54:22.2286 Info Copied Microsoft.Extensions.Logging.Console.dll -2023-03-17 19:54:22.2286 Info Attempting to copy Microsoft.Extensions.Logging.Debug.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Logging.Debug.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.Debug.dll -2023-03-17 19:54:22.2286 Info Copied Microsoft.Extensions.Logging.Debug.dll -2023-03-17 19:54:22.2286 Info Attempting to copy Microsoft.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Logging.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.dll -2023-03-17 19:54:22.2302 Info Copied Microsoft.Extensions.Logging.dll -2023-03-17 19:54:22.2302 Info Attempting to copy Microsoft.Extensions.Logging.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Logging.EventLog.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventLog.dll -2023-03-17 19:54:22.2308 Info Copied Microsoft.Extensions.Logging.EventLog.dll -2023-03-17 19:54:22.2308 Info Attempting to copy Microsoft.Extensions.Logging.EventSource.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Logging.EventSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.EventSource.dll -2023-03-17 19:54:22.2308 Info Copied Microsoft.Extensions.Logging.EventSource.dll -2023-03-17 19:54:22.2308 Info Attempting to copy Microsoft.Extensions.Logging.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Logging.TraceSource.dll to destination: /app/Jackett/Microsoft.Extensions.Logging.TraceSource.dll -2023-03-17 19:54:22.2320 Info Copied Microsoft.Extensions.Logging.TraceSource.dll -2023-03-17 19:54:22.2320 Info Attempting to copy Microsoft.Extensions.ObjectPool.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.ObjectPool.dll to destination: /app/Jackett/Microsoft.Extensions.ObjectPool.dll -2023-03-17 19:54:22.2327 Info Copied Microsoft.Extensions.ObjectPool.dll -2023-03-17 19:54:22.2327 Info Attempting to copy Microsoft.Extensions.Options.ConfigurationExtensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll to destination: /app/Jackett/Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-03-17 19:54:22.2327 Info Copied Microsoft.Extensions.Options.ConfigurationExtensions.dll -2023-03-17 19:54:22.2327 Info Attempting to copy Microsoft.Extensions.Options.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll to destination: /app/Jackett/Microsoft.Extensions.Options.DataAnnotations.dll -2023-03-17 19:54:22.2340 Info Copied Microsoft.Extensions.Options.DataAnnotations.dll -2023-03-17 19:54:22.2340 Info Attempting to copy Microsoft.Extensions.Options.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Options.dll to destination: /app/Jackett/Microsoft.Extensions.Options.dll -2023-03-17 19:54:22.2356 Info Copied Microsoft.Extensions.Options.dll -2023-03-17 19:54:22.2358 Info Attempting to copy Microsoft.Extensions.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.Primitives.dll to destination: /app/Jackett/Microsoft.Extensions.Primitives.dll -2023-03-17 19:54:22.2358 Info Copied Microsoft.Extensions.Primitives.dll -2023-03-17 19:54:22.2358 Info Attempting to copy Microsoft.Extensions.WebEncoders.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Extensions.WebEncoders.dll to destination: /app/Jackett/Microsoft.Extensions.WebEncoders.dll -2023-03-17 19:54:22.2370 Info Copied Microsoft.Extensions.WebEncoders.dll -2023-03-17 19:54:22.2370 Info Attempting to copy Microsoft.JSInterop.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.JSInterop.dll to destination: /app/Jackett/Microsoft.JSInterop.dll -2023-03-17 19:54:22.2386 Info Copied Microsoft.JSInterop.dll -2023-03-17 19:54:22.2386 Info Attempting to copy Microsoft.Net.Http.Headers.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Net.Http.Headers.dll to destination: /app/Jackett/Microsoft.Net.Http.Headers.dll -2023-03-17 19:54:22.2404 Info Copied Microsoft.Net.Http.Headers.dll -2023-03-17 19:54:22.2404 Info Attempting to copy Microsoft.VisualBasic.Core.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.VisualBasic.Core.dll to destination: /app/Jackett/Microsoft.VisualBasic.Core.dll -2023-03-17 19:54:22.2447 Info Copied Microsoft.VisualBasic.Core.dll -2023-03-17 19:54:22.2447 Info Attempting to copy Microsoft.VisualBasic.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.VisualBasic.dll to destination: /app/Jackett/Microsoft.VisualBasic.dll -2023-03-17 19:54:22.2447 Info Copied Microsoft.VisualBasic.dll -2023-03-17 19:54:22.2447 Info Attempting to copy Microsoft.Win32.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Win32.Primitives.dll to destination: /app/Jackett/Microsoft.Win32.Primitives.dll -2023-03-17 19:54:22.2461 Info Copied Microsoft.Win32.Primitives.dll -2023-03-17 19:54:22.2461 Info Attempting to copy Microsoft.Win32.Registry.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Microsoft.Win32.Registry.dll to destination: /app/Jackett/Microsoft.Win32.Registry.dll -2023-03-17 19:54:22.2468 Info Copied Microsoft.Win32.Registry.dll -2023-03-17 19:54:22.2468 Info Attempting to copy MimeMapping.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/MimeMapping.dll to destination: /app/Jackett/MimeMapping.dll -2023-03-17 19:54:22.2970 Info Copied MimeMapping.dll -2023-03-17 19:54:22.2970 Info Attempting to copy Mono.Posix.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Mono.Posix.dll to destination: /app/Jackett/Mono.Posix.dll -2023-03-17 19:54:22.2981 Info Copied Mono.Posix.dll -2023-03-17 19:54:22.2981 Info Attempting to copy Mono.Unix.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Mono.Unix.dll to destination: /app/Jackett/Mono.Unix.dll -2023-03-17 19:54:22.2990 Info Copied Mono.Unix.dll -2023-03-17 19:54:22.2990 Info Attempting to copy mscorlib.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/mscorlib.dll to destination: /app/Jackett/mscorlib.dll -2023-03-17 19:54:22.2996 Info Copied mscorlib.dll -2023-03-17 19:54:22.2996 Info Attempting to copy netstandard.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/netstandard.dll to destination: /app/Jackett/netstandard.dll -2023-03-17 19:54:22.2996 Info Copied netstandard.dll -2023-03-17 19:54:22.2996 Info Attempting to copy Newtonsoft.Json.Bson.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Newtonsoft.Json.Bson.dll to destination: /app/Jackett/Newtonsoft.Json.Bson.dll -2023-03-17 19:54:22.3011 Info Copied Newtonsoft.Json.Bson.dll -2023-03-17 19:54:22.3011 Info Attempting to copy Newtonsoft.Json.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Newtonsoft.Json.dll to destination: /app/Jackett/Newtonsoft.Json.dll -2023-03-17 19:54:22.3027 Info Copied Newtonsoft.Json.dll -2023-03-17 19:54:22.3027 Info Attempting to copy NLog.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/NLog.dll to destination: /app/Jackett/NLog.dll -2023-03-17 19:54:22.3045 Info Copied NLog.dll -2023-03-17 19:54:22.3047 Info Attempting to copy NLog.Extensions.Logging.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/NLog.Extensions.Logging.dll to destination: /app/Jackett/NLog.Extensions.Logging.dll -2023-03-17 19:54:22.3047 Info Copied NLog.Extensions.Logging.dll -2023-03-17 19:54:22.3047 Info Attempting to copy NLog.Web.AspNetCore.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/NLog.Web.AspNetCore.dll to destination: /app/Jackett/NLog.Web.AspNetCore.dll -2023-03-17 19:54:22.3060 Info Copied NLog.Web.AspNetCore.dll -2023-03-17 19:54:22.3060 Info Attempting to copy Org.Mentalis.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Org.Mentalis.dll to destination: /app/Jackett/Org.Mentalis.dll -2023-03-17 19:54:22.3066 Info Copied Org.Mentalis.dll -2023-03-17 19:54:22.3066 Info Attempting to copy Polly.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/Polly.dll to destination: /app/Jackett/Polly.dll -2023-03-17 19:54:22.3076 Info Copied Polly.dll -2023-03-17 19:54:22.3076 Info Attempting to copy README.md from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/README.md to destination: /app/Jackett/README.md -2023-03-17 19:54:22.3076 Info Copied README.md -2023-03-17 19:54:22.3076 Info Attempting to copy SocksWebProxy.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/SocksWebProxy.dll to destination: /app/Jackett/SocksWebProxy.dll -2023-03-17 19:54:22.3089 Info Copied SocksWebProxy.dll -2023-03-17 19:54:22.3089 Info Attempting to copy System.AppContext.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.AppContext.dll to destination: /app/Jackett/System.AppContext.dll -2023-03-17 19:54:22.3089 Info Copied System.AppContext.dll -2023-03-17 19:54:22.3097 Info Attempting to copy System.Buffers.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Buffers.dll to destination: /app/Jackett/System.Buffers.dll -2023-03-17 19:54:22.3097 Info Copied System.Buffers.dll -2023-03-17 19:54:22.3097 Info Attempting to copy System.Collections.Concurrent.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Collections.Concurrent.dll to destination: /app/Jackett/System.Collections.Concurrent.dll -2023-03-17 19:54:22.3118 Info Copied System.Collections.Concurrent.dll -2023-03-17 19:54:22.3118 Info Attempting to copy System.Collections.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Collections.dll to destination: /app/Jackett/System.Collections.dll -2023-03-17 19:54:22.3128 Info Copied System.Collections.dll -2023-03-17 19:54:22.3128 Info Attempting to copy System.Collections.Immutable.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Collections.Immutable.dll to destination: /app/Jackett/System.Collections.Immutable.dll -2023-03-17 19:54:22.3159 Info Copied System.Collections.Immutable.dll -2023-03-17 19:54:22.3159 Info Attempting to copy System.Collections.NonGeneric.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Collections.NonGeneric.dll to destination: /app/Jackett/System.Collections.NonGeneric.dll -2023-03-17 19:54:22.4060 Info Copied System.Collections.NonGeneric.dll -2023-03-17 19:54:22.4068 Info Attempting to copy System.Collections.Specialized.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Collections.Specialized.dll to destination: /app/Jackett/System.Collections.Specialized.dll -2023-03-17 19:54:22.4085 Info Copied System.Collections.Specialized.dll -2023-03-17 19:54:22.4089 Info Attempting to copy System.ComponentModel.Annotations.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ComponentModel.Annotations.dll to destination: /app/Jackett/System.ComponentModel.Annotations.dll -2023-03-17 19:54:22.4107 Info Copied System.ComponentModel.Annotations.dll -2023-03-17 19:54:22.4107 Info Attempting to copy System.ComponentModel.DataAnnotations.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ComponentModel.DataAnnotations.dll to destination: /app/Jackett/System.ComponentModel.DataAnnotations.dll -2023-03-17 19:54:22.4120 Info Copied System.ComponentModel.DataAnnotations.dll -2023-03-17 19:54:22.4120 Info Attempting to copy System.ComponentModel.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ComponentModel.dll to destination: /app/Jackett/System.ComponentModel.dll -2023-03-17 19:54:22.4132 Info Copied System.ComponentModel.dll -2023-03-17 19:54:22.4132 Info Attempting to copy System.ComponentModel.EventBasedAsync.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ComponentModel.EventBasedAsync.dll to destination: /app/Jackett/System.ComponentModel.EventBasedAsync.dll -2023-03-17 19:54:22.4148 Info Copied System.ComponentModel.EventBasedAsync.dll -2023-03-17 19:54:22.4148 Info Attempting to copy System.ComponentModel.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ComponentModel.Primitives.dll to destination: /app/Jackett/System.ComponentModel.Primitives.dll -2023-03-17 19:54:22.4164 Info Copied System.ComponentModel.Primitives.dll -2023-03-17 19:54:22.4168 Info Attempting to copy System.ComponentModel.TypeConverter.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ComponentModel.TypeConverter.dll to destination: /app/Jackett/System.ComponentModel.TypeConverter.dll -2023-03-17 19:54:22.4217 Info Copied System.ComponentModel.TypeConverter.dll -2023-03-17 19:54:22.4217 Info Attempting to copy System.Configuration.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Configuration.dll to destination: /app/Jackett/System.Configuration.dll -2023-03-17 19:54:22.4230 Info Copied System.Configuration.dll -2023-03-17 19:54:22.4230 Info Attempting to copy System.Console.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Console.dll to destination: /app/Jackett/System.Console.dll -2023-03-17 19:54:22.4600 Info Copied System.Console.dll -2023-03-17 19:54:22.4600 Info Attempting to copy System.Core.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Core.dll to destination: /app/Jackett/System.Core.dll -2023-03-17 19:54:22.4614 Info Copied System.Core.dll -2023-03-17 19:54:22.4618 Info Attempting to copy System.Data.Common.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Data.Common.dll to destination: /app/Jackett/System.Data.Common.dll -2023-03-17 19:54:22.4744 Info Copied System.Data.Common.dll -2023-03-17 19:54:22.4749 Info Attempting to copy System.Data.DataSetExtensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Data.DataSetExtensions.dll to destination: /app/Jackett/System.Data.DataSetExtensions.dll -2023-03-17 19:54:22.4761 Info Copied System.Data.DataSetExtensions.dll -2023-03-17 19:54:22.4761 Info Attempting to copy System.Data.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Data.dll to destination: /app/Jackett/System.Data.dll -2023-03-17 19:54:22.4773 Info Copied System.Data.dll -2023-03-17 19:54:22.4773 Info Attempting to copy System.Diagnostics.Contracts.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.Contracts.dll to destination: /app/Jackett/System.Diagnostics.Contracts.dll -2023-03-17 19:54:22.4786 Info Copied System.Diagnostics.Contracts.dll -2023-03-17 19:54:22.4789 Info Attempting to copy System.Diagnostics.Debug.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.Debug.dll to destination: /app/Jackett/System.Diagnostics.Debug.dll -2023-03-17 19:54:22.4799 Info Copied System.Diagnostics.Debug.dll -2023-03-17 19:54:22.4799 Info Attempting to copy System.Diagnostics.DiagnosticSource.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.DiagnosticSource.dll to destination: /app/Jackett/System.Diagnostics.DiagnosticSource.dll -2023-03-17 19:54:22.4971 Info Copied System.Diagnostics.DiagnosticSource.dll -2023-03-17 19:54:22.4971 Info Attempting to copy System.Diagnostics.EventLog.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.EventLog.dll to destination: /app/Jackett/System.Diagnostics.EventLog.dll -2023-03-17 19:54:22.4987 Info Copied System.Diagnostics.EventLog.dll -2023-03-17 19:54:22.4987 Info Attempting to copy System.Diagnostics.FileVersionInfo.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.FileVersionInfo.dll to destination: /app/Jackett/System.Diagnostics.FileVersionInfo.dll -2023-03-17 19:54:22.5000 Info Copied System.Diagnostics.FileVersionInfo.dll -2023-03-17 19:54:22.5000 Info Attempting to copy System.Diagnostics.Process.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.Process.dll to destination: /app/Jackett/System.Diagnostics.Process.dll -2023-03-17 19:54:22.5023 Info Copied System.Diagnostics.Process.dll -2023-03-17 19:54:22.5023 Info Attempting to copy System.Diagnostics.StackTrace.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.StackTrace.dll to destination: /app/Jackett/System.Diagnostics.StackTrace.dll -2023-03-17 19:54:22.5049 Info Copied System.Diagnostics.StackTrace.dll -2023-03-17 19:54:22.5049 Info Attempting to copy System.Diagnostics.TextWriterTraceListener.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.TextWriterTraceListener.dll to destination: /app/Jackett/System.Diagnostics.TextWriterTraceListener.dll -2023-03-17 19:54:22.5063 Info Copied System.Diagnostics.TextWriterTraceListener.dll -2023-03-17 19:54:22.5063 Info Attempting to copy System.Diagnostics.Tools.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.Tools.dll to destination: /app/Jackett/System.Diagnostics.Tools.dll -2023-03-17 19:54:22.5075 Info Copied System.Diagnostics.Tools.dll -2023-03-17 19:54:22.5079 Info Attempting to copy System.Diagnostics.TraceSource.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.TraceSource.dll to destination: /app/Jackett/System.Diagnostics.TraceSource.dll -2023-03-17 19:54:22.5095 Info Copied System.Diagnostics.TraceSource.dll -2023-03-17 19:54:22.5100 Info Attempting to copy System.Diagnostics.Tracing.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Diagnostics.Tracing.dll to destination: /app/Jackett/System.Diagnostics.Tracing.dll -2023-03-17 19:54:22.5110 Info Copied System.Diagnostics.Tracing.dll -2023-03-17 19:54:22.5110 Info Attempting to copy System.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.dll to destination: /app/Jackett/System.dll -2023-03-17 19:54:22.5124 Info Copied System.dll -2023-03-17 19:54:22.5127 Info Attempting to copy System.Drawing.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Drawing.dll to destination: /app/Jackett/System.Drawing.dll -2023-03-17 19:54:22.5137 Info Copied System.Drawing.dll -2023-03-17 19:54:22.5137 Info Attempting to copy System.Drawing.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Drawing.Primitives.dll to destination: /app/Jackett/System.Drawing.Primitives.dll -2023-03-17 19:54:22.5155 Info Copied System.Drawing.Primitives.dll -2023-03-17 19:54:22.5158 Info Attempting to copy System.Dynamic.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Dynamic.Runtime.dll to destination: /app/Jackett/System.Dynamic.Runtime.dll -2023-03-17 19:54:22.5168 Info Copied System.Dynamic.Runtime.dll -2023-03-17 19:54:22.5168 Info Attempting to copy System.Formats.Asn1.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Formats.Asn1.dll to destination: /app/Jackett/System.Formats.Asn1.dll -2023-03-17 19:54:22.5842 Info Copied System.Formats.Asn1.dll -2023-03-17 19:54:22.5842 Info Attempting to copy System.Globalization.Calendars.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Globalization.Calendars.dll to destination: /app/Jackett/System.Globalization.Calendars.dll -2023-03-17 19:54:22.5852 Info Copied System.Globalization.Calendars.dll -2023-03-17 19:54:22.5852 Info Attempting to copy System.Globalization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Globalization.dll to destination: /app/Jackett/System.Globalization.dll -2023-03-17 19:54:22.5859 Info Copied System.Globalization.dll -2023-03-17 19:54:22.5859 Info Attempting to copy System.Globalization.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Globalization.Extensions.dll to destination: /app/Jackett/System.Globalization.Extensions.dll -2023-03-17 19:54:22.5859 Info Copied System.Globalization.Extensions.dll -2023-03-17 19:54:22.5868 Info Attempting to copy System.IO.Compression.Brotli.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.Compression.Brotli.dll to destination: /app/Jackett/System.IO.Compression.Brotli.dll -2023-03-17 19:54:22.5868 Info Copied System.IO.Compression.Brotli.dll -2023-03-17 19:54:22.5877 Info Attempting to copy System.IO.Compression.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.Compression.dll to destination: /app/Jackett/System.IO.Compression.dll -2023-03-17 19:54:22.5889 Info Copied System.IO.Compression.dll -2023-03-17 19:54:22.5889 Info Attempting to copy System.IO.Compression.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.Compression.FileSystem.dll to destination: /app/Jackett/System.IO.Compression.FileSystem.dll -2023-03-17 19:54:22.5897 Info Copied System.IO.Compression.FileSystem.dll -2023-03-17 19:54:22.5897 Info Attempting to copy System.IO.Compression.ZipFile.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.Compression.ZipFile.dll to destination: /app/Jackett/System.IO.Compression.ZipFile.dll -2023-03-17 19:54:22.5897 Info Copied System.IO.Compression.ZipFile.dll -2023-03-17 19:54:22.5908 Info Attempting to copy System.IO.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.dll to destination: /app/Jackett/System.IO.dll -2023-03-17 19:54:22.5908 Info Copied System.IO.dll -2023-03-17 19:54:22.5908 Info Attempting to copy System.IO.FileSystem.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.FileSystem.AccessControl.dll to destination: /app/Jackett/System.IO.FileSystem.AccessControl.dll -2023-03-17 19:54:22.5920 Info Copied System.IO.FileSystem.AccessControl.dll -2023-03-17 19:54:22.5920 Info Attempting to copy System.IO.FileSystem.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.FileSystem.dll to destination: /app/Jackett/System.IO.FileSystem.dll -2023-03-17 19:54:22.5927 Info Copied System.IO.FileSystem.dll -2023-03-17 19:54:22.5927 Info Attempting to copy System.IO.FileSystem.DriveInfo.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.FileSystem.DriveInfo.dll to destination: /app/Jackett/System.IO.FileSystem.DriveInfo.dll -2023-03-17 19:54:22.5927 Info Copied System.IO.FileSystem.DriveInfo.dll -2023-03-17 19:54:22.5938 Info Attempting to copy System.IO.FileSystem.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.FileSystem.Primitives.dll to destination: /app/Jackett/System.IO.FileSystem.Primitives.dll -2023-03-17 19:54:22.5938 Info Copied System.IO.FileSystem.Primitives.dll -2023-03-17 19:54:22.5938 Info Attempting to copy System.IO.FileSystem.Watcher.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.FileSystem.Watcher.dll to destination: /app/Jackett/System.IO.FileSystem.Watcher.dll -2023-03-17 19:54:22.5952 Info Copied System.IO.FileSystem.Watcher.dll -2023-03-17 19:54:22.5952 Info Attempting to copy System.IO.IsolatedStorage.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.IsolatedStorage.dll to destination: /app/Jackett/System.IO.IsolatedStorage.dll -2023-03-17 19:54:22.5962 Info Copied System.IO.IsolatedStorage.dll -2023-03-17 19:54:22.5962 Info Attempting to copy System.IO.MemoryMappedFiles.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.MemoryMappedFiles.dll to destination: /app/Jackett/System.IO.MemoryMappedFiles.dll -2023-03-17 19:54:22.5971 Info Copied System.IO.MemoryMappedFiles.dll -2023-03-17 19:54:22.5971 Info Attempting to copy System.IO.Pipelines.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.Pipelines.dll to destination: /app/Jackett/System.IO.Pipelines.dll -2023-03-17 19:54:22.5984 Info Copied System.IO.Pipelines.dll -2023-03-17 19:54:22.5984 Info Attempting to copy System.IO.Pipes.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.Pipes.AccessControl.dll to destination: /app/Jackett/System.IO.Pipes.AccessControl.dll -2023-03-17 19:54:22.5991 Info Copied System.IO.Pipes.AccessControl.dll -2023-03-17 19:54:22.5991 Info Attempting to copy System.IO.Pipes.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.Pipes.dll to destination: /app/Jackett/System.IO.Pipes.dll -2023-03-17 19:54:22.6002 Info Copied System.IO.Pipes.dll -2023-03-17 19:54:22.6002 Info Attempting to copy System.IO.UnmanagedMemoryStream.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.IO.UnmanagedMemoryStream.dll to destination: /app/Jackett/System.IO.UnmanagedMemoryStream.dll -2023-03-17 19:54:22.6010 Info Copied System.IO.UnmanagedMemoryStream.dll -2023-03-17 19:54:22.6010 Info Attempting to copy System.Linq.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Linq.dll to destination: /app/Jackett/System.Linq.dll -2023-03-17 19:54:22.6031 Info Copied System.Linq.dll -2023-03-17 19:54:22.6031 Info Attempting to copy System.Linq.Expressions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Linq.Expressions.dll to destination: /app/Jackett/System.Linq.Expressions.dll -2023-03-17 19:54:22.6835 Info Copied System.Linq.Expressions.dll -2023-03-17 19:54:22.6841 Info Attempting to copy System.Linq.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Linq.Parallel.dll to destination: /app/Jackett/System.Linq.Parallel.dll -2023-03-17 19:54:22.6923 Info Copied System.Linq.Parallel.dll -2023-03-17 19:54:22.6929 Info Attempting to copy System.Linq.Queryable.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Linq.Queryable.dll to destination: /app/Jackett/System.Linq.Queryable.dll -2023-03-17 19:54:22.6949 Info Copied System.Linq.Queryable.dll -2023-03-17 19:54:22.6949 Info Attempting to copy System.Memory.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Memory.dll to destination: /app/Jackett/System.Memory.dll -2023-03-17 19:54:22.6973 Info Copied System.Memory.dll -2023-03-17 19:54:22.6973 Info Attempting to copy System.Net.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.dll to destination: /app/Jackett/System.Net.dll -2023-03-17 19:54:22.6986 Info Copied System.Net.dll -2023-03-17 19:54:22.6990 Info Attempting to copy System.Net.Http.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Http.dll to destination: /app/Jackett/System.Net.Http.dll -2023-03-17 19:54:22.7411 Info Copied System.Net.Http.dll -2023-03-17 19:54:22.7411 Info Attempting to copy System.Net.Http.Json.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Http.Json.dll to destination: /app/Jackett/System.Net.Http.Json.dll -2023-03-17 19:54:22.7420 Info Copied System.Net.Http.Json.dll -2023-03-17 19:54:22.7420 Info Attempting to copy System.Net.HttpListener.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.HttpListener.dll to destination: /app/Jackett/System.Net.HttpListener.dll -2023-03-17 19:54:22.7439 Info Copied System.Net.HttpListener.dll -2023-03-17 19:54:22.7439 Info Attempting to copy System.Net.Mail.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Mail.dll to destination: /app/Jackett/System.Net.Mail.dll -2023-03-17 19:54:22.7453 Info Copied System.Net.Mail.dll -2023-03-17 19:54:22.7453 Info Attempting to copy System.Net.NameResolution.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.NameResolution.dll to destination: /app/Jackett/System.Net.NameResolution.dll -2023-03-17 19:54:22.7461 Info Copied System.Net.NameResolution.dll -2023-03-17 19:54:22.7461 Info Attempting to copy System.Net.NetworkInformation.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.NetworkInformation.dll to destination: /app/Jackett/System.Net.NetworkInformation.dll -2023-03-17 19:54:22.7469 Info Copied System.Net.NetworkInformation.dll -2023-03-17 19:54:22.7469 Info Attempting to copy System.Net.Ping.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Ping.dll to destination: /app/Jackett/System.Net.Ping.dll -2023-03-17 19:54:22.7477 Info Copied System.Net.Ping.dll -2023-03-17 19:54:22.7477 Info Attempting to copy System.Net.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Primitives.dll to destination: /app/Jackett/System.Net.Primitives.dll -2023-03-17 19:54:22.7487 Info Copied System.Net.Primitives.dll -2023-03-17 19:54:22.7487 Info Attempting to copy System.Net.Quic.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Quic.dll to destination: /app/Jackett/System.Net.Quic.dll -2023-03-17 19:54:22.7497 Info Copied System.Net.Quic.dll -2023-03-17 19:54:22.7497 Info Attempting to copy System.Net.Requests.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Requests.dll to destination: /app/Jackett/System.Net.Requests.dll -2023-03-17 19:54:22.7509 Info Copied System.Net.Requests.dll -2023-03-17 19:54:22.7509 Info Attempting to copy System.Net.Security.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Security.dll to destination: /app/Jackett/System.Net.Security.dll -2023-03-17 19:54:22.7527 Info Copied System.Net.Security.dll -2023-03-17 19:54:22.7527 Info Attempting to copy System.Net.ServicePoint.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.ServicePoint.dll to destination: /app/Jackett/System.Net.ServicePoint.dll -2023-03-17 19:54:22.7527 Info Copied System.Net.ServicePoint.dll -2023-03-17 19:54:22.7527 Info Attempting to copy System.Net.Sockets.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.Sockets.dll to destination: /app/Jackett/System.Net.Sockets.dll -2023-03-17 19:54:22.7562 Info Copied System.Net.Sockets.dll -2023-03-17 19:54:22.7562 Info Attempting to copy System.Net.WebClient.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.WebClient.dll to destination: /app/Jackett/System.Net.WebClient.dll -2023-03-17 19:54:22.7570 Info Copied System.Net.WebClient.dll -2023-03-17 19:54:22.7570 Info Attempting to copy System.Net.WebHeaderCollection.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.WebHeaderCollection.dll to destination: /app/Jackett/System.Net.WebHeaderCollection.dll -2023-03-17 19:54:22.7577 Info Copied System.Net.WebHeaderCollection.dll -2023-03-17 19:54:22.7577 Info Attempting to copy System.Net.WebProxy.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.WebProxy.dll to destination: /app/Jackett/System.Net.WebProxy.dll -2023-03-17 19:54:22.7577 Info Copied System.Net.WebProxy.dll -2023-03-17 19:54:22.7577 Info Attempting to copy System.Net.WebSockets.Client.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.WebSockets.Client.dll to destination: /app/Jackett/System.Net.WebSockets.Client.dll -2023-03-17 19:54:22.7589 Info Copied System.Net.WebSockets.Client.dll -2023-03-17 19:54:22.7589 Info Attempting to copy System.Net.WebSockets.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Net.WebSockets.dll to destination: /app/Jackett/System.Net.WebSockets.dll -2023-03-17 19:54:22.7598 Info Copied System.Net.WebSockets.dll -2023-03-17 19:54:22.7598 Info Attempting to copy System.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Numerics.dll to destination: /app/Jackett/System.Numerics.dll -2023-03-17 19:54:22.7598 Info Copied System.Numerics.dll -2023-03-17 19:54:22.7598 Info Attempting to copy System.Numerics.Vectors.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Numerics.Vectors.dll to destination: /app/Jackett/System.Numerics.Vectors.dll -2023-03-17 19:54:22.8585 Info Copied System.Numerics.Vectors.dll -2023-03-17 19:54:22.8585 Info Attempting to copy System.ObjectModel.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ObjectModel.dll to destination: /app/Jackett/System.ObjectModel.dll -2023-03-17 19:54:22.8595 Info Copied System.ObjectModel.dll -2023-03-17 19:54:22.8597 Info Attempting to copy System.Private.CoreLib.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Private.CoreLib.dll to destination: /app/Jackett/System.Private.CoreLib.dll -2023-03-17 19:54:22.8773 Info Copied System.Private.CoreLib.dll -2023-03-17 19:54:22.8773 Info Attempting to copy System.Private.DataContractSerialization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Private.DataContractSerialization.dll to destination: /app/Jackett/System.Private.DataContractSerialization.dll -2023-03-17 19:54:22.9367 Info Copied System.Private.DataContractSerialization.dll -2023-03-17 19:54:22.9367 Info Attempting to copy System.Private.Uri.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Private.Uri.dll to destination: /app/Jackett/System.Private.Uri.dll -2023-03-17 19:54:22.9394 Info Copied System.Private.Uri.dll -2023-03-17 19:54:22.9398 Info Attempting to copy System.Private.Xml.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Private.Xml.dll to destination: /app/Jackett/System.Private.Xml.dll -2023-03-17 19:54:22.9748 Info Copied System.Private.Xml.dll -2023-03-17 19:54:22.9748 Info Attempting to copy System.Private.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Private.Xml.Linq.dll to destination: /app/Jackett/System.Private.Xml.Linq.dll -2023-03-17 19:54:22.9783 Info Copied System.Private.Xml.Linq.dll -2023-03-17 19:54:22.9790 Info Attempting to copy System.Reflection.DispatchProxy.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.DispatchProxy.dll to destination: /app/Jackett/System.Reflection.DispatchProxy.dll -2023-03-17 19:54:22.9804 Info Copied System.Reflection.DispatchProxy.dll -2023-03-17 19:54:22.9807 Info Attempting to copy System.Reflection.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.dll to destination: /app/Jackett/System.Reflection.dll -2023-03-17 19:54:22.9817 Info Copied System.Reflection.dll -2023-03-17 19:54:22.9817 Info Attempting to copy System.Reflection.Emit.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.Emit.dll to destination: /app/Jackett/System.Reflection.Emit.dll -2023-03-17 19:54:22.9830 Info Copied System.Reflection.Emit.dll -2023-03-17 19:54:22.9830 Info Attempting to copy System.Reflection.Emit.ILGeneration.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.Emit.ILGeneration.dll to destination: /app/Jackett/System.Reflection.Emit.ILGeneration.dll -2023-03-17 19:54:22.9843 Info Copied System.Reflection.Emit.ILGeneration.dll -2023-03-17 19:54:22.9843 Info Attempting to copy System.Reflection.Emit.Lightweight.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.Emit.Lightweight.dll to destination: /app/Jackett/System.Reflection.Emit.Lightweight.dll -2023-03-17 19:54:22.9856 Info Copied System.Reflection.Emit.Lightweight.dll -2023-03-17 19:54:22.9860 Info Attempting to copy System.Reflection.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.Extensions.dll to destination: /app/Jackett/System.Reflection.Extensions.dll -2023-03-17 19:54:22.9870 Info Copied System.Reflection.Extensions.dll -2023-03-17 19:54:22.9870 Info Attempting to copy System.Reflection.Metadata.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.Metadata.dll to destination: /app/Jackett/System.Reflection.Metadata.dll -2023-03-17 19:54:22.9925 Info Copied System.Reflection.Metadata.dll -2023-03-17 19:54:22.9929 Info Attempting to copy System.Reflection.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.Primitives.dll to destination: /app/Jackett/System.Reflection.Primitives.dll -2023-03-17 19:54:22.9939 Info Copied System.Reflection.Primitives.dll -2023-03-17 19:54:22.9939 Info Attempting to copy System.Reflection.TypeExtensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Reflection.TypeExtensions.dll to destination: /app/Jackett/System.Reflection.TypeExtensions.dll -2023-03-17 19:54:22.9952 Info Copied System.Reflection.TypeExtensions.dll -2023-03-17 19:54:22.9952 Info Attempting to copy System.Resources.Reader.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Resources.Reader.dll to destination: /app/Jackett/System.Resources.Reader.dll -2023-03-17 19:54:22.9965 Info Copied System.Resources.Reader.dll -2023-03-17 19:54:22.9969 Info Attempting to copy System.Resources.ResourceManager.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Resources.ResourceManager.dll to destination: /app/Jackett/System.Resources.ResourceManager.dll -2023-03-17 19:54:22.9978 Info Copied System.Resources.ResourceManager.dll -2023-03-17 19:54:22.9978 Info Attempting to copy System.Resources.Writer.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Resources.Writer.dll to destination: /app/Jackett/System.Resources.Writer.dll -2023-03-17 19:54:22.9991 Info Copied System.Resources.Writer.dll -2023-03-17 19:54:22.9991 Info Attempting to copy System.Runtime.CompilerServices.Unsafe.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.CompilerServices.Unsafe.dll to destination: /app/Jackett/System.Runtime.CompilerServices.Unsafe.dll -2023-03-17 19:54:23.0005 Info Copied System.Runtime.CompilerServices.Unsafe.dll -2023-03-17 19:54:23.0009 Info Attempting to copy System.Runtime.CompilerServices.VisualC.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.CompilerServices.VisualC.dll to destination: /app/Jackett/System.Runtime.CompilerServices.VisualC.dll -2023-03-17 19:54:23.0018 Info Copied System.Runtime.CompilerServices.VisualC.dll -2023-03-17 19:54:23.0018 Info Attempting to copy System.Runtime.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.dll to destination: /app/Jackett/System.Runtime.dll -2023-03-17 19:54:23.0031 Info Copied System.Runtime.dll -2023-03-17 19:54:23.0031 Info Attempting to copy System.Runtime.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Extensions.dll to destination: /app/Jackett/System.Runtime.Extensions.dll -2023-03-17 19:54:23.0043 Info Copied System.Runtime.Extensions.dll -2023-03-17 19:54:23.0047 Info Attempting to copy System.Runtime.Handles.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Handles.dll to destination: /app/Jackett/System.Runtime.Handles.dll -2023-03-17 19:54:23.0047 Info Copied System.Runtime.Handles.dll -2023-03-17 19:54:23.0059 Info Attempting to copy System.Runtime.InteropServices.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.InteropServices.dll to destination: /app/Jackett/System.Runtime.InteropServices.dll -2023-03-17 19:54:23.0070 Info Copied System.Runtime.InteropServices.dll -2023-03-17 19:54:23.0070 Info Attempting to copy System.Runtime.InteropServices.RuntimeInformation.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll to destination: /app/Jackett/System.Runtime.InteropServices.RuntimeInformation.dll -2023-03-17 19:54:23.0085 Info Copied System.Runtime.InteropServices.RuntimeInformation.dll -2023-03-17 19:54:23.0088 Info Attempting to copy System.Runtime.Intrinsics.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Intrinsics.dll to destination: /app/Jackett/System.Runtime.Intrinsics.dll -2023-03-17 19:54:23.0098 Info Copied System.Runtime.Intrinsics.dll -2023-03-17 19:54:23.0098 Info Attempting to copy System.Runtime.Loader.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Loader.dll to destination: /app/Jackett/System.Runtime.Loader.dll -2023-03-17 19:54:23.0112 Info Copied System.Runtime.Loader.dll -2023-03-17 19:54:23.0112 Info Attempting to copy System.Runtime.Numerics.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Numerics.dll to destination: /app/Jackett/System.Runtime.Numerics.dll -2023-03-17 19:54:23.0133 Info Copied System.Runtime.Numerics.dll -2023-03-17 19:54:23.0133 Info Attempting to copy System.Runtime.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Serialization.dll to destination: /app/Jackett/System.Runtime.Serialization.dll -2023-03-17 19:54:23.0146 Info Copied System.Runtime.Serialization.dll -2023-03-17 19:54:23.0149 Info Attempting to copy System.Runtime.Serialization.Formatters.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Serialization.Formatters.dll to destination: /app/Jackett/System.Runtime.Serialization.Formatters.dll -2023-03-17 19:54:23.0447 Info Copied System.Runtime.Serialization.Formatters.dll -2023-03-17 19:54:23.0447 Info Attempting to copy System.Runtime.Serialization.Json.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Serialization.Json.dll to destination: /app/Jackett/System.Runtime.Serialization.Json.dll -2023-03-17 19:54:23.0464 Info Copied System.Runtime.Serialization.Json.dll -2023-03-17 19:54:23.0468 Info Attempting to copy System.Runtime.Serialization.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Serialization.Primitives.dll to destination: /app/Jackett/System.Runtime.Serialization.Primitives.dll -2023-03-17 19:54:23.0479 Info Copied System.Runtime.Serialization.Primitives.dll -2023-03-17 19:54:23.0479 Info Attempting to copy System.Runtime.Serialization.Xml.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Runtime.Serialization.Xml.dll to destination: /app/Jackett/System.Runtime.Serialization.Xml.dll -2023-03-17 19:54:23.0492 Info Copied System.Runtime.Serialization.Xml.dll -2023-03-17 19:54:23.0497 Info Attempting to copy System.Security.AccessControl.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.AccessControl.dll to destination: /app/Jackett/System.Security.AccessControl.dll -2023-03-17 19:54:23.0510 Info Copied System.Security.AccessControl.dll -2023-03-17 19:54:23.0510 Info Attempting to copy System.Security.Claims.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Claims.dll to destination: /app/Jackett/System.Security.Claims.dll -2023-03-17 19:54:23.0528 Info Copied System.Security.Claims.dll -2023-03-17 19:54:23.0528 Info Attempting to copy System.Security.Cryptography.Algorithms.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.Algorithms.dll to destination: /app/Jackett/System.Security.Cryptography.Algorithms.dll -2023-03-17 19:54:23.0569 Info Copied System.Security.Cryptography.Algorithms.dll -2023-03-17 19:54:23.0569 Info Attempting to copy System.Security.Cryptography.Cng.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.Cng.dll to destination: /app/Jackett/System.Security.Cryptography.Cng.dll -2023-03-17 19:54:23.0585 Info Copied System.Security.Cryptography.Cng.dll -2023-03-17 19:54:23.0588 Info Attempting to copy System.Security.Cryptography.Csp.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.Csp.dll to destination: /app/Jackett/System.Security.Cryptography.Csp.dll -2023-03-17 19:54:23.0605 Info Copied System.Security.Cryptography.Csp.dll -2023-03-17 19:54:23.0609 Info Attempting to copy System.Security.Cryptography.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.Encoding.dll to destination: /app/Jackett/System.Security.Cryptography.Encoding.dll -2023-03-17 19:54:23.0624 Info Copied System.Security.Cryptography.Encoding.dll -2023-03-17 19:54:23.0628 Info Attempting to copy System.Security.Cryptography.OpenSsl.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.OpenSsl.dll to destination: /app/Jackett/System.Security.Cryptography.OpenSsl.dll -2023-03-17 19:54:23.0737 Info Copied System.Security.Cryptography.OpenSsl.dll -2023-03-17 19:54:23.0737 Info Attempting to copy System.Security.Cryptography.Pkcs.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.Pkcs.dll to destination: /app/Jackett/System.Security.Cryptography.Pkcs.dll -2023-03-17 19:54:23.0778 Info Copied System.Security.Cryptography.Pkcs.dll -2023-03-17 19:54:23.0778 Info Attempting to copy System.Security.Cryptography.Primitives.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.Primitives.dll to destination: /app/Jackett/System.Security.Cryptography.Primitives.dll -2023-03-17 19:54:23.0798 Info Copied System.Security.Cryptography.Primitives.dll -2023-03-17 19:54:23.0798 Info Attempting to copy System.Security.Cryptography.ProtectedData.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.ProtectedData.dll to destination: /app/Jackett/System.Security.Cryptography.ProtectedData.dll -2023-03-17 19:54:23.0812 Info Copied System.Security.Cryptography.ProtectedData.dll -2023-03-17 19:54:23.0812 Info Attempting to copy System.Security.Cryptography.X509Certificates.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.X509Certificates.dll to destination: /app/Jackett/System.Security.Cryptography.X509Certificates.dll -2023-03-17 19:54:23.0857 Info Copied System.Security.Cryptography.X509Certificates.dll -2023-03-17 19:54:23.0857 Info Attempting to copy System.Security.Cryptography.Xml.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Cryptography.Xml.dll to destination: /app/Jackett/System.Security.Cryptography.Xml.dll -2023-03-17 19:54:23.0889 Info Copied System.Security.Cryptography.Xml.dll -2023-03-17 19:54:23.0889 Info Attempting to copy System.Security.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.dll to destination: /app/Jackett/System.Security.dll -2023-03-17 19:54:23.0902 Info Copied System.Security.dll -2023-03-17 19:54:23.0902 Info Attempting to copy System.Security.Principal.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Principal.dll to destination: /app/Jackett/System.Security.Principal.dll -2023-03-17 19:54:23.0915 Info Copied System.Security.Principal.dll -2023-03-17 19:54:23.0918 Info Attempting to copy System.Security.Principal.Windows.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.Principal.Windows.dll to destination: /app/Jackett/System.Security.Principal.Windows.dll -2023-03-17 19:54:23.0930 Info Copied System.Security.Principal.Windows.dll -2023-03-17 19:54:23.0930 Info Attempting to copy System.Security.SecureString.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Security.SecureString.dll to destination: /app/Jackett/System.Security.SecureString.dll -2023-03-17 19:54:23.0943 Info Copied System.Security.SecureString.dll -2023-03-17 19:54:23.0943 Info Attempting to copy System.ServiceModel.Web.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ServiceModel.Web.dll to destination: /app/Jackett/System.ServiceModel.Web.dll -2023-03-17 19:54:23.0957 Info Copied System.ServiceModel.Web.dll -2023-03-17 19:54:23.0957 Info Attempting to copy System.ServiceProcess.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ServiceProcess.dll to destination: /app/Jackett/System.ServiceProcess.dll -2023-03-17 19:54:23.0971 Info Copied System.ServiceProcess.dll -2023-03-17 19:54:23.0971 Info Attempting to copy System.ServiceProcess.ServiceController.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ServiceProcess.ServiceController.dll to destination: /app/Jackett/System.ServiceProcess.ServiceController.dll -2023-03-17 19:54:23.0984 Info Copied System.ServiceProcess.ServiceController.dll -2023-03-17 19:54:23.0988 Info Attempting to copy System.Text.Encoding.CodePages.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Text.Encoding.CodePages.dll to destination: /app/Jackett/System.Text.Encoding.CodePages.dll -2023-03-17 19:54:23.1034 Info Copied System.Text.Encoding.CodePages.dll -2023-03-17 19:54:23.1037 Info Attempting to copy System.Text.Encoding.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Text.Encoding.dll to destination: /app/Jackett/System.Text.Encoding.dll -2023-03-17 19:54:23.1037 Info Copied System.Text.Encoding.dll -2023-03-17 19:54:23.1049 Info Attempting to copy System.Text.Encoding.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Text.Encoding.Extensions.dll to destination: /app/Jackett/System.Text.Encoding.Extensions.dll -2023-03-17 19:54:23.1058 Info Copied System.Text.Encoding.Extensions.dll -2023-03-17 19:54:23.1058 Info Attempting to copy System.Text.Encodings.Web.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Text.Encodings.Web.dll to destination: /app/Jackett/System.Text.Encodings.Web.dll -2023-03-17 19:54:23.1079 Info Copied System.Text.Encodings.Web.dll -2023-03-17 19:54:23.1079 Info Attempting to copy System.Text.Json.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Text.Json.dll to destination: /app/Jackett/System.Text.Json.dll -2023-03-17 19:54:23.1159 Info Copied System.Text.Json.dll -2023-03-17 19:54:23.1159 Info Attempting to copy System.Text.RegularExpressions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Text.RegularExpressions.dll to destination: /app/Jackett/System.Text.RegularExpressions.dll -2023-03-17 19:54:23.1195 Info Copied System.Text.RegularExpressions.dll -2023-03-17 19:54:23.1199 Info Attempting to copy System.Threading.Channels.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.Channels.dll to destination: /app/Jackett/System.Threading.Channels.dll -2023-03-17 19:54:23.1213 Info Copied System.Threading.Channels.dll -2023-03-17 19:54:23.1217 Info Attempting to copy System.Threading.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.dll to destination: /app/Jackett/System.Threading.dll -2023-03-17 19:54:23.1231 Info Copied System.Threading.dll -2023-03-17 19:54:23.1231 Info Attempting to copy System.Threading.Overlapped.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.Overlapped.dll to destination: /app/Jackett/System.Threading.Overlapped.dll -2023-03-17 19:54:23.1243 Info Copied System.Threading.Overlapped.dll -2023-03-17 19:54:23.1243 Info Attempting to copy System.Threading.Tasks.Dataflow.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.Tasks.Dataflow.dll to destination: /app/Jackett/System.Threading.Tasks.Dataflow.dll -2023-03-17 19:54:23.1302 Info Copied System.Threading.Tasks.Dataflow.dll -2023-03-17 19:54:23.1307 Info Attempting to copy System.Threading.Tasks.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.Tasks.dll to destination: /app/Jackett/System.Threading.Tasks.dll -2023-03-17 19:54:23.1307 Info Copied System.Threading.Tasks.dll -2023-03-17 19:54:23.1320 Info Attempting to copy System.Threading.Tasks.Extensions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.Tasks.Extensions.dll to destination: /app/Jackett/System.Threading.Tasks.Extensions.dll -2023-03-17 19:54:23.1329 Info Copied System.Threading.Tasks.Extensions.dll -2023-03-17 19:54:23.1329 Info Attempting to copy System.Threading.Tasks.Parallel.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.Tasks.Parallel.dll to destination: /app/Jackett/System.Threading.Tasks.Parallel.dll -2023-03-17 19:54:23.1348 Info Copied System.Threading.Tasks.Parallel.dll -2023-03-17 19:54:23.1348 Info Attempting to copy System.Threading.Thread.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.Thread.dll to destination: /app/Jackett/System.Threading.Thread.dll -2023-03-17 19:54:23.1360 Info Copied System.Threading.Thread.dll -2023-03-17 19:54:23.1360 Info Attempting to copy System.Threading.ThreadPool.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.ThreadPool.dll to destination: /app/Jackett/System.Threading.ThreadPool.dll -2023-03-17 19:54:23.1373 Info Copied System.Threading.ThreadPool.dll -2023-03-17 19:54:23.1373 Info Attempting to copy System.Threading.Timer.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Threading.Timer.dll to destination: /app/Jackett/System.Threading.Timer.dll -2023-03-17 19:54:23.1385 Info Copied System.Threading.Timer.dll -2023-03-17 19:54:23.1389 Info Attempting to copy System.Transactions.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Transactions.dll to destination: /app/Jackett/System.Transactions.dll -2023-03-17 19:54:23.1423 Info Copied System.Transactions.dll -2023-03-17 19:54:23.1427 Info Attempting to copy System.Transactions.Local.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Transactions.Local.dll to destination: /app/Jackett/System.Transactions.Local.dll -2023-03-17 19:54:23.1450 Info Copied System.Transactions.Local.dll -2023-03-17 19:54:23.1450 Info Attempting to copy System.ValueTuple.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.ValueTuple.dll to destination: /app/Jackett/System.ValueTuple.dll -2023-03-17 19:54:23.1463 Info Copied System.ValueTuple.dll -2023-03-17 19:54:23.1463 Info Attempting to copy System.Web.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Web.dll to destination: /app/Jackett/System.Web.dll -2023-03-17 19:54:23.1475 Info Copied System.Web.dll -2023-03-17 19:54:23.1478 Info Attempting to copy System.Web.HttpUtility.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Web.HttpUtility.dll to destination: /app/Jackett/System.Web.HttpUtility.dll -2023-03-17 19:54:23.1489 Info Copied System.Web.HttpUtility.dll -2023-03-17 19:54:23.1489 Info Attempting to copy System.Windows.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Windows.dll to destination: /app/Jackett/System.Windows.dll -2023-03-17 19:54:23.1504 Info Copied System.Windows.dll -2023-03-17 19:54:23.1507 Info Attempting to copy System.Xml.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.dll to destination: /app/Jackett/System.Xml.dll -2023-03-17 19:54:23.1517 Info Copied System.Xml.dll -2023-03-17 19:54:23.1517 Info Attempting to copy System.Xml.Linq.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.Linq.dll to destination: /app/Jackett/System.Xml.Linq.dll -2023-03-17 19:54:23.1528 Info Copied System.Xml.Linq.dll -2023-03-17 19:54:23.1528 Info Attempting to copy System.Xml.ReaderWriter.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.ReaderWriter.dll to destination: /app/Jackett/System.Xml.ReaderWriter.dll -2023-03-17 19:54:23.1541 Info Copied System.Xml.ReaderWriter.dll -2023-03-17 19:54:23.1541 Info Attempting to copy System.Xml.Serialization.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.Serialization.dll to destination: /app/Jackett/System.Xml.Serialization.dll -2023-03-17 19:54:23.1553 Info Copied System.Xml.Serialization.dll -2023-03-17 19:54:23.1553 Info Attempting to copy System.Xml.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.XDocument.dll to destination: /app/Jackett/System.Xml.XDocument.dll -2023-03-17 19:54:23.1565 Info Copied System.Xml.XDocument.dll -2023-03-17 19:54:23.1568 Info Attempting to copy System.Xml.XmlDocument.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.XmlDocument.dll to destination: /app/Jackett/System.Xml.XmlDocument.dll -2023-03-17 19:54:23.1577 Info Copied System.Xml.XmlDocument.dll -2023-03-17 19:54:23.1577 Info Attempting to copy System.Xml.XmlSerializer.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.XmlSerializer.dll to destination: /app/Jackett/System.Xml.XmlSerializer.dll -2023-03-17 19:54:23.1590 Info Copied System.Xml.XmlSerializer.dll -2023-03-17 19:54:23.1590 Info Attempting to copy System.Xml.XPath.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.XPath.dll to destination: /app/Jackett/System.Xml.XPath.dll -2023-03-17 19:54:23.1602 Info Copied System.Xml.XPath.dll -2023-03-17 19:54:23.1602 Info Attempting to copy System.Xml.XPath.XDocument.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/System.Xml.XPath.XDocument.dll to destination: /app/Jackett/System.Xml.XPath.XDocument.dll -2023-03-17 19:54:23.1614 Info Copied System.Xml.XPath.XDocument.dll -2023-03-17 19:54:23.1614 Info Attempting to copy WindowsBase.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/WindowsBase.dll to destination: /app/Jackett/WindowsBase.dll -2023-03-17 19:54:23.1614 Info Copied WindowsBase.dll -2023-03-17 19:54:23.1630 Info Attempting to copy YamlDotNet.dll from source: /tmp/JackettUpdate-v0.20.3617-638146796575272988/Jackett/YamlDotNet.dll to destination: /app/Jackett/YamlDotNet.dll -2023-03-17 19:54:23.1719 Info Copied YamlDotNet.dll -2023-03-17 19:54:23.1719 Info File copying complete -2023-03-17 19:54:23.2165 Info Killing process 307 -2023-03-17 19:54:26.3006 Info Process 307 didn't exit within 2 seconds after a SIGTERM -2023-03-18 20:54:40.0224 Info Jackett Updater v0.20.3627 -2023-03-18 20:54:40.1233 Info Options "--Path" "/app/Jackett" "--Type" "Console" "--Args" " --NoRestart" "--KillPids" "383" "--NoRestart" -2023-03-18 20:54:40.1275 Info Jackett variant: CoreLinuxMuslAmdx64 -2023-03-18 20:54:40.3371 Info Attempting to remove: /app/Jackett/DateTimeRoutines.pdb -2023-03-18 20:54:40.3379 Info Deleted /app/Jackett/DateTimeRoutines.pdb -2023-03-18 20:54:40.3379 Info Attempting to remove: /app/Jackett/Jackett.Common.pdb -2023-03-18 20:54:40.3379 Info Deleted /app/Jackett/Jackett.Common.pdb -2023-03-18 20:54:40.3388 Info Attempting to remove: /app/Jackett/JackettUpdater.pdb -2023-03-18 20:54:40.3388 Info Deleted /app/Jackett/JackettUpdater.pdb -2023-03-18 20:54:40.3388 Info Attempting to remove: /app/Jackett/jackett.pdb -2023-03-18 20:54:40.3397 Info Deleted /app/Jackett/jackett.pdb -2023-03-18 20:54:40.3397 Info Attempting to remove: /app/Jackett/jackett -2023-03-18 20:54:40.3397 Info Deleted /app/Jackett/jackett -2023-03-18 20:54:40.3397 Info Finding files in: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/ -2023-03-18 20:54:40.3462 Info 892 update files found -2023-03-18 20:54:40.3473 Info Attempting to copy AngleSharp.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/AngleSharp.dll to destination: /app/Jackett/AngleSharp.dll -2023-03-18 20:54:40.3505 Info Copied AngleSharp.dll -2023-03-18 20:54:40.3508 Info Attempting to copy AngleSharp.Xml.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/AngleSharp.Xml.dll to destination: /app/Jackett/AngleSharp.Xml.dll -2023-03-18 20:54:40.3508 Info Copied AngleSharp.Xml.dll -2023-03-18 20:54:40.3508 Info Attempting to copy Autofac.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Autofac.dll to destination: /app/Jackett/Autofac.dll -2023-03-18 20:54:40.3535 Info Copied Autofac.dll -2023-03-18 20:54:40.3535 Info Attempting to copy Autofac.Extensions.DependencyInjection.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Autofac.Extensions.DependencyInjection.dll to destination: /app/Jackett/Autofac.Extensions.DependencyInjection.dll -2023-03-18 20:54:40.3535 Info Copied Autofac.Extensions.DependencyInjection.dll -2023-03-18 20:54:40.3535 Info Attempting to copy AutoMapper.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/AutoMapper.dll to destination: /app/Jackett/AutoMapper.dll -2023-03-18 20:54:40.3555 Info Copied AutoMapper.dll -2023-03-18 20:54:40.3557 Info Attempting to copy BencodeNET.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/BencodeNET.dll to destination: /app/Jackett/BencodeNET.dll -2023-03-18 20:54:40.3557 Info Copied BencodeNET.dll -2023-03-18 20:54:40.3557 Info Attempting to copy CommandLine.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/CommandLine.dll to destination: /app/Jackett/CommandLine.dll -2023-03-18 20:54:40.3581 Info Copied CommandLine.dll -2023-03-18 20:54:40.3581 Info Attempting to copy animate.css from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/animate.css to destination: /app/Jackett/Content/animate.css -2023-03-18 20:54:40.3590 Info Copied animate.css -2023-03-18 20:54:40.3590 Info Attempting to copy apple-touch-icon.png from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/apple-touch-icon.png to destination: /app/Jackett/Content/apple-touch-icon.png -2023-03-18 20:54:40.3597 Info Copied apple-touch-icon.png -2023-03-18 20:54:40.3597 Info Attempting to copy binding_dark.png from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/binding_dark.png to destination: /app/Jackett/Content/binding_dark.png -2023-03-18 20:54:40.3597 Info Copied binding_dark.png -2023-03-18 20:54:40.3597 Info Attempting to copy bootstrap.min.css from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/bootstrap/bootstrap.min.css to destination: /app/Jackett/Content/bootstrap/bootstrap.min.css -2023-03-18 20:54:40.3614 Info Copied bootstrap.min.css -2023-03-18 20:54:40.3614 Info Attempting to copy bootstrap.min.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/bootstrap/bootstrap.min.js to destination: /app/Jackett/Content/bootstrap/bootstrap.min.js -2023-03-18 20:54:40.3621 Info Copied bootstrap.min.js -2023-03-18 20:54:40.3621 Info Attempting to copy common.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/common.js to destination: /app/Jackett/Content/common.js -2023-03-18 20:54:40.3627 Info Copied common.js -2023-03-18 20:54:40.3627 Info Attempting to copy bootstrap-multiselect.css from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/css/bootstrap-multiselect.css to destination: /app/Jackett/Content/css/bootstrap-multiselect.css -2023-03-18 20:54:40.3627 Info Copied bootstrap-multiselect.css -2023-03-18 20:54:40.3637 Info Attempting to copy font-awesome.min.css from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/css/font-awesome.min.css to destination: /app/Jackett/Content/css/font-awesome.min.css -2023-03-18 20:54:40.3637 Info Copied font-awesome.min.css -2023-03-18 20:54:40.3637 Info Attempting to copy jquery.dataTables.min.css from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/css/jquery.dataTables.min.css to destination: /app/Jackett/Content/css/jquery.dataTables.min.css -2023-03-18 20:54:40.3648 Info Copied jquery.dataTables.min.css -2023-03-18 20:54:40.3648 Info Attempting to copy tagify.css from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/css/tagify.css to destination: /app/Jackett/Content/css/tagify.css -2023-03-18 20:54:40.3648 Info Copied tagify.css -2023-03-18 20:54:40.3657 Info Attempting to copy custom_mobile.css from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/custom_mobile.css to destination: /app/Jackett/Content/custom_mobile.css -2023-03-18 20:54:40.3657 Info Copied custom_mobile.css -2023-03-18 20:54:40.3657 Info Attempting to copy custom.css from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/custom.css to destination: /app/Jackett/Content/custom.css -2023-03-18 20:54:40.3669 Info Copied custom.css -2023-03-18 20:54:40.3669 Info Attempting to copy custom.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/custom.js to destination: /app/Jackett/Content/custom.js -2023-03-18 20:54:40.3676 Info Copied custom.js -2023-03-18 20:54:40.3676 Info Attempting to copy favicon.ico from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/favicon.ico to destination: /app/Jackett/Content/favicon.ico -2023-03-18 20:54:40.3676 Info Copied favicon.ico -2023-03-18 20:54:40.3687 Info Attempting to copy fontawesome-webfont.eot from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/fontawesome-webfont.eot to destination: /app/Jackett/Content/fonts/fontawesome-webfont.eot -2023-03-18 20:54:40.3687 Info Copied fontawesome-webfont.eot -2023-03-18 20:54:40.3687 Info Attempting to copy fontawesome-webfont.svg from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/fontawesome-webfont.svg to destination: /app/Jackett/Content/fonts/fontawesome-webfont.svg -2023-03-18 20:54:40.3704 Info Copied fontawesome-webfont.svg -2023-03-18 20:54:40.3707 Info Attempting to copy fontawesome-webfont.ttf from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/fontawesome-webfont.ttf to destination: /app/Jackett/Content/fonts/fontawesome-webfont.ttf -2023-03-18 20:54:40.3707 Info Copied fontawesome-webfont.ttf -2023-03-18 20:54:40.3707 Info Attempting to copy fontawesome-webfont.woff from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/fontawesome-webfont.woff to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff -2023-03-18 20:54:40.3722 Info Copied fontawesome-webfont.woff -2023-03-18 20:54:40.3722 Info Attempting to copy fontawesome-webfont.woff2 from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/fontawesome-webfont.woff2 to destination: /app/Jackett/Content/fonts/fontawesome-webfont.woff2 -2023-03-18 20:54:40.3729 Info Copied fontawesome-webfont.woff2 -2023-03-18 20:54:40.3729 Info Attempting to copy FontAwesome.otf from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/FontAwesome.otf to destination: /app/Jackett/Content/fonts/FontAwesome.otf -2023-03-18 20:54:40.3737 Info Copied FontAwesome.otf -2023-03-18 20:54:40.3737 Info Attempting to copy glyphicons-halflings-regular.eot from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/glyphicons-halflings-regular.eot to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.eot -2023-03-18 20:54:40.3737 Info Copied glyphicons-halflings-regular.eot -2023-03-18 20:54:40.3737 Info Attempting to copy glyphicons-halflings-regular.svg from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/glyphicons-halflings-regular.svg to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.svg -2023-03-18 20:54:40.3753 Info Copied glyphicons-halflings-regular.svg -2023-03-18 20:54:40.3753 Info Attempting to copy glyphicons-halflings-regular.ttf from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/glyphicons-halflings-regular.ttf to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.ttf -2023-03-18 20:54:40.3760 Info Copied glyphicons-halflings-regular.ttf -2023-03-18 20:54:40.3760 Info Attempting to copy glyphicons-halflings-regular.woff from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/glyphicons-halflings-regular.woff to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff -2023-03-18 20:54:40.3767 Info Copied glyphicons-halflings-regular.woff -2023-03-18 20:54:40.3767 Info Attempting to copy glyphicons-halflings-regular.woff2 from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 to destination: /app/Jackett/Content/fonts/glyphicons-halflings-regular.woff2 -2023-03-18 20:54:40.3767 Info Copied glyphicons-halflings-regular.woff2 -2023-03-18 20:54:40.3767 Info Attempting to copy sort_asc_disabled.png from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/images/sort_asc_disabled.png to destination: /app/Jackett/Content/images/sort_asc_disabled.png -2023-03-18 20:54:40.3781 Info Copied sort_asc_disabled.png -2023-03-18 20:54:40.3781 Info Attempting to copy sort_asc.png from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/images/sort_asc.png to destination: /app/Jackett/Content/images/sort_asc.png -2023-03-18 20:54:40.3787 Info Copied sort_asc.png -2023-03-18 20:54:40.3787 Info Attempting to copy sort_both.png from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/images/sort_both.png to destination: /app/Jackett/Content/images/sort_both.png -2023-03-18 20:54:40.3787 Info Copied sort_both.png -2023-03-18 20:54:40.3787 Info Attempting to copy sort_desc_disabled.png from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/images/sort_desc_disabled.png to destination: /app/Jackett/Content/images/sort_desc_disabled.png -2023-03-18 20:54:40.3801 Info Copied sort_desc_disabled.png -2023-03-18 20:54:40.3801 Info Attempting to copy sort_desc.png from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/images/sort_desc.png to destination: /app/Jackett/Content/images/sort_desc.png -2023-03-18 20:54:40.3808 Info Copied sort_desc.png -2023-03-18 20:54:40.3808 Info Attempting to copy index.html from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/index.html to destination: /app/Jackett/Content/index.html -2023-03-18 20:54:40.3808 Info Copied index.html -2023-03-18 20:54:40.3818 Info Attempting to copy jacket_medium.png from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/jacket_medium.png to destination: /app/Jackett/Content/jacket_medium.png -2023-03-18 20:54:40.3818 Info Copied jacket_medium.png -2023-03-18 20:54:40.3818 Info Attempting to copy api.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/api.js to destination: /app/Jackett/Content/libs/api.js -2023-03-18 20:54:40.3829 Info Copied api.js -2023-03-18 20:54:40.3829 Info Attempting to copy bootstrap-multiselect.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/bootstrap-multiselect.js to destination: /app/Jackett/Content/libs/bootstrap-multiselect.js -2023-03-18 20:54:40.3837 Info Copied bootstrap-multiselect.js -2023-03-18 20:54:40.3837 Info Attempting to copy bootstrap-notify.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/bootstrap-notify.js to destination: /app/Jackett/Content/libs/bootstrap-notify.js -2023-03-18 20:54:40.3837 Info Copied bootstrap-notify.js -2023-03-18 20:54:40.3837 Info Attempting to copy filesize.min.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/filesize.min.js to destination: /app/Jackett/Content/libs/filesize.min.js -2023-03-18 20:54:40.3851 Info Copied filesize.min.js -2023-03-18 20:54:40.3851 Info Attempting to copy handlebars.min.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/handlebars.min.js to destination: /app/Jackett/Content/libs/handlebars.min.js -2023-03-18 20:54:40.3859 Info Copied handlebars.min.js -2023-03-18 20:54:40.3859 Info Attempting to copy handlebarsextend.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/handlebarsextend.js to destination: /app/Jackett/Content/libs/handlebarsextend.js -2023-03-18 20:54:40.3859 Info Copied handlebarsextend.js -2023-03-18 20:54:40.3867 Info Attempting to copy handlebarsmoment.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/handlebarsmoment.js to destination: /app/Jackett/Content/libs/handlebarsmoment.js -2023-03-18 20:54:40.3867 Info Copied handlebarsmoment.js -2023-03-18 20:54:40.3867 Info Attempting to copy jquery.dataTables.min.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/jquery.dataTables.min.js to destination: /app/Jackett/Content/libs/jquery.dataTables.min.js -2023-03-18 20:54:40.3880 Info Copied jquery.dataTables.min.js -2023-03-18 20:54:40.3880 Info Attempting to copy jquery.min.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/jquery.min.js to destination: /app/Jackett/Content/libs/jquery.min.js -2023-03-18 20:54:40.3897 Info Copied jquery.min.js -2023-03-18 20:54:40.3897 Info Attempting to copy jQuery.tagify.min.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/jQuery.tagify.min.js to destination: /app/Jackett/Content/libs/jQuery.tagify.min.js -2023-03-18 20:54:40.3897 Info Copied jQuery.tagify.min.js -2023-03-18 20:54:40.3907 Info Attempting to copy moment.min.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/moment.min.js to destination: /app/Jackett/Content/libs/moment.min.js -2023-03-18 20:54:40.3907 Info Copied moment.min.js -2023-03-18 20:54:40.3907 Info Attempting to copy tagify.min.js from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/libs/tagify.min.js to destination: /app/Jackett/Content/libs/tagify.min.js -2023-03-18 20:54:40.3920 Info Copied tagify.min.js -2023-03-18 20:54:40.3920 Info Attempting to copy login.html from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Content/login.html to destination: /app/Jackett/Content/login.html -2023-03-18 20:54:40.3920 Info Copied login.html -2023-03-18 20:54:40.3928 Info Attempting to copy createdump from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/createdump to destination: /app/Jackett/createdump -2023-03-18 20:54:40.3928 Info Copied createdump -2023-03-18 20:54:40.3937 Info Attempting to copy DateTimeRoutines.dll from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/DateTimeRoutines.dll to destination: /app/Jackett/DateTimeRoutines.dll -2023-03-18 20:54:40.3937 Info Copied DateTimeRoutines.dll -2023-03-18 20:54:40.3937 Info Attempting to copy DateTimeRoutines.pdb from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/DateTimeRoutines.pdb to destination: /app/Jackett/DateTimeRoutines.pdb -2023-03-18 20:54:40.3949 Info Copied DateTimeRoutines.pdb -2023-03-18 20:54:40.3949 Info Attempting to copy 0daykiev.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/0daykiev.yml to destination: /app/Jackett/Definitions/0daykiev.yml -2023-03-18 20:54:40.3949 Info Copied 0daykiev.yml -2023-03-18 20:54:40.3958 Info Attempting to copy 0magnet.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/0magnet.yml to destination: /app/Jackett/Definitions/0magnet.yml -2023-03-18 20:54:40.3958 Info Copied 0magnet.yml -2023-03-18 20:54:40.3958 Info Attempting to copy 1337x.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/1337x.yml to destination: /app/Jackett/Definitions/1337x.yml -2023-03-18 20:54:40.3969 Info Copied 1337x.yml -2023-03-18 20:54:40.3969 Info Attempting to copy 1ptbar.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/1ptbar.yml to destination: /app/Jackett/Definitions/1ptbar.yml -2023-03-18 20:54:40.3969 Info Copied 1ptbar.yml -2023-03-18 20:54:40.3977 Info Attempting to copy 2fast4you.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/2fast4you.yml to destination: /app/Jackett/Definitions/2fast4you.yml -2023-03-18 20:54:40.3977 Info Copied 2fast4you.yml -2023-03-18 20:54:40.3977 Info Attempting to copy 2xfree.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/2xfree.yml to destination: /app/Jackett/Definitions/2xfree.yml -2023-03-18 20:54:40.3988 Info Copied 2xfree.yml -2023-03-18 20:54:40.3988 Info Attempting to copy 3changtrai.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/3changtrai.yml to destination: /app/Jackett/Definitions/3changtrai.yml -2023-03-18 20:54:40.3988 Info Copied 3changtrai.yml -2023-03-18 20:54:40.3988 Info Attempting to copy 3dtorrents.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/3dtorrents.yml to destination: /app/Jackett/Definitions/3dtorrents.yml -2023-03-18 20:54:40.4000 Info Copied 3dtorrents.yml -2023-03-18 20:54:40.4000 Info Attempting to copy 4thd.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/4thd.yml to destination: /app/Jackett/Definitions/4thd.yml -2023-03-18 20:54:40.4007 Info Copied 4thd.yml -2023-03-18 20:54:40.4007 Info Attempting to copy 52pt.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/52pt.yml to destination: /app/Jackett/Definitions/52pt.yml -2023-03-18 20:54:40.4007 Info Copied 52pt.yml -2023-03-18 20:54:40.4007 Info Attempting to copy abnormal.yml from source: /tmp/JackettUpdate-v0.20.3627-638147696771516210/Jackett/Definitions/abnormal.yml to destination: /app/Jackett/Definitions/abnormal.yml -2023-03-18 20:54:40.4019 Info Copied abnormal.yml diff --git a/tests/test_lidarr.py b/tests/test_lidarr.py index e8e9412..eed2fa3 100644 --- a/tests/test_lidarr.py +++ b/tests/test_lidarr.py @@ -1,4 +1,6 @@ import contextlib +from datetime import datetime +import random import pytest import responses @@ -10,8 +12,24 @@ PyarrResourceNotFound, ) from pyarr.lidarr import LidarrAPI -from pyarr.models.common import PyarrSortDirection -from pyarr.models.lidarr import LidarrArtistMonitor, LidarrCommand, LidarrSortKey +from pyarr.models.common import ( + PyarrBlocklistSortKey, + PyarrDownloadClientSchema, + PyarrHistorySortKey, + PyarrImportListSchema, + PyarrIndexerSchema, + PyarrLogFilterKey, + PyarrLogFilterValue, + PyarrLogSortKey, + PyarrNotificationSchema, + PyarrSortDirection, +) +from pyarr.models.lidarr import ( + LidarrArtistMonitor, + LidarrCommand, + LidarrImportListSchema, + LidarrSortKey, +) from tests import ( LIDARR_ALBUM_TERM, @@ -29,8 +47,8 @@ def test_add_root_folder(lidarr_client: LidarrAPI): data = lidarr_client.add_root_folder( name="test", path="/defaults/", - qualityProfile=qual_profile[0]["id"], - metadataProfile=meta_profile[0]["id"], + default_quality_profile_id=qual_profile[0]["id"], + default_metadata_profile_id=meta_profile[0]["id"], ) assert isinstance(data, dict) @@ -110,23 +128,7 @@ def test_upd_artist(lidarr_client: LidarrAPI): artist = lidarr_client.get_artist() - data = lidarr_client.upd_artist(data=artist) - assert isinstance(data, dict) - - -def test__album_json(lidarr_client: LidarrAPI): - qual_profile = lidarr_client.get_quality_profile() - meta_profile = lidarr_client.get_metadata_profile() - - data = lidarr_client._album_json( - id_=LIDARR_MUSICBRAINZ_ALBUM_ID, - root_dir="/", - quality_profile_id=qual_profile[0]["id"], - metadata_profile_id=meta_profile[0]["id"], - monitored=False, - artist_monitor=LidarrArtistMonitor.FIRST_ALBUM, - artist_search_for_missing_albums=False, - ) + data = lidarr_client.upd_artist(data=artist[0]) assert isinstance(data, dict) @@ -134,16 +136,24 @@ def test_add_album(lidarr_client: LidarrAPI): qual_profile = lidarr_client.get_quality_profile() meta_profile = lidarr_client.get_metadata_profile() + items = lidarr_client.lookup(f"lidarr:{LIDARR_MUSICBRAINZ_ALBUM_ID}") + + for item in items: + if "album" in item: + album = item["album"] + data = lidarr_client.add_album( + album=album, + root_dir="/defaults/", + quality_profile_id=qual_profile[0]["id"], + metadata_profile_id=meta_profile[0]["id"], + monitored=False, + artist_monitor=LidarrArtistMonitor.LATEST_ALBUM, + artist_search_for_missing_albums=False, + ) + break + if item == items[-1]: + assert False - data = lidarr_client.add_album( - id_=LIDARR_MUSICBRAINZ_ALBUM_ID, - root_dir="/defaults/", - quality_profile_id=qual_profile[0]["id"], - metadata_profile_id=meta_profile[0]["id"], - monitored=False, - artist_monitor=LidarrArtistMonitor.LATEST_ALBUM, - artist_search_for_missing_albums=False, - ) assert isinstance(data, dict) @@ -151,7 +161,7 @@ def test_upd_album(lidarr_client: LidarrAPI): album = lidarr_client.get_album() - data = lidarr_client.upd_album(data=album[0]["id"]) + data = lidarr_client.upd_album(data=album[0]) assert isinstance(data, dict) @@ -160,14 +170,11 @@ def test_get_album(lidarr_client: LidarrAPI): data = lidarr_client.get_album() assert isinstance(data, list) - data = lidarr_client.get_album(albumIds=data[0]["id"]) - assert isinstance(data, dict) - data = lidarr_client.get_album(artistId=data[0]["artistId"], allArtistAlbums=True) assert isinstance(data, list) data = lidarr_client.get_album(foreignAlbumId=LIDARR_MUSICBRAINZ_ARTIST_ID) - assert isinstance(data, dict) + assert isinstance(data, list) def test_post_command(lidarr_client: LidarrAPI): @@ -239,12 +246,9 @@ def test_get_tracks(lidarr_client: LidarrAPI): data = lidarr_client.get_tracks(albumId=album[0]["id"]) assert isinstance(data, list) - data = lidarr_client.get_tracks(albumReleaseId=1) + data = lidarr_client.get_tracks(albumReleaseId=album[0]["releases"][0]["id"]) assert isinstance(data, list) - data = lidarr_client.get_tracks(trackIds=1) - assert isinstance(data, dict) - with contextlib.suppress(PyarrMissingArgument): data = lidarr_client.get_tracks() assert False @@ -602,10 +606,471 @@ def test_get_manual_import(lidarr_mock_client: LidarrAPI): assert isinstance(data, list) +def test_get_calendar(lidarr_client: LidarrAPI): + + start = datetime.strptime("Nov 30 2020 1:33PM", "%b %d %Y %I:%M%p") + end = datetime.strptime("Dec 1 2020 1:33PM", "%b %d %Y %I:%M%p") + data = lidarr_client.get_calendar(start_date=start, end_date=end) + assert isinstance(data, list) + + start = datetime.strptime("Nov 30 2020 1:33PM", "%b %d %Y %I:%M%p") + end = datetime.strptime("Dec 1 2020 1:33PM", "%b %d %Y %I:%M%p") + data = lidarr_client.get_calendar(start_date=start, end_date=end, unmonitored=False) + assert isinstance(data, list) + + +def test_get_system_status(lidarr_client: LidarrAPI): + + data = lidarr_client.get_system_status() + assert isinstance(data, dict) + + +def test_get_health(lidarr_client: LidarrAPI): + + data = lidarr_client.get_health() + assert isinstance(data, list) + + +def test_get_metadata(lidarr_client: LidarrAPI): + + data = lidarr_client.get_metadata() + assert isinstance(data, list) + + data = lidarr_client.get_metadata(data[0]["id"]) + assert isinstance(data, dict) + + +def test_get_update(lidarr_client: LidarrAPI): + + data = lidarr_client.get_update() + assert isinstance(data, list) + + +def test_get_disk_space(lidarr_client: LidarrAPI): + + data = lidarr_client.get_disk_space() + assert isinstance(data, list) + + +def test_get_backup(lidarr_client: LidarrAPI): + + data = lidarr_client.get_backup() + assert isinstance(data, list) + + +def test_get_log(lidarr_client: LidarrAPI): + + data = lidarr_client.get_log() + assert isinstance(data, dict) + + data = lidarr_client.get_log( + page=10, + page_size=10, + sort_key=PyarrLogSortKey.ID, + sort_dir=PyarrSortDirection.DESC, + filter_key=PyarrLogFilterKey.LEVEL, + filter_value=PyarrLogFilterValue.ALL, + ) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = lidarr_client.get_log(sort_key=PyarrLogSortKey.ID) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = lidarr_client.get_log(sort_dir=PyarrSortDirection.DESC) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = lidarr_client.get_log(filter_key=PyarrLogFilterKey.LEVEL) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = lidarr_client.get_log(filter_value=PyarrLogFilterValue.ALL) + assert False + + +def test_get_task(lidarr_client: LidarrAPI): + + data = lidarr_client.get_task() + assert isinstance(data, list) + + data = lidarr_client.get_task(id_=data[0]["id"]) + assert isinstance(data, dict) + + +def test_get_config_ui(lidarr_client: LidarrAPI): + + data = lidarr_client.get_config_ui() + assert isinstance(data, dict) + + +def test_upd_config_ui(lidarr_client: LidarrAPI): + + payload = lidarr_client.get_config_ui() + payload["enableColorImpairedMode"] = True + data = lidarr_client.upd_config_ui(payload) + assert isinstance(data, dict) + assert data["enableColorImpairedMode"] == True + + +def test_get_config_host(lidarr_client: LidarrAPI): + + data = lidarr_client.get_config_host() + assert isinstance(data, dict) + + +def test_upd_config_host(lidarr_client: LidarrAPI): + + payload = lidarr_client.get_config_host() + payload["backupRetention"] = 29 + data = lidarr_client.upd_config_host(payload) + + assert isinstance(data, dict) + assert data["backupRetention"] == 29 + + +def test_get_config_naming(lidarr_client: LidarrAPI): + + data = lidarr_client.get_config_naming() + assert isinstance(data, dict) + + +def test_upd_config_naming(lidarr_client: LidarrAPI): + + payload = lidarr_client.get_config_naming() + payload["standardTrackFormat"] = ( + "{Album Title} - {track:00} - {Track Title} - {Album Title} ({Release Year})/{Artist Name}" + if payload["standardTrackFormat"] + == "{Album Title} ({Release Year})/{Artist Name} - {Album Title} - {track:00} - {Track Title}" + else "{Album Title} ({Release Year})/{Artist Name} - {Album Title} - {track:00} - {Track Title}" + ) + data = lidarr_client.upd_config_naming(payload) + + assert isinstance(data, dict) + if ( + payload["standardTrackFormat"] + == "{Album Title} ({Release Year})/{Artist Name} - {Album Title} - {track:00} - {Track Title}" + ): + assert ( + data["standardTrackFormat"] + == "{Album Title} - {track:00} - {Track Title} - {Album Title} ({Release Year})/{Artist Name}" + ) + else: + assert ( + data["standardTrackFormat"] + == "{Album Title} ({Release Year})/{Artist Name} - {Album Title} - {track:00} - {Track Title}" + ) + + +def test_get_media_management(lidarr_client: LidarrAPI): + + data = lidarr_client.get_media_management() + assert isinstance(data, dict) + + +def test_upd_media_management(lidarr_client: LidarrAPI): + + payload = lidarr_client.get_media_management() + payload["recycleBinCleanupDays"] = 6 + data = lidarr_client.upd_media_management(payload) + + assert isinstance(data, dict) + assert data["recycleBinCleanupDays"] == 6 + + +def test_get_notification_schema(lidarr_client: LidarrAPI): + + data = lidarr_client.get_notification_schema() + assert isinstance(data, list) + + data = lidarr_client.get_notification_schema( + implementation=PyarrNotificationSchema.BOXCAR + ) + assert isinstance(data, list) + + with contextlib.suppress(PyarrRecordNotFound): + data = lidarr_client.get_notification_schema(implementation="polarbear") + assert False + + +def test_create_tag(lidarr_client: LidarrAPI): + + data = lidarr_client.create_tag(label="string") + assert isinstance(data, dict) + + +def test_get_tag(lidarr_client: LidarrAPI): + + data = lidarr_client.get_tag() + assert isinstance(data, list) + + data = lidarr_client.get_tag(id_=data[0]["id"]) + assert isinstance(data, dict) + + +def test_get_tag_detail(lidarr_client: LidarrAPI): + + data = lidarr_client.get_tag_detail() + assert isinstance(data, list) + + data = lidarr_client.get_tag_detail(id_=data[0]["id"]) + assert isinstance(data, dict) + + +def test_upd_tag(lidarr_client: LidarrAPI): + tags = lidarr_client.get_tag() + + data = lidarr_client.upd_tag(id_=tags[0]["id"], label="newstring") + assert isinstance(data, dict) + assert data["label"] == "newstring" + + +def test_get_history(lidarr_client: LidarrAPI): + + data = lidarr_client.get_history() + assert isinstance(data, dict) + + data = lidarr_client.get_history( + page=1, + page_size=10, + sort_key=PyarrHistorySortKey.TIME, + sort_dir=PyarrSortDirection.DEFAULT, + ) + assert isinstance(data, dict) + + with contextlib.suppress(PyarrMissingArgument): + data = lidarr_client.get_history(sort_key=PyarrHistorySortKey.TIME) + assert False + + with contextlib.suppress(PyarrMissingArgument): + data = lidarr_client.get_history(sort_dir=PyarrSortDirection.DESC) + assert False + + +def test_upd_quality_profile(lidarr_client: LidarrAPI): + + data = lidarr_client.get_quality_profile() + assert isinstance(data, list) + + data = lidarr_client.upd_quality_profile(id_=data[0]["id"], data=data) + assert isinstance(data, dict) + + +def test_get_quality_definition(lidarr_client: LidarrAPI): + + data = lidarr_client.get_quality_definition() + assert isinstance(data, list) + + data = lidarr_client.get_quality_definition(id_=data[0]["id"]) + assert isinstance(data, dict) + + +def test_upd_quality_definition(lidarr_client: LidarrAPI): + rand_float = round(random.uniform(100.0, 199.9)) + + quality_definitions = lidarr_client.get_quality_definition() + quality_definition = lidarr_client.get_quality_definition( + id_=quality_definitions[0]["id"] + ) + quality_definition["maxSize"] = rand_float + data = lidarr_client.upd_quality_definition( + quality_definition["id"], quality_definition + ) + assert isinstance(data, dict) + assert data["maxSize"] == rand_float + + +def test_get_indexer_schema(lidarr_client: LidarrAPI): + data = lidarr_client.get_indexer_schema() + assert isinstance(data, list) + data = lidarr_client.get_indexer_schema( + implementation=PyarrIndexerSchema.IP_TORRENTS + ) + assert isinstance(data, list) + assert data[0]["implementation"] == PyarrIndexerSchema.IP_TORRENTS + + with contextlib.suppress(PyarrRecordNotFound): + data = lidarr_client.get_indexer_schema(implementation="polarbear") + assert False + + +def test_get_remote_path_mapping(lidarr_client: LidarrAPI): + data = lidarr_client.get_remote_path_mapping() + assert isinstance(data, list) + + +def test_get_notification(lidarr_client: LidarrAPI): + data = lidarr_client.get_notification() + assert isinstance(data, list) + # TODO: Get notification by ID (required add_notification first) + + +def test_get_download_client(lidarr_client: LidarrAPI): + data = lidarr_client.get_download_client() + assert isinstance(data, list) + # TODO: Get download client by ID (required add_download_client first) + + +def test_get_import_list(lidarr_client: LidarrAPI): + data = lidarr_client.get_import_list() + assert isinstance(data, list) + + +def test_get_config_download_client(lidarr_client: LidarrAPI): + data = lidarr_client.get_config_download_client() + assert isinstance(data, dict) + + +def test_upd_config_download_client(lidarr_client: LidarrAPI): + dc_config = lidarr_client.get_config_download_client() + dc_config["autoRedownloadFailed"] = False + data = lidarr_client.upd_config_download_client(data=dc_config) + assert isinstance(data, dict) + assert data["autoRedownloadFailed"] == False + + +def test_get_download_client_schema(lidarr_client: LidarrAPI): + + data = lidarr_client.get_download_client_schema() + assert isinstance(data, list) + + data = lidarr_client.get_download_client_schema( + implementation=PyarrDownloadClientSchema.ARIA2 + ) + assert isinstance(data, list) + + with contextlib.suppress(PyarrRecordNotFound): + data = lidarr_client.get_download_client_schema(implementation="polarbear") + assert False + + +def test_get_import_list_schema(lidarr_client: LidarrAPI): + + data = lidarr_client.get_import_list_schema() + assert isinstance(data, list) + + data = lidarr_client.get_import_list_schema( + implementation=LidarrImportListSchema.HEADPHONES + ) + assert isinstance(data, list) + + with contextlib.suppress(PyarrRecordNotFound): + data = lidarr_client.get_import_list_schema(implementation="polarbear") + assert False + + +def test_get_command(lidarr_client: LidarrAPI): + """Check get_command()""" + + # No args + data = lidarr_client.get_command() + assert isinstance(data, list) + + # When an ID is supplied + data = lidarr_client.get_command(data[0]["id"]) + assert isinstance(data, dict) + + # when an incorrect ID is supplied, not found response + with contextlib.suppress(PyarrResourceNotFound): + data = lidarr_client.get_command(4321) + assert False + + +@pytest.mark.usefixtures +@responses.activate +def test_get_indexer(lidarr_mock_client: LidarrAPI): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/indexer", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/indexer_all.json"), + status=200, + match_querystring=True, + ) + data = lidarr_mock_client.get_indexer() + assert isinstance(data, list) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/indexer/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/indexer.json"), + status=200, + match_querystring=True, + ) + data = lidarr_mock_client.get_indexer(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +@responses.activate +def test_upd_indexer(lidarr_mock_client: LidarrAPI): + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/indexer/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/indexer.json"), + status=200, + match_querystring=True, + ) + data = lidarr_mock_client.get_indexer(1) + + responses.add( + responses.PUT, + "https://127.0.0.1:8686/api/v1/indexer/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/indexer.json"), + status=202, + match_querystring=True, + ) + data = lidarr_mock_client.upd_indexer(1, data) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +@responses.activate +def test_get_blocklist(lidarr_mock_client: LidarrAPI): + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/blocklist", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blocklist.json"), + status=200, + match_querystring=True, + ) + data = lidarr_mock_client.get_blocklist() + assert isinstance(data, dict) + + responses.add( + responses.GET, + "https://127.0.0.1:8686/api/v1/blocklist?page=1&pageSize=10&sortKey=date&sortDirection=ascending", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/blocklist.json"), + status=200, + match_querystring=True, + ) + data = lidarr_mock_client.get_blocklist( + page=1, + page_size=10, + sort_key=PyarrBlocklistSortKey.DATE, + sort_dir=PyarrSortDirection.ASC, + ) + assert isinstance(data, dict) + with contextlib.suppress(PyarrMissingArgument): + data = lidarr_mock_client.get_blocklist(sort_key=PyarrBlocklistSortKey.DATE) + assert False + with contextlib.suppress(PyarrMissingArgument): + data = lidarr_mock_client.get_blocklist(sort_dir=PyarrSortDirection.ASC) + assert False + + +### DELETE BELOW HERE + + def test_delete_album(lidarr_client: LidarrAPI): album = lidarr_client.get_album() data = lidarr_client.delete_album(album[0]["id"]) - assert isinstance(data, dict) + assert data.status_code == 200 def test_delete_artist(lidarr_client: LidarrAPI): @@ -628,6 +1093,30 @@ def test_del_root_folder(lidarr_client: LidarrAPI): assert False +def test_del_quality_profile(lidarr_client: LidarrAPI): + + quality_profiles = lidarr_client.get_quality_profile() + + for profile in quality_profiles: + if profile["name"] == "music": + + # Check folder can be deleted + data = lidarr_client.del_quality_profile(profile["id"]) + assert data.status_code == 200 + + # Check that none existant doesnt throw error + data = lidarr_client.del_quality_profile(999) + assert data.status_code == 200 + + +def test_del_tag(lidarr_client: LidarrAPI): + + tags = lidarr_client.get_tag() + + data = lidarr_client.del_tag(tags[0]["id"]) + assert data.status_code == 200 + + @pytest.mark.usefixtures @responses.activate def test_delete_track_file(lidarr_mock_client: LidarrAPI): @@ -641,3 +1130,74 @@ def test_delete_track_file(lidarr_mock_client: LidarrAPI): ) data = lidarr_mock_client.delete_track_file(1) assert isinstance(data, dict) + + +@pytest.mark.usefixtures +@responses.activate +def test_del_blocklist(lidarr_mock_client: LidarrAPI): + responses.add( + responses.DELETE, + "https://127.0.0.1:8686/api/v1/blocklist/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + data = lidarr_mock_client.del_blocklist(id_=1) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +@responses.activate +def test_del_blocklist_bulk(lidarr_mock_client: LidarrAPI): + responses.add( + responses.DELETE, + "https://127.0.0.1:8686/api/v1/blocklist/bulk", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + data = lidarr_mock_client.del_blocklist_bulk(ids=[1, 2, 3]) + assert isinstance(data, dict) + + +@pytest.mark.usefixtures +@responses.activate +def test_del_indexer(lidarr_mock_client: LidarrAPI): + responses.add( + responses.DELETE, + "https://127.0.0.1:8686/api/v1/indexer/1", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + data = lidarr_mock_client.del_indexer(id_=1) + assert isinstance(data, dict) + + responses.add( + responses.DELETE, + "https://127.0.0.1:8686/api/v1/indexer/999", + headers={"Content-Type": "application/json"}, + status=404, + ) + with contextlib.suppress(PyarrResourceNotFound): + data = lidarr_mock_client.del_indexer(id_=999) + assert False + + +@pytest.mark.usefixtures +@responses.activate +def test_del_queue(lidarr_mock_client: LidarrAPI): + responses.add( + responses.DELETE, + "https://127.0.0.1:8686/api/v1/queue/1?removeFromClient=True&blocklist=True", + headers={"Content-Type": "application/json"}, + body=load_fixture("common/delete.json"), + status=200, + match_querystring=True, + ) + + data = lidarr_mock_client.del_queue(id_=1, remove_from_client=True, blocklist=True) + assert isinstance(data, dict) diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index 42eb26c..11c6db6 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -44,31 +44,6 @@ def test_get_root_folder(sonarr_client: SonarrAPI): assert isinstance(data, dict) -def test__series_json(sonarr_client: SonarrAPI): - data = sonarr_client._series_json( - tvdb_id=SONARR_TVDB, - quality_profile_id=1, - language_profile_id=1, - root_dir="/", - season_folder=False, - monitored=False, - ignore_episodes_with_files=True, - ignore_episodes_without_files=True, - search_for_missing_episodes=True, - ) - - assert isinstance(data, dict) - assert data["rootFolderPath"] == "/" - assert data["qualityProfileId"] == 1 - assert data["seasonFolder"] == False - assert data["monitored"] == False - assert data["tvdbId"] == SONARR_TVDB - assert data["title"] == "Stranger Things" - assert data["addOptions"]["ignoreEpisodesWithFiles"] == True - assert data["addOptions"]["ignoreEpisodesWithoutFiles"] == True - assert data["addOptions"]["searchForMissingEpisodes"] == True - - def test_get_command(sonarr_client: SonarrAPI): """Check get_command()""" @@ -186,15 +161,10 @@ def test_add_series(sonarr_client: SonarrAPI): quality_profile = sonarr_client.get_quality_profile() language_profile = sonarr_client.get_language_profile() + lookup_result = sonarr_client.lookup_series(id_=SONARR_TVDB) data = sonarr_client.add_series( - tvdb_id=SONARR_TVDB, - quality_profile_id=quality_profile[0]["id"], - language_profile_id=language_profile[0]["id"], - root_dir="/defaults/", - ) - data = sonarr_client.add_series( - tvdb_id=81189, + series=lookup_result[0], quality_profile_id=quality_profile[0]["id"], language_profile_id=language_profile[0]["id"], root_dir="/defaults/", @@ -203,7 +173,7 @@ def test_add_series(sonarr_client: SonarrAPI): with contextlib.suppress(Exception): data = sonarr_client.add_series( - tvdb_id=SONARR_TVDB, + eries=lookup_result[0], quality_profile_id=quality_profile[0]["id"], language_profile_id=language_profile[0]["id"], root_dir="/defaults/", From 61861c6d984ee3eefa03dbe6247fd5b5248f5d72 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Mon, 27 Mar 2023 14:01:47 +0000 Subject: [PATCH 47/53] ci: testing github actions --- .ci/docker-compose.yml | 84 ++++++++++++++++++++++++++++++++++++++ .github/workflows/test.yml | 8 +++- noxfile.py | 30 ++++++++++++++ 3 files changed, 120 insertions(+), 2 deletions(-) create mode 100644 .ci/docker-compose.yml diff --git a/.ci/docker-compose.yml b/.ci/docker-compose.yml new file mode 100644 index 0000000..8519980 --- /dev/null +++ b/.ci/docker-compose.yml @@ -0,0 +1,84 @@ +--- + +version: '3' +services: + workspace: + build: + context: . + dockerfile: Dockerfile + container_name: workspace + volumes: + - .:/workspace:cached + command: sleep infinity + sonarr: + image: lscr.io/linuxserver/sonarr:latest + container_name: sonarr + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - ./tests/docker_configs/sonarr/config.xml:/config/config.xml + ports: + - 8989:8989 + restart: unless-stopped + radarr: + image: lscr.io/linuxserver/radarr:latest + container_name: radarr + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - ./tests/docker_configs/radarr/config.xml:/config/config.xml + ports: + - 7878:7878 + restart: unless-stopped + readarr: + image: lscr.io/linuxserver/readarr:develop + container_name: readarr + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - ./tests/docker_configs/readarr/config.xml:/config/config.xml + ports: + - 8787:8787 + restart: unless-stopped + lidarr: + image: lscr.io/linuxserver/lidarr:latest + container_name: lidarr + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - ./tests/docker_configs/lidarr/config.xml:/config/config.xml + ports: + - 8686:8686 + restart: unless-stopped + deluge: + image: lscr.io/linuxserver/deluge:latest + container_name: deluge + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - ./tests/docker_configs/deluge/config:/config + ports: + - 8112:8112 + restart: unless-stopped + jackett: + image: lscr.io/linuxserver/jackett:latest + container_name: jackett + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - ./tests/docker_configs/jackett/config/jackett:/config + ports: + - 9117:9117 + restart: unless-stopped diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cfc26c6..8878001 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,16 +14,20 @@ jobs: code-quality: name: ๐Ÿ“Š Check code quality runs-on: ubuntu-latest + env: + COMPOSE_FILE: .devcontainer/docker-compose.yml strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 - name: Setup Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} + - name: Build docker images + run: docker compose -f .devcontainer/docker-compose.yml - name: ๐Ÿงช Check tests are passing run: | pip install poetry nox - nox -s test + nox -s test_ci diff --git a/noxfile.py b/noxfile.py index 477e003..93e1039 100644 --- a/noxfile.py +++ b/noxfile.py @@ -76,6 +76,36 @@ def test_docker_down(session: Session) -> None: ) +@nox.session(reuse_venv=True) +def test_ci(session: Session) -> None: + """Run the complete test suite""" + session.notify("test_ci_up") + session.notify("test_types") + session.notify("test_style") + session.notify("test_suite") + + +@nox.session(reuse_venv=True) +def test_ci_up(session: Session) -> None: + session.run( + "docker", + "compose", + "-f", + ".ci/docker-compose.yml", + "pull", + external=True, + ) + session.run( + "docker", + "compose", + "-f", + ".ci/docker-compose.yml", + "up", + "-d", + external=True, + ) + + @nox.session(reuse_venv=True) def test_suite(session: Session) -> None: """Run the Python-based test suite""" From 096623fd5a82946c86f3cdaada212a09d13d7a7b Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Mon, 27 Mar 2023 15:40:26 +0000 Subject: [PATCH 48/53] ci: testing github actions --- .ci/docker-compose.yml | 8 -------- .github/workflows/test.yml | 9 +++------ 2 files changed, 3 insertions(+), 14 deletions(-) diff --git a/.ci/docker-compose.yml b/.ci/docker-compose.yml index 8519980..c33649b 100644 --- a/.ci/docker-compose.yml +++ b/.ci/docker-compose.yml @@ -2,14 +2,6 @@ version: '3' services: - workspace: - build: - context: . - dockerfile: Dockerfile - container_name: workspace - volumes: - - .:/workspace:cached - command: sleep infinity sonarr: image: lscr.io/linuxserver/sonarr:latest container_name: sonarr diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8878001..dcf96c3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,18 +16,15 @@ jobs: runs-on: ubuntu-latest env: COMPOSE_FILE: .devcontainer/docker-compose.yml - strategy: - matrix: - python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 - - name: Setup Python ${{ matrix.python-version }} + - name: Setup Python 3.10 uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python-version }} + python-version: 3.10 - name: Build docker images run: docker compose -f .devcontainer/docker-compose.yml - name: ๐Ÿงช Check tests are passing run: | pip install poetry nox - nox -s test_ci + nox -s test From 0f7b50bbe47b1b6e96d4b9fc45d26e552d11ff40 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Tue, 28 Mar 2023 13:30:47 +0000 Subject: [PATCH 49/53] test: Added more tests --- .github/workflows/test.yml | 5 ++- noxfile.py | 30 ------------------ tests/test_lidarr.py | 65 ++++++++++++++++++++++++++++---------- tests/test_sonarr.py | 20 +++++------- 4 files changed, 59 insertions(+), 61 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dcf96c3..dcdb3e9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,8 +14,7 @@ jobs: code-quality: name: ๐Ÿ“Š Check code quality runs-on: ubuntu-latest - env: - COMPOSE_FILE: .devcontainer/docker-compose.yml + steps: - uses: actions/checkout@v3 - name: Setup Python 3.10 @@ -23,7 +22,7 @@ jobs: with: python-version: 3.10 - name: Build docker images - run: docker compose -f .devcontainer/docker-compose.yml + run: docker compose -f .ci/docker-compose.yml - name: ๐Ÿงช Check tests are passing run: | pip install poetry nox diff --git a/noxfile.py b/noxfile.py index 93e1039..477e003 100644 --- a/noxfile.py +++ b/noxfile.py @@ -76,36 +76,6 @@ def test_docker_down(session: Session) -> None: ) -@nox.session(reuse_venv=True) -def test_ci(session: Session) -> None: - """Run the complete test suite""" - session.notify("test_ci_up") - session.notify("test_types") - session.notify("test_style") - session.notify("test_suite") - - -@nox.session(reuse_venv=True) -def test_ci_up(session: Session) -> None: - session.run( - "docker", - "compose", - "-f", - ".ci/docker-compose.yml", - "pull", - external=True, - ) - session.run( - "docker", - "compose", - "-f", - ".ci/docker-compose.yml", - "up", - "-d", - external=True, - ) - - @nox.session(reuse_venv=True) def test_suite(session: Session) -> None: """Run the Python-based test suite""" diff --git a/tests/test_lidarr.py b/tests/test_lidarr.py index eed2fa3..e7f458c 100644 --- a/tests/test_lidarr.py +++ b/tests/test_lidarr.py @@ -745,19 +745,6 @@ def test_upd_config_naming(lidarr_client: LidarrAPI): data = lidarr_client.upd_config_naming(payload) assert isinstance(data, dict) - if ( - payload["standardTrackFormat"] - == "{Album Title} ({Release Year})/{Artist Name} - {Album Title} - {track:00} - {Track Title}" - ): - assert ( - data["standardTrackFormat"] - == "{Album Title} - {track:00} - {Track Title} - {Album Title} ({Release Year})/{Artist Name}" - ) - else: - assert ( - data["standardTrackFormat"] - == "{Album Title} ({Release Year})/{Artist Name} - {Album Title} - {track:00} - {Track Title}" - ) def test_get_media_management(lidarr_client: LidarrAPI): @@ -845,12 +832,58 @@ def test_get_history(lidarr_client: LidarrAPI): assert False +def test_add_quality_profile(lidarr_client: LidarrAPI): + + data = lidarr_client.add_quality_profile( + name="music", + upgrades_allowed=True, + cutoff=1005, + items=[ + {"quality": {"id": 0, "name": "Unknown"}, "items": [], "allowed": True}, + { + "name": "Lossless", + "items": [ + { + "quality": {"id": 7, "name": "ALAC"}, + "items": [], + "allowed": True, + }, + { + "quality": {"id": 6, "name": "FLAC"}, + "items": [], + "allowed": True, + }, + { + "quality": {"id": 35, "name": "APE"}, + "items": [], + "allowed": True, + }, + { + "quality": {"id": 36, "name": "WavPack"}, + "items": [], + "allowed": True, + }, + { + "quality": {"id": 21, "name": "FLAC 24bit"}, + "items": [], + "allowed": True, + }, + ], + "allowed": True, + "id": 1005, + }, + ], + ) + assert isinstance(data, dict) + + def test_upd_quality_profile(lidarr_client: LidarrAPI): - data = lidarr_client.get_quality_profile() - assert isinstance(data, list) + quality_profiles = lidarr_client.get_quality_profile() - data = lidarr_client.upd_quality_profile(id_=data[0]["id"], data=data) + data = lidarr_client.upd_quality_profile( + id_=quality_profiles[0]["id"], data=quality_profiles[0] + ) assert isinstance(data, dict) diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index 11c6db6..9ef6635 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -106,10 +106,11 @@ def test_get_quality_profile(sonarr_client: SonarrAPI): def test_upd_quality_profile(sonarr_client: SonarrAPI): - data = sonarr_client.get_quality_profile() - assert isinstance(data, list) + qual_profiles = sonarr_client.get_quality_profile() - data = sonarr_client.upd_quality_profile(id_=data[0]["id"], data=data) + data = sonarr_client.upd_quality_profile( + id_=qual_profiles[0]["id"], data=qual_profiles[0] + ) assert isinstance(data, dict) @@ -170,6 +171,7 @@ def test_add_series(sonarr_client: SonarrAPI): root_dir="/defaults/", ) assert isinstance(data, dict) + assert data["title"] == "Stranger Things" with contextlib.suppress(Exception): data = sonarr_client.add_series( @@ -194,10 +196,10 @@ def test_get_episode(sonarr_client: SonarrAPI): """Test getting episode""" series = sonarr_client.get_series() - data = sonarr_client.get_episode(series[0]["id"], True) - assert isinstance(data, list) + episodes = sonarr_client.get_episode(series[0]["id"], True) + assert isinstance(episodes, list) - data = sonarr_client.get_episode(data[0]["id"]) + data = sonarr_client.get_episode(episodes[0]["id"]) assert isinstance(data, dict) with contextlib.suppress(PyarrResourceNotFound): @@ -861,12 +863,6 @@ def test_upd_episode_file_quality(sonarr_mock_client: SonarrAPI): def test_del_series(sonarr_client: SonarrAPI): - series = sonarr_client.get_series() - data = sonarr_client.del_series(series[0]["id"]) - - assert isinstance(data, dict) - assert data == {} - series = sonarr_client.get_series() data = sonarr_client.del_series(series[0]["id"], delete_files=True) From 7a06a70a93e37bf1282666a94553988b47e22779 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Wed, 29 Mar 2023 21:06:36 +0000 Subject: [PATCH 50/53] fix: resolved issues wwith add_movie and add_artist --- pyarr/lidarr.py | 66 ++++++--------------------- pyarr/models/radarr.py | 16 +++++++ pyarr/radarr.py | 96 +++++++++++----------------------------- pyarr/request_handler.py | 3 +- tests/test_lidarr.py | 41 +++++++---------- tests/test_radarr.py | 77 ++++++-------------------------- 6 files changed, 87 insertions(+), 212 deletions(-) diff --git a/pyarr/lidarr.py b/pyarr/lidarr.py index d792afd..879383c 100644 --- a/pyarr/lidarr.py +++ b/pyarr/lidarr.py @@ -119,33 +119,31 @@ def get_artist(self, id_: Optional[Union[str, int]] = None) -> JsonArray: params={"mbId": id_} if isinstance(id_, str) else None, ) - def _artist_json( + def add_artist( self, - id_: str, + artist: JsonObject, root_dir: str, quality_profile_id: Optional[int] = None, metadata_profile_id: Optional[int] = None, monitored: bool = True, artist_monitor: LidarrArtistMonitor = LidarrArtistMonitor.ALL_ALBUMS, artist_search_for_missing_albums: bool = False, - ) -> dict: - """Method to help build the JSON for adding an artist + ) -> JsonObject: + """Adds an artist from the lookup result Args: - id_ (str): Lidarr or MusicBrainz ID - root_dir (str): Root directory for music - quality_profile_id (Optional[int], optional): Quality profile Id. Defaults to None. + artist (JsonObject): Artist record from lookup() + root_dir (str): Directory for music to be stored + quality_profile_id (Optional[int], optional): Quality profile ID. Defaults to None. metadata_profile_id (Optional[int], optional): Metadata profile ID. Defaults to None. - monitored (bool, optional): Should this be monitored. Defaults to True. - artist_monitor (LidarrArtistMonitor, optional): Should the artist be monitored. Defaults to LidarrArtistMonitor.ALL_ALBUMS. - artist_search_for_missing_albums (bool, optional): Should we search for missing albums. Defaults to False. - - Raises: - PyarrMissingProfile: Raised when quality or metadata profile are missing + monitored (bool, optional): Monitor the artist. Defaults to True. + artist_monitor (LidarrArtistMonitor, optional): Monitor the artist. Defaults to LidarrArtistMonitor.ALL_ALBUMS. + artist_search_for_missing_albums (bool, optional): Search for missing albums by this artist. Defaults to False. Returns: - dict[str, Any]: Dictionary with artist information + JsonObject: Dictonary with added record """ + if quality_profile_id is None: try: quality_profile_id = self.get_quality_profile()[0]["id"] @@ -161,7 +159,6 @@ def _artist_json( "There is no Metadata Profile setup" ) from exception - artist: dict[str, Any] = self.lookup_artist(term=f"lidarr:{id_}")[0] artist["id"] = 0 artist["metadataProfileId"] = metadata_profile_id artist["qualityProfileId"] = quality_profile_id @@ -172,44 +169,7 @@ def _artist_json( } artist["monitored"] = monitored - return artist - - def add_artist( - self, - id_: str, - root_dir: str, - quality_profile_id: Optional[int] = None, - metadata_profile_id: Optional[int] = None, - monitored: bool = True, - artist_monitor: LidarrArtistMonitor = LidarrArtistMonitor.ALL_ALBUMS, - artist_search_for_missing_albums: bool = False, - ) -> JsonObject: - """Adds an artist based on a search term, must be artist name or album/single - by lidarr guid - - Args: - id_ (str): Artist MusicBrainz ID - root_dir (str): Directory for music to be stored - quality_profile_id (Optional[int], optional): Quality profile ID. Defaults to None. - metadata_profile_id (Optional[int], optional): Metadata profile ID. Defaults to None. - monitored (bool, optional): Monitor the artist. Defaults to True. - artist_monitor (LidarrArtistMonitor, optional): Monitor the artist. Defaults to LidarrArtistMonitor.ALL_ALBUMS. - artist_search_for_missing_albums (bool, optional): Search for missing albums by this artist. Defaults to False. - - Returns: - JsonObject: Dictonary with added record - """ - - artist_json = self._artist_json( - id_, - root_dir, - quality_profile_id, - metadata_profile_id, - monitored, - artist_monitor, - artist_search_for_missing_albums, - ) - return self._post("artist", self.ver_uri, data=artist_json) + return self._post("artist", self.ver_uri, data=artist) def upd_artist(self, data: JsonObject) -> JsonObject: """Update an existing artist diff --git a/pyarr/models/radarr.py b/pyarr/models/radarr.py index 4b885b4..20f95bf 100644 --- a/pyarr/models/radarr.py +++ b/pyarr/models/radarr.py @@ -78,3 +78,19 @@ class RadarrEventType(str, Enum): MOVIE_FOLDER_IMPORTED = "movieFolderImported" MOVIE_FILE_RENAMED = "movieFileRenamed" DOWNLOAD_IGNORED = "downloadIgnored" + + +class RadarrMonitorType(str, Enum): + """Radarr monitor types""" + + MOVIE_ONLY = "movieOnly" + MOVIE_AND_COLLECTION = "movieAndCollection" + NONE = "none" + + +class RadarrAvailabilityType(str, Enum): + """Radarr availability types""" + + ANNOUNCED = "announced" + IN_CINEMAS = "inCinemas" + RELEASED = "released" diff --git a/pyarr/radarr.py b/pyarr/radarr.py index 9537e66..edae95a 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -6,9 +6,15 @@ from pyarr.types import JsonArray, JsonObject from .base import BaseArrAPI -from .exceptions import PyarrMissingArgument, PyarrRecordNotFound +from .exceptions import PyarrMissingArgument from .models.common import PyarrSortDirection -from .models.radarr import RadarrCommands, RadarrEventType, RadarrSortKeys +from .models.radarr import ( + RadarrAvailabilityType, + RadarrCommands, + RadarrEventType, + RadarrMonitorType, + RadarrSortKeys, +) class RadarrAPI(BaseArrAPI): @@ -29,59 +35,6 @@ def __init__(self, host_url: str, api_key: str): ver_uri = "/v3" super().__init__(host_url, api_key, ver_uri) - def _movie_json( - self, - id_: Union[str, int], - root_dir: str, - quality_profile_id: int, - monitored: bool = True, - search_for_movie: bool = True, - tmdb: Optional[bool] = None, - ) -> dict: - """Searches for movie on tmdb and returns Movie json to add. - - Args: - id_ (Union[str, int]): imdb or tmdb id - root_dir (str): location of the root DIR - quality_profile_id (int): ID of the quality profile the movie will use - monitored (bool, optional): should the movie be monitored. Defaults to True. - search_for_movie (bool, optional): Should we search for the movie. Defaults to True. - tmdb (bool, optional): Not used, deprecated. Defaults to True. - - Raises: - PyarrRecordNotFound: Movie doesnt exist - - Returns: - dict: Dictionary containing movie information - """ - if tmdb is not None: - warn( - "Argument tmdb is no longer used and will be removed in a future release.", - DeprecationWarning, - stacklevel=2, - ) - if isinstance(id_, int): - movies: list[dict[str, Any]] = self.lookup_movie(term=f"tmdb:{id_}") - else: - movies = self.lookup_movie(term=f"imdb:{id_}") - if movies: - movie = movies[0] - - return { - "title": movie["title"], - "rootFolderPath": root_dir, - "qualityProfileId": quality_profile_id, - "year": movie["year"], - "tmdbId": movie["tmdbId"], - "images": movie["images"], - "titleSlug": movie["titleSlug"], - "monitored": monitored, - "addOptions": {"searchForMovie": search_for_movie}, - } - - else: - raise PyarrRecordNotFound("Movie Doesn't Exist") - ## CONFIG # POST /rootfolder def add_root_folder( @@ -129,38 +82,41 @@ def get_movie( # POST /movie def add_movie( self, - id_: Union[str, int], + movie: JsonObject, root_dir: str, quality_profile_id: int, monitored: bool = True, search_for_movie: bool = True, - tmdb: Optional[bool] = None, + monitor: RadarrMonitorType = RadarrMonitorType.MOVIE_ONLY, + minimum_availability: RadarrAvailabilityType = RadarrAvailabilityType.ANNOUNCED, + tags: list[int] = [], ) -> JsonObject: """Adds a movie to the database Args: - id_ (Union[str, int]): IMDB or TMDB ID + movie (JsonObject): Movie record from `lookup_movie()` root_dir (str): Location of the root DIR quality_profile_id (int): ID of the quality profile the movie will use monitored (bool, optional): Should the movie be monitored. Defaults to True. search_for_movie (bool, optional): Should we search for the movie. Defaults to True. - tmdb (Optional[bool], optional): Not in use, Deprecated. Defaults to None. + monitor (RadarrMonitorType, optional): Monitor movie or collection. Defaults to RadarrMonitorType.MOVIE_ONLY. + minimum_availability (RadarrAvailabilityType, optional): Availability of movie. Defaults to RadarrAvailabilityType.ANNOUNCED + tags (list[int], optional): List of tag id's. Defaults to []. Returns: JsonObject: Dictonary with added record """ + movie["rootFolderPath"] = root_dir + movie["qualityProfileId"] = quality_profile_id + movie["monitored"] = monitored + movie["minimumAvailability"] = minimum_availability + movie["addOptions"] = { + "monitor": monitor, + "searchForMovie": search_for_movie, + } + movie["tags"] = tags - if tmdb: - warn( - "Argument tmdb is no longer used and will be removed in a future release.", - DeprecationWarning, - stacklevel=2, - ) - movie_json = self._movie_json( - id_, root_dir, quality_profile_id, monitored, search_for_movie - ) - - return self._post("movie", self.ver_uri, data=movie_json) + return self._post("movie", self.ver_uri, data=movie) # PUT /movie def upd_movie( diff --git a/pyarr/request_handler.py b/pyarr/request_handler.py index 015995f..9f139ad 100644 --- a/pyarr/request_handler.py +++ b/pyarr/request_handler.py @@ -229,7 +229,8 @@ def _process_response( JSON: Array """ if res.status_code == 400: - raise PyarrBadRequest(f"Bad Request, possibly a bug. {str(res.request.body)}") + raise PyarrBadRequest(f"Bad Request, possibly a bug. {str(res.content)}") + if res.status_code == 401: raise PyarrUnauthorizedError( "Unauthorized. Please ensure valid API Key is used.", {} diff --git a/tests/test_lidarr.py b/tests/test_lidarr.py index e7f458c..bf763cc 100644 --- a/tests/test_lidarr.py +++ b/tests/test_lidarr.py @@ -80,35 +80,26 @@ def test_lookup_album(lidarr_client: LidarrAPI): assert isinstance(data, list) -def test__artist_json(lidarr_client: LidarrAPI): - qual_profile = lidarr_client.get_quality_profile() - meta_profile = lidarr_client.get_metadata_profile() - - data = lidarr_client._artist_json( - id_=LIDARR_MUSICBRAINZ_ARTIST_ID, - root_dir="/", - quality_profile_id=qual_profile[0]["id"], - metadata_profile_id=meta_profile[0]["id"], - monitored=False, - artist_monitor=LidarrArtistMonitor.FIRST_ALBUM, - artist_search_for_missing_albums=False, - ) - assert isinstance(data, dict) - - def test_add_artist(lidarr_client: LidarrAPI): qual_profile = lidarr_client.get_quality_profile() meta_profile = lidarr_client.get_metadata_profile() + items = lidarr_client.lookup(term=f"lidarr:{LIDARR_MUSICBRAINZ_ARTIST_ID}") - data = lidarr_client.add_artist( - id_=LIDARR_MUSICBRAINZ_ARTIST_ID, - root_dir="/", - quality_profile_id=qual_profile[0]["id"], - metadata_profile_id=meta_profile[0]["id"], - monitored=False, - artist_monitor=LidarrArtistMonitor.LATEST_ALBUM, - artist_search_for_missing_albums=False, - ) + for item in items: + if "artist" in item: + artist = item["artist"] + data = lidarr_client.add_artist( + artist=artist, + root_dir="/", + quality_profile_id=qual_profile[0]["id"], + metadata_profile_id=meta_profile[0]["id"], + monitored=False, + artist_monitor=LidarrArtistMonitor.LATEST_ALBUM, + artist_search_for_missing_albums=False, + ) + break + if item == items[-1]: + assert False assert isinstance(data, dict) diff --git a/tests/test_radarr.py b/tests/test_radarr.py index fc67638..6796518 100644 --- a/tests/test_radarr.py +++ b/tests/test_radarr.py @@ -23,7 +23,13 @@ PyarrNotificationSchema, PyarrSortDirection, ) -from pyarr.models.radarr import RadarrCommands, RadarrEventType, RadarrSortKeys +from pyarr.models.radarr import ( + RadarrAvailabilityType, + RadarrCommands, + RadarrEventType, + RadarrMonitorType, + RadarrSortKeys, +) from pyarr.radarr import RadarrAPI from pyarr.types import JsonArray, JsonObject @@ -52,35 +58,6 @@ def test_get_root_folder(radarr_client: RadarrAPI): assert isinstance(data, dict) -def test__movie_json(radarr_client: RadarrAPI): - data = radarr_client._movie_json( - id_=RADARR_IMDB, - root_dir="/", - quality_profile_id=1, - monitored=False, - search_for_movie=False, - ) - assert isinstance(data, dict) - assert data["rootFolderPath"] == "/" - assert data["qualityProfileId"] == 1 - assert data["monitored"] == False - - with contextlib.suppress(DeprecationWarning): - data = radarr_client._movie_json( - id_=RADARR_IMDB, root_dir="/", quality_profile_id=1, tmdb=True - ) - - with contextlib.suppress(PyarrRecordNotFound): - data = radarr_client._movie_json( - id_="tt123d", - root_dir="/", - quality_profile_id=1, - monitored=False, - search_for_movie=False, - ) - assert False - - def test_get_command(radarr_client: RadarrAPI): """Check get_command()""" @@ -176,45 +153,19 @@ def test_lookup_movie_by_imdb_id(radarr_client: RadarrAPI): def test_add_movie(radarr_client: RadarrAPI): + quality_profiles = radarr_client.get_quality_profile() + movie_imdb = radarr_client.lookup_movie(term=f"imdb:{RADARR_IMDB}") data = radarr_client.add_movie( - id_=RADARR_IMDB, - root_dir="/", - quality_profile_id=1, + movie=movie_imdb[0], + root_dir="/defaults/", + quality_profile_id=quality_profiles[0]["id"], monitored=False, search_for_movie=False, + monitor=RadarrMonitorType.MOVIE_ONLY, + minimum_availability=RadarrAvailabilityType.ANNOUNCED, ) - data = radarr_client.add_movie( - id_=RADARR_IMDB_LIST[0], - root_dir="/", - quality_profile_id=1, - monitored=False, - search_for_movie=False, - ) - assert isinstance(data, dict) - data = radarr_client.add_movie( - id_=RADARR_IMDB_LIST[1], - root_dir="/", - quality_profile_id=1, - monitored=False, - search_for_movie=False, - ) - assert isinstance(data, dict) assert isinstance(data, dict) - with contextlib.suppress(DeprecationWarning): - data = radarr_client.add_movie( - id_=RADARR_TMDB, root_dir="/", quality_profile_id=1, tmdb=True - ) - - with contextlib.suppress(PyarrRecordNotFound): - data = radarr_client.add_movie( - id_="tt123d", - root_dir="/", - quality_profile_id=1, - monitored=False, - search_for_movie=False, - ) - assert False def test_get_movie(radarr_client: RadarrAPI): From 30ad67a844941f8e4f79054198bbbd877e33daa5 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Wed, 29 Mar 2023 21:11:46 +0000 Subject: [PATCH 51/53] ci: add code coverage --- .github/workflows/codecov.yml | 16 ++++++++++++++++ .github/workflows/test.yml | 2 ++ 2 files changed, 18 insertions(+) create mode 100644 .github/workflows/codecov.yml diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml new file mode 100644 index 0000000..9b3c609 --- /dev/null +++ b/.github/workflows/codecov.yml @@ -0,0 +1,16 @@ +name: Codecov + +on: + pull_request: + branches: + - main + +jobs: + code-coverage: + name: ๐Ÿ“Š Check code coverage + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v3 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dcdb3e9..6dc50b9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,6 +12,7 @@ on: jobs: code-quality: + name: ๐Ÿ“Š Check code quality runs-on: ubuntu-latest @@ -27,3 +28,4 @@ jobs: run: | pip install poetry nox nox -s test + From 0e641a233169b76832a07c5e3ec2b452ce2c7927 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Thu, 30 Mar 2023 10:38:22 +0000 Subject: [PATCH 52/53] refactor: change the enums to literals --- poetry.lock | 1727 ++++++++++++++++++---------------- pyarr/lidarr.py | 8 +- pyarr/models/common.py | 287 +++--- pyarr/models/lidarr.py | 112 +-- pyarr/models/radarr.py | 151 ++- pyarr/models/readarr.py | 165 ++-- pyarr/models/sonarr.py | 139 +-- pyarr/radarr.py | 16 +- pyarr/readarr.py | 8 +- pyproject.toml | 35 +- sphinx-docs/contributing.rst | 3 +- tests/test_lidarr.py | 103 +- tests/test_radarr.py | 116 +-- tests/test_readarr.py | 73 +- tests/test_sonarr.py | 110 +-- 15 files changed, 1513 insertions(+), 1540 deletions(-) diff --git a/poetry.lock b/poetry.lock index a213c7a..9ea56d0 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,22 +1,22 @@ [[package]] name = "alabaster" -version = "0.7.12" +version = "0.7.13" description = "A configurable sidebar-enabled Sphinx theme" category = "dev" optional = false -python-versions = "*" +python-versions = ">=3.6" [[package]] name = "apeye" -version = "1.2.0" +version = "1.3.0" description = "Handy tools for working with URLs and APIs." category = "dev" optional = false python-versions = ">=3.6.1" [package.dependencies] +apeye-core = ">=1.0.0b2" domdf-python-tools = ">=2.6.0" -idna = ">=2.5" platformdirs = ">=2.3.0" requests = ">=2.24.0" @@ -24,6 +24,18 @@ requests = ">=2.24.0" all = ["cachecontrol[filecache] (>=0.12.6)", "lockfile (>=0.12.2)"] limiter = ["cachecontrol[filecache] (>=0.12.6)", "lockfile (>=0.12.2)"] +[[package]] +name = "apeye-core" +version = "1.1.1" +description = "Core (offline) functionality for the apeye library." +category = "dev" +optional = false +python-versions = ">=3.6.1" + +[package.dependencies] +domdf-python-tools = ">=2.6.0" +idna = ">=2.5" + [[package]] name = "appnope" version = "0.1.3" @@ -34,21 +46,23 @@ python-versions = "*" [[package]] name = "astroid" -version = "2.11.6" +version = "2.15.1" description = "An abstract syntax tree for Python with inference support." category = "dev" optional = false -python-versions = ">=3.6.2" +python-versions = ">=3.7.2" [package.dependencies] lazy-object-proxy = ">=1.4.0" -setuptools = ">=20.0" -typing-extensions = {version = ">=3.10", markers = "python_version < \"3.10\""} -wrapt = ">=1.11,<2" +typing-extensions = {version = ">=4.0.0", markers = "python_version < \"3.11\""} +wrapt = [ + {version = ">=1.11,<2", markers = "python_version < \"3.11\""}, + {version = ">=1.14,<2", markers = "python_version >= \"3.11\""}, +] [[package]] name = "asttokens" -version = "2.1.0" +version = "2.2.1" description = "Annotate AST trees with source code positions" category = "dev" optional = false @@ -58,63 +72,53 @@ python-versions = "*" six = "*" [package.extras] -test = ["astroid (<=2.5.3)", "pytest"] - -[[package]] -name = "atomicwrites" -version = "1.4.0" -description = "Atomic file writes." -category = "dev" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +test = ["astroid", "pytest"] [[package]] name = "attrs" -version = "21.4.0" +version = "22.2.0" description = "Classes Without Boilerplate" category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.6" [package.extras] -dev = ["cloudpickle", "coverage[toml] (>=5.0.2)", "furo", "hypothesis", "mypy", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "six", "sphinx", "sphinx-notfound-page", "zope.interface"] -docs = ["furo", "sphinx", "sphinx-notfound-page", "zope.interface"] -tests = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "six", "zope.interface"] -tests-no-zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "six"] +cov = ["attrs[tests]", "coverage-enable-subprocess", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope.interface"] +tests = ["attrs[tests-no-zope]", "zope.interface"] +tests-no-zope = ["cloudpickle", "cloudpickle", "hypothesis", "hypothesis", "mypy (>=0.971,<0.990)", "mypy (>=0.971,<0.990)", "pympler", "pympler", "pytest (>=4.3.0)", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-mypy-plugins", "pytest-xdist[psutil]", "pytest-xdist[psutil]"] [[package]] name = "autodocsumm" -version = "0.2.8" +version = "0.2.10" description = "Extended sphinx autodoc including automatic autosummaries" category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [package.dependencies] -Sphinx = ">=2.2,<5.0" +Sphinx = ">=2.2,<7.0" [[package]] name = "autoflake" -version = "1.6.1" +version = "1.7.8" description = "Removes unused imports and unused variables" category = "dev" optional = false python-versions = ">=3.7" [package.dependencies] -pyflakes = ">=1.1.0" +pyflakes = ">=1.1.0,<3" tomli = {version = ">=2.0.1", markers = "python_version < \"3.11\""} [[package]] name = "babel" -version = "2.10.1" +version = "2.12.1" description = "Internationalization utilities" category = "dev" optional = false -python-versions = ">=3.6" - -[package.dependencies] -pytz = ">=2015.7" +python-versions = ">=3.7" [[package]] name = "backcall" @@ -126,7 +130,7 @@ python-versions = "*" [[package]] name = "beautifulsoup4" -version = "4.11.1" +version = "4.12.0" description = "Screen-scraping library" category = "dev" optional = false @@ -141,18 +145,18 @@ lxml = ["lxml"] [[package]] name = "black" -version = "22.3.0" +version = "22.12.0" description = "The uncompromising code formatter." category = "dev" optional = false -python-versions = ">=3.6.2" +python-versions = ">=3.7" [package.dependencies] click = ">=8.0.0" mypy-extensions = ">=0.4.3" pathspec = ">=0.9.0" platformdirs = ">=2" -tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +tomli = {version = ">=1.1.0", markers = "python_full_version < \"3.11.0a7\""} typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""} [package.extras] @@ -180,7 +184,7 @@ redis = ["redis (>=2.10.5)"] [[package]] name = "certifi" -version = "2022.5.18.1" +version = "2022.12.7" description = "Python package for providing Mozilla's CA Bundle." category = "main" optional = false @@ -207,14 +211,11 @@ python-versions = ">=3.6.1" [[package]] name = "charset-normalizer" -version = "2.0.12" +version = "3.1.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." category = "main" optional = false -python-versions = ">=3.5.0" - -[package.extras] -unicode-backport = ["unicodedata2"] +python-versions = ">=3.7.0" [[package]] name = "click" @@ -229,15 +230,31 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} [[package]] name = "colorama" -version = "0.4.5" +version = "0.4.6" description = "Cross-platform colored terminal text." category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" + +[[package]] +name = "comm" +version = "0.1.3" +description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +traitlets = ">=5.3" + +[package.extras] +lint = ["black (>=22.6.0)", "mdformat (>0.7)", "mdformat-gfm (>=0.3.5)", "ruff (>=0.0.156)"] +test = ["pytest"] +typing = ["mypy (>=0.990)"] [[package]] name = "coverage" -version = "6.5.0" +version = "7.2.2" description = "Code coverage measurement for Python" category = "dev" optional = false @@ -251,19 +268,19 @@ toml = ["tomli"] [[package]] name = "cssutils" -version = "2.4.2" +version = "2.6.0" description = "A CSS Cascading Style Sheets library for Python" category = "dev" optional = false python-versions = ">=3.7" [package.extras] -docs = ["jaraco.packaging (>=9)", "rst.linker (>=1.9)", "sphinx"] -testing = ["cssselect", "importlib-resources", "jaraco.test (>=5.1)", "lxml", "mock", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] +docs = ["jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx"] +testing = ["cssselect", "flake8 (<5)", "importlib-resources", "jaraco.test (>=5.1)", "lxml", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] [[package]] name = "debugpy" -version = "1.6.3" +version = "1.6.6" description = "An implementation of the Debug Adapter Protocol for Python" category = "dev" optional = false @@ -291,18 +308,18 @@ domdf-python-tools = ">=2.2.0" [[package]] name = "dill" -version = "0.3.5.1" +version = "0.3.6" description = "serialize all of python" category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" +python-versions = ">=3.7" [package.extras] graph = ["objgraph (>=1.7.2)"] [[package]] name = "distlib" -version = "0.3.4" +version = "0.3.6" description = "Distribution utilities" category = "dev" optional = false @@ -318,7 +335,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" [[package]] name = "domdf-python-tools" -version = "3.3.0" +version = "3.6.0" description = "Helpful functions for Pythonโ€‚๐Ÿโ€‚๐Ÿ› ๏ธ" category = "dev" optional = false @@ -333,13 +350,32 @@ all = ["pytz (>=2019.1)"] dates = ["pytz (>=2019.1)"] [[package]] -name = "entrypoints" -version = "0.4" -description = "Discover and load entry points from installed packages." +name = "enum-tools" +version = "0.9.0.post1" +description = "Tools to expand Python's enum module." category = "dev" optional = false python-versions = ">=3.6" +[package.dependencies] +pygments = ">=2.6.1" +typing-extensions = ">=3.7.4.3" + +[package.extras] +all = ["sphinx (>=3.2.0)", "sphinx-toolbox (>=2.16.0)"] +sphinx = ["sphinx (>=3.2.0)", "sphinx-toolbox (>=2.16.0)"] + +[[package]] +name = "exceptiongroup" +version = "1.1.1" +description = "Backport of PEP 654 (exception groups)" +category = "dev" +optional = false +python-versions = ">=3.7" + +[package.extras] +test = ["pytest (>=6)"] + [[package]] name = "executing" version = "1.2.0" @@ -353,15 +389,15 @@ tests = ["asttokens", "littleutils", "pytest", "rich"] [[package]] name = "filelock" -version = "3.7.0" +version = "3.10.7" description = "A platform independent file lock." category = "dev" optional = false python-versions = ">=3.7" [package.extras] -docs = ["furo (>=2021.8.17b43)", "sphinx (>=4.1)", "sphinx-autodoc-typehints (>=1.12)"] -testing = ["covdefaults (>=1.2.0)", "coverage (>=4)", "pytest (>=4)", "pytest-cov", "pytest-timeout (>=1.4.2)"] +docs = ["furo (>=2022.12.7)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.22,!=1.23.4)"] +testing = ["covdefaults (>=2.3)", "coverage (>=7.2.2)", "diff-cover (>=7.5)", "pytest (>=7.2.2)", "pytest-cov (>=4)", "pytest-mock (>=3.10)", "pytest-timeout (>=2.1)"] [[package]] name = "flake8" @@ -396,7 +432,7 @@ lxml = ["lxml"] [[package]] name = "identify" -version = "2.5.1" +version = "2.5.22" description = "File identification library for Python" category = "dev" optional = false @@ -407,7 +443,7 @@ license = ["ukkonen"] [[package]] name = "idna" -version = "3.3" +version = "3.4" description = "Internationalized Domain Names in Applications (IDNA)" category = "main" optional = false @@ -415,7 +451,7 @@ python-versions = ">=3.5" [[package]] name = "imagesize" -version = "1.3.0" +version = "1.4.1" description = "Getting image size from png/jpeg/jpeg2000/gif file" category = "dev" optional = false @@ -423,7 +459,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" [[package]] name = "importlib-metadata" -version = "4.11.4" +version = "6.1.0" description = "Read metadata from Python packages" category = "dev" optional = false @@ -433,17 +469,17 @@ python-versions = ">=3.7" zipp = ">=0.5" [package.extras] -docs = ["jaraco.packaging (>=9)", "rst.linker (>=1.9)", "sphinx"] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] perf = ["ipython"] -testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)"] +testing = ["flake8 (<5)", "flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)"] [[package]] name = "iniconfig" -version = "1.1.1" -description = "iniconfig: brain-dead simple config-ini parsing" +version = "2.0.0" +description = "brain-dead simple config-ini parsing" category = "dev" optional = false -python-versions = "*" +python-versions = ">=3.7" [[package]] name = "interrogate" @@ -469,7 +505,7 @@ tests = ["pytest", "pytest-cov", "pytest-mock"] [[package]] name = "ipykernel" -version = "6.17.1" +version = "6.22.0" description = "IPython Kernel for Jupyter" category = "dev" optional = false @@ -477,24 +513,29 @@ python-versions = ">=3.8" [package.dependencies] appnope = {version = "*", markers = "platform_system == \"Darwin\""} -debugpy = ">=1.0" +comm = ">=0.1.1" +debugpy = ">=1.6.5" ipython = ">=7.23.1" jupyter-client = ">=6.1.12" +jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" matplotlib-inline = ">=0.1" nest-asyncio = "*" packaging = "*" psutil = "*" -pyzmq = ">=17" +pyzmq = ">=20" tornado = ">=6.1" -traitlets = ">=5.1.0" +traitlets = ">=5.4.0" [package.extras] -docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinxcontrib-github-alt"] -test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-cov", "pytest-timeout"] +cov = ["coverage[toml]", "curio", "matplotlib", "pytest-cov", "trio"] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "trio"] +pyqt5 = ["pyqt5"] +pyside6 = ["pyside6"] +test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio", "pytest-cov", "pytest-timeout"] [[package]] name = "ipython" -version = "8.6.0" +version = "8.11.0" description = "IPython: Productive Interactive Computing" category = "dev" optional = false @@ -509,13 +550,13 @@ jedi = ">=0.16" matplotlib-inline = "*" pexpect = {version = ">4.3", markers = "sys_platform != \"win32\""} pickleshare = "*" -prompt-toolkit = ">3.0.1,<3.1.0" +prompt-toolkit = ">=3.0.30,<3.0.37 || >3.0.37,<3.1.0" pygments = ">=2.4.0" stack-data = "*" traitlets = ">=5" [package.extras] -all = ["black", "curio", "docrepr", "ipykernel", "ipyparallel", "ipywidgets", "matplotlib", "matplotlib (!=3.2.0)", "nbconvert", "nbformat", "notebook", "numpy (>=1.20)", "pandas", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "qtconsole", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "trio", "typing-extensions"] +all = ["black", "curio", "docrepr", "ipykernel", "ipyparallel", "ipywidgets", "matplotlib", "matplotlib (!=3.2.0)", "nbconvert", "nbformat", "notebook", "numpy (>=1.21)", "pandas", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "qtconsole", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "trio", "typing-extensions"] black = ["black"] doc = ["docrepr", "ipykernel", "matplotlib", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "typing-extensions"] kernel = ["ipykernel"] @@ -525,25 +566,25 @@ notebook = ["ipywidgets", "notebook"] parallel = ["ipyparallel"] qtconsole = ["qtconsole"] test = ["pytest (<7.1)", "pytest-asyncio", "testpath"] -test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.20)", "pandas", "pytest (<7.1)", "pytest-asyncio", "testpath", "trio"] +test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.21)", "pandas", "pytest (<7.1)", "pytest-asyncio", "testpath", "trio"] [[package]] name = "isort" -version = "5.10.1" +version = "5.12.0" description = "A Python utility / library to sort Python imports." category = "dev" optional = false -python-versions = ">=3.6.1,<4.0" +python-versions = ">=3.8.0" [package.extras] -colors = ["colorama (>=0.4.3,<0.5.0)"] -pipfile-deprecated-finder = ["pipreqs", "requirementslib"] +colors = ["colorama (>=0.4.3)"] +pipfile-deprecated-finder = ["pip-shims (>=0.5.2)", "pipreqs", "requirementslib"] plugins = ["setuptools"] requirements-deprecated-finder = ["pip-api", "pipreqs"] [[package]] name = "jedi" -version = "0.18.1" +version = "0.18.2" description = "An autocompletion tool for Python that can be used for text editors." category = "dev" optional = false @@ -553,16 +594,17 @@ python-versions = ">=3.6" parso = ">=0.8.0,<0.9.0" [package.extras] +docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"] qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] -testing = ["Django (<3.1)", "colorama", "docopt", "pytest (<7.0.0)"] +testing = ["Django (<3.1)", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] [[package]] name = "jinja2" -version = "3.1.2" +version = "3.0.3" description = "A very fast and expressive template engine." category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.6" [package.dependencies] MarkupSafe = ">=2.0" @@ -572,48 +614,48 @@ i18n = ["Babel (>=2.7)"] [[package]] name = "jupyter-client" -version = "7.3.4" +version = "8.1.0" description = "Jupyter protocol implementation and client libraries" category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" [package.dependencies] -entrypoints = "*" -jupyter-core = ">=4.9.2" -nest-asyncio = ">=1.5.4" +importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""} +jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" python-dateutil = ">=2.8.2" pyzmq = ">=23.0" -tornado = ">=6.0" -traitlets = "*" +tornado = ">=6.2" +traitlets = ">=5.3" [package.extras] -doc = ["ipykernel", "myst-parser", "sphinx (>=1.3.6)", "sphinx-rtd-theme", "sphinxcontrib-github-alt"] -test = ["codecov", "coverage", "ipykernel (>=6.5)", "ipython", "mypy", "pre-commit", "pytest", "pytest-asyncio (>=0.18)", "pytest-cov", "pytest-timeout"] +docs = ["ipykernel", "myst-parser", "pydata-sphinx-theme", "sphinx (>=4)", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] +test = ["codecov", "coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pytest", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"] [[package]] name = "jupyter-core" -version = "5.0.0" +version = "5.3.0" description = "Jupyter core package. A base package on which Jupyter projects rely." category = "dev" optional = false python-versions = ">=3.8" [package.dependencies] -platformdirs = "*" -pywin32 = {version = ">=1.0", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""} -traitlets = "*" +platformdirs = ">=2.5" +pywin32 = {version = ">=300", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""} +traitlets = ">=5.3" [package.extras] +docs = ["myst-parser", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "traitlets"] test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] [[package]] name = "lazy-object-proxy" -version = "1.7.1" +version = "1.9.0" description = "A fast and thorough lazy object proxy." category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [[package]] name = "livereload" @@ -637,7 +679,7 @@ python-versions = "*" [[package]] name = "markupsafe" -version = "2.1.1" +version = "2.1.2" description = "Safely add untrusted strings to HTML/XML markup." category = "dev" optional = false @@ -664,7 +706,7 @@ python-versions = "*" [[package]] name = "msgpack" -version = "1.0.4" +version = "1.0.5" description = "MessagePack serializer" category = "dev" optional = false @@ -689,19 +731,19 @@ python2 = ["typed-ast (>=1.4.0,<1.5.0)"] [[package]] name = "mypy-extensions" -version = "0.4.3" +version = "0.4.4" description = "Experimental type system extensions for programs checked with the mypy typechecker." category = "dev" optional = false -python-versions = "*" +python-versions = ">=2.7" [[package]] name = "natsort" -version = "8.1.0" +version = "8.3.1" description = "Simple yet flexible natural sorting in Python." category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [package.extras] fast = ["fastnumbers (>=2.0.0)"] @@ -717,11 +759,14 @@ python-versions = ">=3.5" [[package]] name = "nodeenv" -version = "1.6.0" +version = "1.7.0" description = "Node.js virtual environment builder" category = "dev" optional = false -python-versions = "*" +python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*" + +[package.dependencies] +setuptools = "*" [[package]] name = "overrides" @@ -733,14 +778,11 @@ python-versions = ">=3.6" [[package]] name = "packaging" -version = "21.3" +version = "23.0" description = "Core utilities for Python packages" category = "dev" optional = false -python-versions = ">=3.6" - -[package.dependencies] -pyparsing = ">=2.0.2,<3.0.5 || >3.0.5" +python-versions = ">=3.7" [[package]] name = "parso" @@ -756,11 +798,11 @@ testing = ["docopt", "pytest (<6.0.0)"] [[package]] name = "pathspec" -version = "0.9.0" +version = "0.11.1" description = "Utility library for gitignore style pattern matching of file paths." category = "dev" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +python-versions = ">=3.7" [[package]] name = "pexpect" @@ -783,15 +825,15 @@ python-versions = "*" [[package]] name = "platformdirs" -version = "2.5.2" -description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +version = "3.2.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." category = "dev" optional = false python-versions = ">=3.7" [package.extras] -docs = ["furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx (>=4)", "sphinx-autodoc-typehints (>=1.12)"] -test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"] +docs = ["furo (>=2022.12.7)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.22,!=1.23.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.2.2)", "pytest-cov (>=4)", "pytest-mock (>=3.10)"] [[package]] name = "pluggy" @@ -807,7 +849,7 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "pre-commit" -version = "2.19.0" +version = "2.21.0" description = "A framework for managing and maintaining multi-language pre-commit hooks." category = "dev" optional = false @@ -818,16 +860,15 @@ cfgv = ">=2.0.0" identify = ">=1.0.0" nodeenv = ">=0.11.1" pyyaml = ">=5.1" -toml = "*" -virtualenv = ">=20.0.8" +virtualenv = ">=20.10.0" [[package]] name = "prompt-toolkit" -version = "3.0.32" +version = "3.0.38" description = "Library for building powerful interactive command lines in Python" category = "dev" optional = false -python-versions = ">=3.6.2" +python-versions = ">=3.7.0" [package.dependencies] wcwidth = "*" @@ -896,24 +937,30 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" [[package]] name = "pygments" -version = "2.12.0" +version = "2.14.0" description = "Pygments is a syntax highlighting package written in Python." category = "dev" optional = false python-versions = ">=3.6" +[package.extras] +plugins = ["importlib-metadata"] + [[package]] name = "pylint" -version = "2.14.3" +version = "2.17.1" description = "python code static checker" category = "dev" optional = false python-versions = ">=3.7.2" [package.dependencies] -astroid = ">=2.11.6,<=2.12.0-dev0" +astroid = ">=2.15.0,<=2.17.0-dev0" colorama = {version = ">=0.4.5", markers = "sys_platform == \"win32\""} -dill = ">=0.2" +dill = [ + {version = ">=0.2", markers = "python_version < \"3.11\""}, + {version = ">=0.3.6", markers = "python_version >= \"3.11\""}, +] isort = ">=4.2.5,<6" mccabe = ">=0.6,<0.8" platformdirs = ">=2.2.0" @@ -925,34 +972,22 @@ typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\"" spelling = ["pyenchant (>=3.2,<4.0)"] testutils = ["gitpython (>3)"] -[[package]] -name = "pyparsing" -version = "3.0.9" -description = "pyparsing module - Classes and methods to define and execute parsing grammars" -category = "dev" -optional = false -python-versions = ">=3.6.8" - -[package.extras] -diagrams = ["jinja2", "railroad-diagrams"] - [[package]] name = "pytest" -version = "7.1.2" +version = "7.2.2" description = "pytest: simple powerful testing with Python" category = "dev" optional = false python-versions = ">=3.7" [package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} attrs = ">=19.2.0" colorama = {version = "*", markers = "sys_platform == \"win32\""} +exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} iniconfig = "*" packaging = "*" pluggy = ">=0.12,<2.0" -py = ">=1.8.2" -tomli = ">=1.0.0" +tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""} [package.extras] testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"] @@ -983,17 +1018,9 @@ python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" [package.dependencies] six = ">=1.5" -[[package]] -name = "pytz" -version = "2022.1" -description = "World timezone definitions, modern and historical" -category = "dev" -optional = false -python-versions = "*" - [[package]] name = "pywin32" -version = "305" +version = "306" description = "Python for Window Extensions" category = "dev" optional = false @@ -1009,7 +1036,7 @@ python-versions = ">=3.6" [[package]] name = "pyzmq" -version = "24.0.1" +version = "25.0.2" description = "Python bindings for 0MQ" category = "dev" optional = false @@ -1017,25 +1044,24 @@ python-versions = ">=3.6" [package.dependencies] cffi = {version = "*", markers = "implementation_name == \"pypy\""} -py = {version = "*", markers = "implementation_name == \"pypy\""} [[package]] name = "requests" -version = "2.27.1" +version = "2.28.2" description = "Python HTTP for Humans." category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +python-versions = ">=3.7, <4" [package.dependencies] certifi = ">=2017.4.17" -charset-normalizer = {version = ">=2.0.0,<2.1.0", markers = "python_version >= \"3\""} -idna = {version = ">=2.5,<4", markers = "python_version >= \"3\""} +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" urllib3 = ">=1.21.1,<1.27" [package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<5)"] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] [[package]] name = "responses" @@ -1053,7 +1079,7 @@ urllib3 = ">=1.25.10" tests = ["coverage (>=6.0.0)", "flake8", "mypy", "pytest (>=7.0.0)", "pytest-asyncio", "pytest-cov", "pytest-localserver", "types-mock", "types-requests"] [[package]] -name = "ruamel.yaml" +name = "ruamel-yaml" version = "0.17.21" description = "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order" category = "dev" @@ -1068,8 +1094,8 @@ docs = ["ryd"] jinja2 = ["ruamel.yaml.jinja2 (>=0.2)"] [[package]] -name = "ruamel.yaml.clib" -version = "0.2.6" +name = "ruamel-yaml-clib" +version = "0.2.7" description = "C version of reader, parser and emitter for ruamel.yaml derived from libyaml" category = "dev" optional = false @@ -1077,14 +1103,14 @@ python-versions = ">=3.5" [[package]] name = "setuptools" -version = "65.5.1" +version = "67.6.1" description = "Easily download, build, install, upgrade, and uninstall Python packages" category = "dev" optional = false python-versions = ">=3.7" [package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8 (<5)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] @@ -1106,11 +1132,11 @@ python-versions = "*" [[package]] name = "soupsieve" -version = "2.3.2.post1" +version = "2.4" description = "A modern CSS selector implementation for Beautiful Soup." category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [[package]] name = "sphinx" @@ -1146,11 +1172,11 @@ test = ["cython", "html5lib", "pytest", "pytest-cov", "typed-ast"] [[package]] name = "sphinx-argparse" -version = "0.3.1" +version = "0.3.2" description = "A sphinx extension that automatically documents argparse commands and options" category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.6" [package.dependencies] sphinx = ">=1.2.0" @@ -1176,7 +1202,7 @@ test = ["pytest", "pytest-cov"] [[package]] name = "sphinx-autodoc-typehints" -version = "1.18.3" +version = "1.19.1" description = "Type hints (PEP 484) support for the Sphinx autodoc extension" category = "dev" optional = false @@ -1191,7 +1217,7 @@ type-comments = ["typed-ast (>=1.5.2)"] [[package]] name = "sphinx-jinja2-compat" -version = "0.1.2" +version = "0.2.0" description = "Patches Jinja2 v3 to restore compatibility with earlier Sphinx versions." category = "dev" optional = false @@ -1215,39 +1241,41 @@ Sphinx = "*" [[package]] name = "sphinx-rtd-theme" -version = "1.0.0" +version = "1.2.0" description = "Read the Docs theme for Sphinx" category = "dev" optional = false -python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" [package.dependencies] -docutils = "<0.18" -sphinx = ">=1.6" +docutils = "<0.19" +sphinx = ">=1.6,<7" +sphinxcontrib-jquery = {version = ">=2.0.0,<3.0.0 || >3.0.0", markers = "python_version > \"3\""} [package.extras] -dev = ["bump2version", "sphinxcontrib-httpdomain", "transifex-client"] +dev = ["bump2version", "sphinxcontrib-httpdomain", "transifex-client", "wheel"] [[package]] name = "sphinx-tabs" -version = "3.3.1" +version = "3.4.0" description = "Tabbed views for Sphinx" category = "dev" optional = false -python-versions = "~=3.6" +python-versions = "~=3.7" [package.dependencies] docutils = ">=0.17.0,<0.18.0" +jinja2 = "<3.1.0" pygments = "*" -sphinx = ">=2,<5" +sphinx = ">=2,<6" [package.extras] code-style = ["pre-commit (==2.13.0)"] -testing = ["bs4", "coverage", "pygments", "pytest (>=3.6,<4)", "pytest-cov", "pytest-regressions", "rinohtype", "sphinx-testing"] +testing = ["bs4", "coverage", "pygments", "pytest (>=7.1,<8)", "pytest-cov", "pytest-regressions", "rinohtype", "sphinx-testing"] [[package]] name = "sphinx-toolbox" -version = "3.1.2" +version = "3.4.0" description = "Box of handy tools for Sphinx ๐Ÿงฐ ๐Ÿ“”" category = "dev" optional = false @@ -1259,7 +1287,7 @@ autodocsumm = ">=0.2.0" beautifulsoup4 = ">=4.9.1" cachecontrol = {version = ">=0.12.6", extras = ["filecache"]} dict2css = ">=0.2.3" -docutils = ">=0.16,<0.18" +docutils = ">=0.16,<0.19" domdf-python-tools = ">=2.9.0" html5lib = ">=1.1" lockfile = ">=0.12.2" @@ -1273,16 +1301,16 @@ tabulate = ">=0.8.7" typing-extensions = ">=3.7.4.3,<3.10.0.1 || >3.10.0.1" [package.extras] -all = ["coincidence (>=0.4.3)", "pygments (>=2.7.4)"] -testing = ["coincidence (>=0.4.3)", "pygments (>=2.7.4)"] +all = ["coincidence (>=0.4.3)", "pygments (>=2.7.4,<=2.13.0)"] +testing = ["coincidence (>=0.4.3)", "pygments (>=2.7.4,<=2.13.0)"] [[package]] name = "sphinxcontrib-applehelp" -version = "1.0.2" -description = "sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books" +version = "1.0.4" +description = "sphinxcontrib-applehelp is a Sphinx extension which outputs Apple help books" category = "dev" optional = false -python-versions = ">=3.5" +python-versions = ">=3.8" [package.extras] lint = ["docutils-stubs", "flake8", "mypy"] @@ -1302,16 +1330,27 @@ test = ["pytest"] [[package]] name = "sphinxcontrib-htmlhelp" -version = "2.0.0" +version = "2.0.1" description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files" category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" [package.extras] lint = ["docutils-stubs", "flake8", "mypy"] test = ["html5lib", "pytest"] +[[package]] +name = "sphinxcontrib-jquery" +version = "4.1" +description = "Extension to include jQuery on newer Sphinx releases" +category = "dev" +optional = false +python-versions = ">=2.7" + +[package.dependencies] +Sphinx = ">=1.8" + [[package]] name = "sphinxcontrib-jsmath" version = "1.0.1" @@ -1349,7 +1388,7 @@ test = ["pytest"] [[package]] name = "stack-data" -version = "0.6.1" +version = "0.6.2" description = "Extract data from python stack frames and tracebacks for informative displays" category = "dev" optional = false @@ -1365,11 +1404,11 @@ tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"] [[package]] name = "tabulate" -version = "0.8.9" +version = "0.9.0" description = "Pretty-print tabular data" category = "dev" optional = false -python-versions = "*" +python-versions = ">=3.7" [package.extras] widechars = ["wcwidth"] @@ -1392,35 +1431,35 @@ python-versions = ">=3.7" [[package]] name = "tomlkit" -version = "0.11.0" +version = "0.11.7" description = "Style preserving TOML library" category = "dev" optional = false -python-versions = ">=3.6,<4.0" +python-versions = ">=3.7" [[package]] name = "tornado" -version = "6.1" +version = "6.2" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." category = "dev" optional = false -python-versions = ">= 3.5" +python-versions = ">= 3.7" [[package]] name = "traitlets" -version = "5.5.0" -description = "" +version = "5.9.0" +description = "Traitlets Python configuration system" category = "dev" optional = false python-versions = ">=3.7" [package.extras] docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] -test = ["pre-commit", "pytest"] +test = ["argcomplete (>=2.0)", "pre-commit", "pytest", "pytest-mock"] [[package]] name = "types-requests" -version = "2.27.27" +version = "2.28.11.17" description = "Typing stubs for requests" category = "main" optional = false @@ -1431,7 +1470,7 @@ types-urllib3 = "<1.27" [[package]] name = "types-urllib3" -version = "1.26.14" +version = "1.26.25.10" description = "Typing stubs for urllib3" category = "main" optional = false @@ -1439,7 +1478,7 @@ python-versions = "*" [[package]] name = "typing-extensions" -version = "4.2.0" +version = "4.5.0" description = "Backported and Experimental Type Hints for Python 3.7+" category = "dev" optional = false @@ -1447,38 +1486,37 @@ python-versions = ">=3.7" [[package]] name = "urllib3" -version = "1.26.9" +version = "1.26.15" description = "HTTP library with thread-safe connection pooling, file post, and more." category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" [package.extras] brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] -secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] [[package]] name = "virtualenv" -version = "20.14.1" +version = "20.21.0" description = "Virtual Python Environment builder" category = "dev" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +python-versions = ">=3.7" [package.dependencies] -distlib = ">=0.3.1,<1" -filelock = ">=3.2,<4" -platformdirs = ">=2,<3" -six = ">=1.9.0,<2" +distlib = ">=0.3.6,<1" +filelock = ">=3.4.1,<4" +platformdirs = ">=2.4,<4" [package.extras] -docs = ["proselint (>=0.10.2)", "sphinx (>=3)", "sphinx-argparse (>=0.2.5)", "sphinx-rtd-theme (>=0.4.3)", "towncrier (>=21.3)"] -testing = ["coverage (>=4)", "coverage-enable-subprocess (>=1)", "flaky (>=3)", "packaging (>=20.0)", "pytest (>=4)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.1)", "pytest-mock (>=2)", "pytest-randomly (>=1)", "pytest-timeout (>=1)"] +docs = ["furo (>=2022.12.7)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=22.12)"] +test = ["covdefaults (>=2.2.2)", "coverage (>=7.1)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23)", "pytest (>=7.2.1)", "pytest-env (>=0.8.1)", "pytest-freezegun (>=0.4.2)", "pytest-mock (>=3.10)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)"] [[package]] name = "wcwidth" -version = "0.2.5" +version = "0.2.6" description = "Measures the displayed width of unicode strings in a terminal" category = "dev" optional = false @@ -1494,7 +1532,7 @@ python-versions = "*" [[package]] name = "wrapt" -version = "1.14.1" +version = "1.15.0" description = "Module for decorators, wrappers and monkey patching." category = "dev" optional = false @@ -1502,102 +1540,91 @@ python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" [[package]] name = "zipp" -version = "3.8.0" +version = "3.15.0" description = "Backport of pathlib-compatible object wrapper for zip files" category = "dev" optional = false python-versions = ">=3.7" [package.extras] -docs = ["jaraco.packaging (>=9)", "rst.linker (>=1.9)", "sphinx"] -testing = ["func-timeout", "jaraco.itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] [metadata] lock-version = "1.1" python-versions = "^3.9" -content-hash = "30b83b99cbf90f83ff068d306acfdc7572978da2ba84e2fc1b932dc7283ebc5e" +content-hash = "a390d2d08675236d40fb758a51095bedd436482499e904a6b2e5097bc257b104" [metadata.files] alabaster = [ - {file = "alabaster-0.7.12-py2.py3-none-any.whl", hash = "sha256:446438bdcca0e05bd45ea2de1668c1d9b032e1a9154c2c259092d77031ddd359"}, - {file = "alabaster-0.7.12.tar.gz", hash = "sha256:a661d72d58e6ea8a57f7a86e37d86716863ee5e92788398526d58b26a4e4dc02"}, + {file = "alabaster-0.7.13-py3-none-any.whl", hash = "sha256:1ee19aca801bbabb5ba3f5f258e4422dfa86f82f3e9cefb0859b283cdd7f62a3"}, + {file = "alabaster-0.7.13.tar.gz", hash = "sha256:a27a4a084d5e690e16e01e03ad2b2e552c61a65469419b907243193de1a84ae2"}, ] apeye = [ - {file = "apeye-1.2.0-py3-none-any.whl", hash = "sha256:d6b08c96457e4e0457088c247417fc336ebf83ab88645c508562aaeaf3077954"}, - {file = "apeye-1.2.0.tar.gz", hash = "sha256:0bb0f5b037730f149d3ab3697bc30ccccd60407cf16218d8ffa8f78462239e1e"}, + {file = "apeye-1.3.0-py3-none-any.whl", hash = "sha256:8ce991a5c7d1ccedd46f067fcd53eccfa4b0b62a50d8802340b427941603b839"}, + {file = "apeye-1.3.0.tar.gz", hash = "sha256:30ac4dcc6eafc28ae2cc6911caef7396c2692a3842e2d77aafe03cdb979eeb3c"}, +] +apeye-core = [ + {file = "apeye_core-1.1.1-py3-none-any.whl", hash = "sha256:3a5d61889a40a8b71394cd7d15ece7e6af3ec2f8450c3f5c2d5c4881fcae8743"}, + {file = "apeye_core-1.1.1.tar.gz", hash = "sha256:53265cd76c0255009921a16789705c7ee0151d6df801aca7a02790ed775b2493"}, ] appnope = [ {file = "appnope-0.1.3-py2.py3-none-any.whl", hash = "sha256:265a455292d0bd8a72453494fa24df5a11eb18373a60c7c0430889f22548605e"}, {file = "appnope-0.1.3.tar.gz", hash = "sha256:02bd91c4de869fbb1e1c50aafc4098827a7a54ab2f39d9dcba6c9547ed920e24"}, ] astroid = [ - {file = "astroid-2.11.6-py3-none-any.whl", hash = "sha256:ba33a82a9a9c06a5ceed98180c5aab16e29c285b828d94696bf32d6015ea82a9"}, - {file = "astroid-2.11.6.tar.gz", hash = "sha256:4f933d0bf5e408b03a6feb5d23793740c27e07340605f236496cd6ce552043d6"}, + {file = "astroid-2.15.1-py3-none-any.whl", hash = "sha256:89860bda98fe2bbd1f5d262229be7629d778ce280de68d95d4a73d1f592ad268"}, + {file = "astroid-2.15.1.tar.gz", hash = "sha256:af4e0aff46e2868218502789898269ed95b663fba49e65d91c1e09c966266c34"}, ] asttokens = [ - {file = "asttokens-2.1.0-py2.py3-none-any.whl", hash = "sha256:1b28ed85e254b724439afc783d4bee767f780b936c3fe8b3275332f42cf5f561"}, - {file = "asttokens-2.1.0.tar.gz", hash = "sha256:4aa76401a151c8cc572d906aad7aea2a841780834a19d780f4321c0fe1b54635"}, -] -atomicwrites = [ - {file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"}, - {file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"}, + {file = "asttokens-2.2.1-py2.py3-none-any.whl", hash = "sha256:6b0ac9e93fb0335014d382b8fa9b3afa7df546984258005da0b9e7095b3deb1c"}, + {file = "asttokens-2.2.1.tar.gz", hash = "sha256:4622110b2a6f30b77e1473affaa97e711bc2f07d3f10848420ff1898edbe94f3"}, ] attrs = [ - {file = "attrs-21.4.0-py2.py3-none-any.whl", hash = "sha256:2d27e3784d7a565d36ab851fe94887c5eccd6a463168875832a1be79c82828b4"}, - {file = "attrs-21.4.0.tar.gz", hash = "sha256:626ba8234211db98e869df76230a137c4c40a12d72445c45d5f5b716f076e2fd"}, + {file = "attrs-22.2.0-py3-none-any.whl", hash = "sha256:29e95c7f6778868dbd49170f98f8818f78f3dc5e0e37c0b1f474e3561b240836"}, + {file = "attrs-22.2.0.tar.gz", hash = "sha256:c9227bfc2f01993c03f68db37d1d15c9690188323c067c641f1a35ca58185f99"}, ] autodocsumm = [ - {file = "autodocsumm-0.2.8-py3-none-any.whl", hash = "sha256:08f0401bb2c6f2bc92848ebd200c53a3966d1d23658e7d70c52f12b088941f79"}, - {file = "autodocsumm-0.2.8.tar.gz", hash = "sha256:e67ebf6bb50a627d43f2ea3fcedfe31744eb7bfecd690e748a393248511ac6c5"}, + {file = "autodocsumm-0.2.10-py3-none-any.whl", hash = "sha256:cac15a879e7cf2ebac00fe05ec691ae48d7c5b8e75eceae2f61f98905ac0c2d8"}, + {file = "autodocsumm-0.2.10.tar.gz", hash = "sha256:6c28527687e9b5496c586115baadb91d99c30bb637010f4d5f497e51b1acabd8"}, ] autoflake = [ - {file = "autoflake-1.6.1-py2.py3-none-any.whl", hash = "sha256:dfef4c851fb07e6111f9115d3e7c8c52d8564cbf71c12ade2d8b8a2a7b8bd176"}, - {file = "autoflake-1.6.1.tar.gz", hash = "sha256:72bce741144ef6db26005d47dba242c1fd6a91ea53f7f4c5a90ad4b051e394c2"}, + {file = "autoflake-1.7.8-py3-none-any.whl", hash = "sha256:46373ef69b6714f5064c923bb28bd797c4f8a9497f557d87fc36665c6d956b39"}, + {file = "autoflake-1.7.8.tar.gz", hash = "sha256:e7e46372dee46fa1c97acf310d99d922b63d369718a270809d7c278d34a194cf"}, ] babel = [ - {file = "Babel-2.10.1-py3-none-any.whl", hash = "sha256:3f349e85ad3154559ac4930c3918247d319f21910d5ce4b25d439ed8693b98d2"}, - {file = "Babel-2.10.1.tar.gz", hash = "sha256:98aeaca086133efb3e1e2aad0396987490c8425929ddbcfe0550184fdc54cd13"}, + {file = "Babel-2.12.1-py3-none-any.whl", hash = "sha256:b4246fb7677d3b98f501a39d43396d3cafdc8eadb045f4a31be01863f655c610"}, + {file = "Babel-2.12.1.tar.gz", hash = "sha256:cc2d99999cd01d44420ae725a21c9e3711b3aadc7976d6147f622d8581963455"}, ] backcall = [ {file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"}, {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"}, ] beautifulsoup4 = [ - {file = "beautifulsoup4-4.11.1-py3-none-any.whl", hash = "sha256:58d5c3d29f5a36ffeb94f02f0d786cd53014cf9b3b3951d42e0080d8a9498d30"}, - {file = "beautifulsoup4-4.11.1.tar.gz", hash = "sha256:ad9aa55b65ef2808eb405f46cf74df7fcb7044d5cbc26487f96eb2ef2e436693"}, + {file = "beautifulsoup4-4.12.0-py3-none-any.whl", hash = "sha256:2130a5ad7f513200fae61a17abb5e338ca980fa28c439c0571014bc0217e9591"}, + {file = "beautifulsoup4-4.12.0.tar.gz", hash = "sha256:c5fceeaec29d09c84970e47c65f2f0efe57872f7cff494c9691a26ec0ff13234"}, ] black = [ - {file = "black-22.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2497f9c2386572e28921fa8bec7be3e51de6801f7459dffd6e62492531c47e09"}, - {file = "black-22.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5795a0375eb87bfe902e80e0c8cfaedf8af4d49694d69161e5bd3206c18618bb"}, - {file = "black-22.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e3556168e2e5c49629f7b0f377070240bd5511e45e25a4497bb0073d9dda776a"}, - {file = "black-22.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67c8301ec94e3bcc8906740fe071391bce40a862b7be0b86fb5382beefecd968"}, - {file = "black-22.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:fd57160949179ec517d32ac2ac898b5f20d68ed1a9c977346efbac9c2f1e779d"}, - {file = "black-22.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cc1e1de68c8e5444e8f94c3670bb48a2beef0e91dddfd4fcc29595ebd90bb9ce"}, - {file = "black-22.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d2fc92002d44746d3e7db7cf9313cf4452f43e9ea77a2c939defce3b10b5c82"}, - {file = "black-22.3.0-cp36-cp36m-win_amd64.whl", hash = "sha256:a6342964b43a99dbc72f72812bf88cad8f0217ae9acb47c0d4f141a6416d2d7b"}, - {file = "black-22.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:328efc0cc70ccb23429d6be184a15ce613f676bdfc85e5fe8ea2a9354b4e9015"}, - {file = "black-22.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06f9d8846f2340dfac80ceb20200ea5d1b3f181dd0556b47af4e8e0b24fa0a6b"}, - {file = "black-22.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:ad4efa5fad66b903b4a5f96d91461d90b9507a812b3c5de657d544215bb7877a"}, - {file = "black-22.3.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e8477ec6bbfe0312c128e74644ac8a02ca06bcdb8982d4ee06f209be28cdf163"}, - {file = "black-22.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:637a4014c63fbf42a692d22b55d8ad6968a946b4a6ebc385c5505d9625b6a464"}, - {file = "black-22.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:863714200ada56cbc366dc9ae5291ceb936573155f8bf8e9de92aef51f3ad0f0"}, - {file = "black-22.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10dbe6e6d2988049b4655b2b739f98785a884d4d6b85bc35133a8fb9a2233176"}, - {file = "black-22.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:cee3e11161dde1b2a33a904b850b0899e0424cc331b7295f2a9698e79f9a69a0"}, - {file = "black-22.3.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5891ef8abc06576985de8fa88e95ab70641de6c1fca97e2a15820a9b69e51b20"}, - {file = "black-22.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:30d78ba6bf080eeaf0b7b875d924b15cd46fec5fd044ddfbad38c8ea9171043a"}, - {file = "black-22.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ee8f1f7228cce7dffc2b464f07ce769f478968bfb3dd1254a4c2eeed84928aad"}, - {file = "black-22.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ee227b696ca60dd1c507be80a6bc849a5a6ab57ac7352aad1ffec9e8b805f21"}, - {file = "black-22.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:9b542ced1ec0ceeff5b37d69838106a6348e60db7b8fdd245294dc1d26136265"}, - {file = "black-22.3.0-py3-none-any.whl", hash = "sha256:bc58025940a896d7e5356952228b68f793cf5fcb342be703c3a2669a1488cb72"}, - {file = "black-22.3.0.tar.gz", hash = "sha256:35020b8886c022ced9282b51b5a875b6d1ab0c387b31a065b84db7c33085ca79"}, + {file = "black-22.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9eedd20838bd5d75b80c9f5487dbcb06836a43833a37846cf1d8c1cc01cef59d"}, + {file = "black-22.12.0-cp310-cp310-win_amd64.whl", hash = "sha256:159a46a4947f73387b4d83e87ea006dbb2337eab6c879620a3ba52699b1f4351"}, + {file = "black-22.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d30b212bffeb1e252b31dd269dfae69dd17e06d92b87ad26e23890f3efea366f"}, + {file = "black-22.12.0-cp311-cp311-win_amd64.whl", hash = "sha256:7412e75863aa5c5411886804678b7d083c7c28421210180d67dfd8cf1221e1f4"}, + {file = "black-22.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c116eed0efb9ff870ded8b62fe9f28dd61ef6e9ddd28d83d7d264a38417dcee2"}, + {file = "black-22.12.0-cp37-cp37m-win_amd64.whl", hash = "sha256:1f58cbe16dfe8c12b7434e50ff889fa479072096d79f0a7f25e4ab8e94cd8350"}, + {file = "black-22.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77d86c9f3db9b1bf6761244bc0b3572a546f5fe37917a044e02f3166d5aafa7d"}, + {file = "black-22.12.0-cp38-cp38-win_amd64.whl", hash = "sha256:82d9fe8fee3401e02e79767016b4907820a7dc28d70d137eb397b92ef3cc5bfc"}, + {file = "black-22.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:101c69b23df9b44247bd88e1d7e90154336ac4992502d4197bdac35dd7ee3320"}, + {file = "black-22.12.0-cp39-cp39-win_amd64.whl", hash = "sha256:559c7a1ba9a006226f09e4916060982fd27334ae1998e7a38b3f33a37f7a2148"}, + {file = "black-22.12.0-py3-none-any.whl", hash = "sha256:436cc9167dd28040ad90d3b404aec22cedf24a6e4d7de221bec2730ec0c97bcf"}, + {file = "black-22.12.0.tar.gz", hash = "sha256:229351e5a18ca30f447bf724d007f890f97e13af070bb6ad4c0a441cd7596a2f"}, ] cachecontrol = [ {file = "CacheControl-0.12.11-py2.py3-none-any.whl", hash = "sha256:2c75d6a8938cb1933c75c50184549ad42728a27e9f6b92fd677c3151aa72555b"}, {file = "CacheControl-0.12.11.tar.gz", hash = "sha256:a5b9fcc986b184db101aa280b42ecdcdfc524892596f606858e0b7a8b4d9e144"}, ] certifi = [ - {file = "certifi-2022.5.18.1-py3-none-any.whl", hash = "sha256:f1d53542ee8cbedbe2118b5686372fb33c297fcd6379b050cca0ef13a597382a"}, - {file = "certifi-2022.5.18.1.tar.gz", hash = "sha256:9c5705e395cd70084351dd8ad5c41e65655e08ce46f2ec9cf6c2c08390f71eb7"}, + {file = "certifi-2022.12.7-py3-none-any.whl", hash = "sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18"}, + {file = "certifi-2022.12.7.tar.gz", hash = "sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3"}, ] cffi = [ {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, @@ -1670,92 +1697,169 @@ cfgv = [ {file = "cfgv-3.3.1.tar.gz", hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736"}, ] charset-normalizer = [ - {file = "charset-normalizer-2.0.12.tar.gz", hash = "sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597"}, - {file = "charset_normalizer-2.0.12-py3-none-any.whl", hash = "sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df"}, + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, ] click = [ {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, ] colorama = [ - {file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"}, - {file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"}, + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] +comm = [ + {file = "comm-0.1.3-py3-none-any.whl", hash = "sha256:16613c6211e20223f215fc6d3b266a247b6e2641bf4e0a3ad34cb1aff2aa3f37"}, + {file = "comm-0.1.3.tar.gz", hash = "sha256:a61efa9daffcfbe66fd643ba966f846a624e4e6d6767eda9cf6e993aadaab93e"}, ] coverage = [ - {file = "coverage-6.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ef8674b0ee8cc11e2d574e3e2998aea5df5ab242e012286824ea3c6970580e53"}, - {file = "coverage-6.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:784f53ebc9f3fd0e2a3f6a78b2be1bd1f5575d7863e10c6e12504f240fd06660"}, - {file = "coverage-6.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4a5be1748d538a710f87542f22c2cad22f80545a847ad91ce45e77417293eb4"}, - {file = "coverage-6.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:83516205e254a0cb77d2d7bb3632ee019d93d9f4005de31dca0a8c3667d5bc04"}, - {file = "coverage-6.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af4fffaffc4067232253715065e30c5a7ec6faac36f8fc8d6f64263b15f74db0"}, - {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:97117225cdd992a9c2a5515db1f66b59db634f59d0679ca1fa3fe8da32749cae"}, - {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:a1170fa54185845505fbfa672f1c1ab175446c887cce8212c44149581cf2d466"}, - {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:11b990d520ea75e7ee8dcab5bc908072aaada194a794db9f6d7d5cfd19661e5a"}, - {file = "coverage-6.5.0-cp310-cp310-win32.whl", hash = "sha256:5dbec3b9095749390c09ab7c89d314727f18800060d8d24e87f01fb9cfb40b32"}, - {file = "coverage-6.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:59f53f1dc5b656cafb1badd0feb428c1e7bc19b867479ff72f7a9dd9b479f10e"}, - {file = "coverage-6.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4a5375e28c5191ac38cca59b38edd33ef4cc914732c916f2929029b4bfb50795"}, - {file = "coverage-6.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4ed2820d919351f4167e52425e096af41bfabacb1857186c1ea32ff9983ed75"}, - {file = "coverage-6.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:33a7da4376d5977fbf0a8ed91c4dffaaa8dbf0ddbf4c8eea500a2486d8bc4d7b"}, - {file = "coverage-6.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8fb6cf131ac4070c9c5a3e21de0f7dc5a0fbe8bc77c9456ced896c12fcdad91"}, - {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a6b7d95969b8845250586f269e81e5dfdd8ff828ddeb8567a4a2eaa7313460c4"}, - {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1ef221513e6f68b69ee9e159506d583d31aa3567e0ae84eaad9d6ec1107dddaa"}, - {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cca4435eebea7962a52bdb216dec27215d0df64cf27fc1dd538415f5d2b9da6b"}, - {file = "coverage-6.5.0-cp311-cp311-win32.whl", hash = "sha256:98e8a10b7a314f454d9eff4216a9a94d143a7ee65018dd12442e898ee2310578"}, - {file = "coverage-6.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:bc8ef5e043a2af066fa8cbfc6e708d58017024dc4345a1f9757b329a249f041b"}, - {file = "coverage-6.5.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4433b90fae13f86fafff0b326453dd42fc9a639a0d9e4eec4d366436d1a41b6d"}, - {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4f05d88d9a80ad3cac6244d36dd89a3c00abc16371769f1340101d3cb899fc3"}, - {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:94e2565443291bd778421856bc975d351738963071e9b8839ca1fc08b42d4bef"}, - {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:027018943386e7b942fa832372ebc120155fd970837489896099f5cfa2890f79"}, - {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:255758a1e3b61db372ec2736c8e2a1fdfaf563977eedbdf131de003ca5779b7d"}, - {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:851cf4ff24062c6aec510a454b2584f6e998cada52d4cb58c5e233d07172e50c"}, - {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:12adf310e4aafddc58afdb04d686795f33f4d7a6fa67a7a9d4ce7d6ae24d949f"}, - {file = "coverage-6.5.0-cp37-cp37m-win32.whl", hash = "sha256:b5604380f3415ba69de87a289a2b56687faa4fe04dbee0754bfcae433489316b"}, - {file = "coverage-6.5.0-cp37-cp37m-win_amd64.whl", hash = "sha256:4a8dbc1f0fbb2ae3de73eb0bdbb914180c7abfbf258e90b311dcd4f585d44bd2"}, - {file = "coverage-6.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d900bb429fdfd7f511f868cedd03a6bbb142f3f9118c09b99ef8dc9bf9643c3c"}, - {file = "coverage-6.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2198ea6fc548de52adc826f62cb18554caedfb1d26548c1b7c88d8f7faa8f6ba"}, - {file = "coverage-6.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c4459b3de97b75e3bd6b7d4b7f0db13f17f504f3d13e2a7c623786289dd670e"}, - {file = "coverage-6.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:20c8ac5386253717e5ccc827caad43ed66fea0efe255727b1053a8154d952398"}, - {file = "coverage-6.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b07130585d54fe8dff3d97b93b0e20290de974dc8177c320aeaf23459219c0b"}, - {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:dbdb91cd8c048c2b09eb17713b0c12a54fbd587d79adcebad543bc0cd9a3410b"}, - {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:de3001a203182842a4630e7b8d1a2c7c07ec1b45d3084a83d5d227a3806f530f"}, - {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:e07f4a4a9b41583d6eabec04f8b68076ab3cd44c20bd29332c6572dda36f372e"}, - {file = "coverage-6.5.0-cp38-cp38-win32.whl", hash = "sha256:6d4817234349a80dbf03640cec6109cd90cba068330703fa65ddf56b60223a6d"}, - {file = "coverage-6.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:7ccf362abd726b0410bf8911c31fbf97f09f8f1061f8c1cf03dfc4b6372848f6"}, - {file = "coverage-6.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:633713d70ad6bfc49b34ead4060531658dc6dfc9b3eb7d8a716d5873377ab745"}, - {file = "coverage-6.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:95203854f974e07af96358c0b261f1048d8e1083f2de9b1c565e1be4a3a48cfc"}, - {file = "coverage-6.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9023e237f4c02ff739581ef35969c3739445fb059b060ca51771e69101efffe"}, - {file = "coverage-6.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:265de0fa6778d07de30bcf4d9dc471c3dc4314a23a3c6603d356a3c9abc2dfcf"}, - {file = "coverage-6.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f830ed581b45b82451a40faabb89c84e1a998124ee4212d440e9c6cf70083e5"}, - {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7b6be138d61e458e18d8e6ddcddd36dd96215edfe5f1168de0b1b32635839b62"}, - {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:42eafe6778551cf006a7c43153af1211c3aaab658d4d66fa5fcc021613d02518"}, - {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:723e8130d4ecc8f56e9a611e73b31219595baa3bb252d539206f7bbbab6ffc1f"}, - {file = "coverage-6.5.0-cp39-cp39-win32.whl", hash = "sha256:d9ecf0829c6a62b9b573c7bb6d4dcd6ba8b6f80be9ba4fc7ed50bf4ac9aecd72"}, - {file = "coverage-6.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:fc2af30ed0d5ae0b1abdb4ebdce598eafd5b35397d4d75deb341a614d333d987"}, - {file = "coverage-6.5.0-pp36.pp37.pp38-none-any.whl", hash = "sha256:1431986dac3923c5945271f169f59c45b8802a114c8f548d611f2015133df77a"}, - {file = "coverage-6.5.0.tar.gz", hash = "sha256:f642e90754ee3e06b0e7e51bce3379590e76b7f76b708e1a71ff043f87025c84"}, + {file = "coverage-7.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c90e73bdecb7b0d1cea65a08cb41e9d672ac6d7995603d6465ed4914b98b9ad7"}, + {file = "coverage-7.2.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e2926b8abedf750c2ecf5035c07515770944acf02e1c46ab08f6348d24c5f94d"}, + {file = "coverage-7.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:57b77b9099f172804e695a40ebaa374f79e4fb8b92f3e167f66facbf92e8e7f5"}, + {file = "coverage-7.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:efe1c0adad110bf0ad7fb59f833880e489a61e39d699d37249bdf42f80590169"}, + {file = "coverage-7.2.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2199988e0bc8325d941b209f4fd1c6fa007024b1442c5576f1a32ca2e48941e6"}, + {file = "coverage-7.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:81f63e0fb74effd5be736cfe07d710307cc0a3ccb8f4741f7f053c057615a137"}, + {file = "coverage-7.2.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:186e0fc9cf497365036d51d4d2ab76113fb74f729bd25da0975daab2e107fd90"}, + {file = "coverage-7.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:420f94a35e3e00a2b43ad5740f935358e24478354ce41c99407cddd283be00d2"}, + {file = "coverage-7.2.2-cp310-cp310-win32.whl", hash = "sha256:38004671848b5745bb05d4d621526fca30cee164db42a1f185615f39dc997292"}, + {file = "coverage-7.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:0ce383d5f56d0729d2dd40e53fe3afeb8f2237244b0975e1427bfb2cf0d32bab"}, + {file = "coverage-7.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3eb55b7b26389dd4f8ae911ba9bc8c027411163839dea4c8b8be54c4ee9ae10b"}, + {file = "coverage-7.2.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d2b96123a453a2d7f3995ddb9f28d01fd112319a7a4d5ca99796a7ff43f02af5"}, + {file = "coverage-7.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:299bc75cb2a41e6741b5e470b8c9fb78d931edbd0cd009c58e5c84de57c06731"}, + {file = "coverage-7.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5e1df45c23d4230e3d56d04414f9057eba501f78db60d4eeecfcb940501b08fd"}, + {file = "coverage-7.2.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:006ed5582e9cbc8115d2e22d6d2144a0725db542f654d9d4fda86793832f873d"}, + {file = "coverage-7.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d683d230b5774816e7d784d7ed8444f2a40e7a450e5720d58af593cb0b94a212"}, + {file = "coverage-7.2.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8efb48fa743d1c1a65ee8787b5b552681610f06c40a40b7ef94a5b517d885c54"}, + {file = "coverage-7.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4c752d5264053a7cf2fe81c9e14f8a4fb261370a7bb344c2a011836a96fb3f57"}, + {file = "coverage-7.2.2-cp311-cp311-win32.whl", hash = "sha256:55272f33da9a5d7cccd3774aeca7a01e500a614eaea2a77091e9be000ecd401d"}, + {file = "coverage-7.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:92ebc1619650409da324d001b3a36f14f63644c7f0a588e331f3b0f67491f512"}, + {file = "coverage-7.2.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5afdad4cc4cc199fdf3e18088812edcf8f4c5a3c8e6cb69127513ad4cb7471a9"}, + {file = "coverage-7.2.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0484d9dd1e6f481b24070c87561c8d7151bdd8b044c93ac99faafd01f695c78e"}, + {file = "coverage-7.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d530191aa9c66ab4f190be8ac8cc7cfd8f4f3217da379606f3dd4e3d83feba69"}, + {file = "coverage-7.2.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ac0f522c3b6109c4b764ffec71bf04ebc0523e926ca7cbe6c5ac88f84faced0"}, + {file = "coverage-7.2.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ba279aae162b20444881fc3ed4e4f934c1cf8620f3dab3b531480cf602c76b7f"}, + {file = "coverage-7.2.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:53d0fd4c17175aded9c633e319360d41a1f3c6e352ba94edcb0fa5167e2bad67"}, + {file = "coverage-7.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c99cb7c26a3039a8a4ee3ca1efdde471e61b4837108847fb7d5be7789ed8fd9"}, + {file = "coverage-7.2.2-cp37-cp37m-win32.whl", hash = "sha256:5cc0783844c84af2522e3a99b9b761a979a3ef10fb87fc4048d1ee174e18a7d8"}, + {file = "coverage-7.2.2-cp37-cp37m-win_amd64.whl", hash = "sha256:817295f06eacdc8623dc4df7d8b49cea65925030d4e1e2a7c7218380c0072c25"}, + {file = "coverage-7.2.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6146910231ece63facfc5984234ad1b06a36cecc9fd0c028e59ac7c9b18c38c6"}, + {file = "coverage-7.2.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:387fb46cb8e53ba7304d80aadca5dca84a2fbf6fe3faf6951d8cf2d46485d1e5"}, + {file = "coverage-7.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:046936ab032a2810dcaafd39cc4ef6dd295df1a7cbead08fe996d4765fca9fe4"}, + {file = "coverage-7.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e627dee428a176ffb13697a2c4318d3f60b2ccdde3acdc9b3f304206ec130ccd"}, + {file = "coverage-7.2.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4fa54fb483decc45f94011898727802309a109d89446a3c76387d016057d2c84"}, + {file = "coverage-7.2.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:3668291b50b69a0c1ef9f462c7df2c235da3c4073f49543b01e7eb1dee7dd540"}, + {file = "coverage-7.2.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:7c20b731211261dc9739bbe080c579a1835b0c2d9b274e5fcd903c3a7821cf88"}, + {file = "coverage-7.2.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5764e1f7471cb8f64b8cda0554f3d4c4085ae4b417bfeab236799863703e5de2"}, + {file = "coverage-7.2.2-cp38-cp38-win32.whl", hash = "sha256:4f01911c010122f49a3e9bdc730eccc66f9b72bd410a3a9d3cb8448bb50d65d3"}, + {file = "coverage-7.2.2-cp38-cp38-win_amd64.whl", hash = "sha256:c448b5c9e3df5448a362208b8d4b9ed85305528313fca1b479f14f9fe0d873b8"}, + {file = "coverage-7.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bfe7085783cda55e53510482fa7b5efc761fad1abe4d653b32710eb548ebdd2d"}, + {file = "coverage-7.2.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9d22e94e6dc86de981b1b684b342bec5e331401599ce652900ec59db52940005"}, + {file = "coverage-7.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:507e4720791977934bba016101579b8c500fb21c5fa3cd4cf256477331ddd988"}, + {file = "coverage-7.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bc4803779f0e4b06a2361f666e76f5c2e3715e8e379889d02251ec911befd149"}, + {file = "coverage-7.2.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db8c2c5ace167fd25ab5dd732714c51d4633f58bac21fb0ff63b0349f62755a8"}, + {file = "coverage-7.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4f68ee32d7c4164f1e2c8797535a6d0a3733355f5861e0f667e37df2d4b07140"}, + {file = "coverage-7.2.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:d52f0a114b6a58305b11a5cdecd42b2e7f1ec77eb20e2b33969d702feafdd016"}, + {file = "coverage-7.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:797aad79e7b6182cb49c08cc5d2f7aa7b2128133b0926060d0a8889ac43843be"}, + {file = "coverage-7.2.2-cp39-cp39-win32.whl", hash = "sha256:db45eec1dfccdadb179b0f9ca616872c6f700d23945ecc8f21bb105d74b1c5fc"}, + {file = "coverage-7.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:8dbe2647bf58d2c5a6c5bcc685f23b5f371909a5624e9f5cd51436d6a9f6c6ef"}, + {file = "coverage-7.2.2-pp37.pp38.pp39-none-any.whl", hash = "sha256:872d6ce1f5be73f05bea4df498c140b9e7ee5418bfa2cc8204e7f9b817caa968"}, + {file = "coverage-7.2.2.tar.gz", hash = "sha256:36dd42da34fe94ed98c39887b86db9d06777b1c8f860520e21126a75507024f2"}, ] cssutils = [ - {file = "cssutils-2.4.2-py3-none-any.whl", hash = "sha256:17e5ba0de70a672cd1cd2de47fd756bd6bce12585acd91447bde7be1d7a6c5c2"}, - {file = "cssutils-2.4.2.tar.gz", hash = "sha256:877818bfa9668cc535773f46e6b6a46de28436191211741b3f7b4aaa64d9afbb"}, + {file = "cssutils-2.6.0-py3-none-any.whl", hash = "sha256:30c72f3a5c5951a11151640600aae7b3bf10e4c0d5c87f5bc505c2cd4a26e0c2"}, + {file = "cssutils-2.6.0.tar.gz", hash = "sha256:f7dcd23c1cec909fdf3630de346e1413b7b2555936dec14ba2ebb9913bf0818e"}, ] debugpy = [ - {file = "debugpy-1.6.3-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:c4b2bd5c245eeb49824bf7e539f95fb17f9a756186e51c3e513e32999d8846f3"}, - {file = "debugpy-1.6.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b8deaeb779699350deeed835322730a3efec170b88927debc9ba07a1a38e2585"}, - {file = "debugpy-1.6.3-cp310-cp310-win32.whl", hash = "sha256:fc233a0160f3b117b20216f1169e7211b83235e3cd6749bcdd8dbb72177030c7"}, - {file = "debugpy-1.6.3-cp310-cp310-win_amd64.whl", hash = "sha256:dda8652520eae3945833e061cbe2993ad94a0b545aebd62e4e6b80ee616c76b2"}, - {file = "debugpy-1.6.3-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:d5c814596a170a0a58fa6fad74947e30bfd7e192a5d2d7bd6a12156c2899e13a"}, - {file = "debugpy-1.6.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c4cd6f37e3c168080d61d698390dfe2cd9e74ebf80b448069822a15dadcda57d"}, - {file = "debugpy-1.6.3-cp37-cp37m-win32.whl", hash = "sha256:3c9f985944a30cfc9ae4306ac6a27b9c31dba72ca943214dad4a0ab3840f6161"}, - {file = "debugpy-1.6.3-cp37-cp37m-win_amd64.whl", hash = "sha256:5ad571a36cec137ae6ed951d0ff75b5e092e9af6683da084753231150cbc5b25"}, - {file = "debugpy-1.6.3-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:adcfea5ea06d55d505375995e150c06445e2b20cd12885bcae566148c076636b"}, - {file = "debugpy-1.6.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:daadab4403427abd090eccb38d8901afd8b393e01fd243048fab3f1d7132abb4"}, - {file = "debugpy-1.6.3-cp38-cp38-win32.whl", hash = "sha256:6efc30325b68e451118b795eff6fe8488253ca3958251d5158106d9c87581bc6"}, - {file = "debugpy-1.6.3-cp38-cp38-win_amd64.whl", hash = "sha256:86d784b72c5411c833af1cd45b83d80c252b77c3bfdb43db17c441d772f4c734"}, - {file = "debugpy-1.6.3-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:4e255982552b0edfe3a6264438dbd62d404baa6556a81a88f9420d3ed79b06ae"}, - {file = "debugpy-1.6.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cca23cb6161ac89698d629d892520327dd1be9321c0960e610bbcb807232b45d"}, - {file = "debugpy-1.6.3-cp39-cp39-win32.whl", hash = "sha256:7c302095a81be0d5c19f6529b600bac971440db3e226dce85347cc27e6a61908"}, - {file = "debugpy-1.6.3-cp39-cp39-win_amd64.whl", hash = "sha256:34d2cdd3a7c87302ba5322b86e79c32c2115be396f3f09ca13306d8a04fe0f16"}, - {file = "debugpy-1.6.3-py2.py3-none-any.whl", hash = "sha256:84c39940a0cac410bf6aa4db00ba174f973eef521fbe9dd058e26bcabad89c4f"}, - {file = "debugpy-1.6.3.zip", hash = "sha256:e8922090514a890eec99cfb991bab872dd2e353ebb793164d5f01c362b9a40bf"}, + {file = "debugpy-1.6.6-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:0ea1011e94416e90fb3598cc3ef5e08b0a4dd6ce6b9b33ccd436c1dffc8cd664"}, + {file = "debugpy-1.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dff595686178b0e75580c24d316aa45a8f4d56e2418063865c114eef651a982e"}, + {file = "debugpy-1.6.6-cp310-cp310-win32.whl", hash = "sha256:87755e173fcf2ec45f584bb9d61aa7686bb665d861b81faa366d59808bbd3494"}, + {file = "debugpy-1.6.6-cp310-cp310-win_amd64.whl", hash = "sha256:72687b62a54d9d9e3fb85e7a37ea67f0e803aaa31be700e61d2f3742a5683917"}, + {file = "debugpy-1.6.6-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:78739f77c58048ec006e2b3eb2e0cd5a06d5f48c915e2fc7911a337354508110"}, + {file = "debugpy-1.6.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23c29e40e39ad7d869d408ded414f6d46d82f8a93b5857ac3ac1e915893139ca"}, + {file = "debugpy-1.6.6-cp37-cp37m-win32.whl", hash = "sha256:7aa7e103610e5867d19a7d069e02e72eb2b3045b124d051cfd1538f1d8832d1b"}, + {file = "debugpy-1.6.6-cp37-cp37m-win_amd64.whl", hash = "sha256:f6383c29e796203a0bba74a250615ad262c4279d398e89d895a69d3069498305"}, + {file = "debugpy-1.6.6-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:23363e6d2a04d726bbc1400bd4e9898d54419b36b2cdf7020e3e215e1dcd0f8e"}, + {file = "debugpy-1.6.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b5d1b13d7c7bf5d7cf700e33c0b8ddb7baf030fcf502f76fc061ddd9405d16c"}, + {file = "debugpy-1.6.6-cp38-cp38-win32.whl", hash = "sha256:70ab53918fd907a3ade01909b3ed783287ede362c80c75f41e79596d5ccacd32"}, + {file = "debugpy-1.6.6-cp38-cp38-win_amd64.whl", hash = "sha256:c05349890804d846eca32ce0623ab66c06f8800db881af7a876dc073ac1c2225"}, + {file = "debugpy-1.6.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a771739902b1ae22a120dbbb6bd91b2cae6696c0e318b5007c5348519a4211c6"}, + {file = "debugpy-1.6.6-cp39-cp39-win32.whl", hash = "sha256:549ae0cb2d34fc09d1675f9b01942499751d174381b6082279cf19cdb3c47cbe"}, + {file = "debugpy-1.6.6-cp39-cp39-win_amd64.whl", hash = "sha256:de4a045fbf388e120bb6ec66501458d3134f4729faed26ff95de52a754abddb1"}, + {file = "debugpy-1.6.6-py2.py3-none-any.whl", hash = "sha256:be596b44448aac14eb3614248c91586e2bc1728e020e82ef3197189aae556115"}, + {file = "debugpy-1.6.6.zip", hash = "sha256:b9c2130e1c632540fbf9c2c88341493797ddf58016e7cba02e311de9b0a96b67"}, ] decorator = [ {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"}, @@ -1766,32 +1870,36 @@ dict2css = [ {file = "dict2css-0.3.0.tar.gz", hash = "sha256:1e8b1bf580dca2083198f88a60ec88c878a8829d760dfe45483ef80fe2905117"}, ] dill = [ - {file = "dill-0.3.5.1-py2.py3-none-any.whl", hash = "sha256:33501d03270bbe410c72639b350e941882a8b0fd55357580fbc873fba0c59302"}, - {file = "dill-0.3.5.1.tar.gz", hash = "sha256:d75e41f3eff1eee599d738e76ba8f4ad98ea229db8b085318aa2b3333a208c86"}, + {file = "dill-0.3.6-py3-none-any.whl", hash = "sha256:a07ffd2351b8c678dfc4a856a3005f8067aea51d6ba6c700796a4d9e280f39f0"}, + {file = "dill-0.3.6.tar.gz", hash = "sha256:e5db55f3687856d8fbdab002ed78544e1c4559a130302693d839dfe8f93f2373"}, ] distlib = [ - {file = "distlib-0.3.4-py2.py3-none-any.whl", hash = "sha256:6564fe0a8f51e734df6333d08b8b94d4ea8ee6b99b5ed50613f731fd4089f34b"}, - {file = "distlib-0.3.4.zip", hash = "sha256:e4b58818180336dc9c529bfb9a0b58728ffc09ad92027a3f30b7cd91e3458579"}, + {file = "distlib-0.3.6-py2.py3-none-any.whl", hash = "sha256:f35c4b692542ca110de7ef0bea44d73981caeb34ca0b9b6b2e6d7790dda8f80e"}, + {file = "distlib-0.3.6.tar.gz", hash = "sha256:14bad2d9b04d3a36127ac97f30b12a19268f211063d8f8ee4f47108896e11b46"}, ] docutils = [ {file = "docutils-0.17.1-py2.py3-none-any.whl", hash = "sha256:cf316c8370a737a022b72b56874f6602acf974a37a9fba42ec2876387549fc61"}, {file = "docutils-0.17.1.tar.gz", hash = "sha256:686577d2e4c32380bb50cbb22f575ed742d58168cee37e99117a854bcd88f125"}, ] domdf-python-tools = [ - {file = "domdf_python_tools-3.3.0-py3-none-any.whl", hash = "sha256:692a33cfc4bc4270a30f18b95beb8f65bf56935d122a4bdb0af7f7760452d41c"}, - {file = "domdf_python_tools-3.3.0.tar.gz", hash = "sha256:7c588cdfa3e8bfd9617efbb4fa42652b7010c0f158c81844c862fbda5d86d9cc"}, + {file = "domdf_python_tools-3.6.0-py3-none-any.whl", hash = "sha256:7a0a3b2c716854465b09b5c0c5f53d41f37562c5a0cd8746cd042ad7955430f1"}, + {file = "domdf_python_tools-3.6.0.tar.gz", hash = "sha256:0ac5efa2ac648dca5653e386fe73aa995e66b215c9d16b7ee87e931322a1e6c8"}, ] -entrypoints = [ - {file = "entrypoints-0.4-py3-none-any.whl", hash = "sha256:f174b5ff827504fd3cd97cc3f8649f3693f51538c7e4bdf3ef002c8429d42f9f"}, - {file = "entrypoints-0.4.tar.gz", hash = "sha256:b706eddaa9218a19ebcd67b56818f05bb27589b1ca9e8d797b74affad4ccacd4"}, +enum-tools = [ + {file = "enum_tools-0.9.0.post1-py3-none-any.whl", hash = "sha256:d8fd962054e7e400fa7f0a196f7607f19ef78aca4b288543ecb330f890edb60d"}, + {file = "enum_tools-0.9.0.post1.tar.gz", hash = "sha256:e59eb1c16667400b185f8a61ac427029919be2ec48b9ca04aa1b388a42fb14d5"}, +] +exceptiongroup = [ + {file = "exceptiongroup-1.1.1-py3-none-any.whl", hash = "sha256:232c37c63e4f682982c8b6459f33a8981039e5fb8756b2074364e5055c498c9e"}, + {file = "exceptiongroup-1.1.1.tar.gz", hash = "sha256:d484c3090ba2889ae2928419117447a14daf3c1231d5e30d0aae34f354f01785"}, ] executing = [ {file = "executing-1.2.0-py2.py3-none-any.whl", hash = "sha256:0314a69e37426e3608aada02473b4161d4caf5a4b244d1d0c48072b8fee7bacc"}, {file = "executing-1.2.0.tar.gz", hash = "sha256:19da64c18d2d851112f09c287f8d3dbbdf725ab0e569077efb6cdcbd3497c107"}, ] filelock = [ - {file = "filelock-3.7.0-py3-none-any.whl", hash = "sha256:c7b5fdb219b398a5b28c8e4c1893ef5f98ece6a38c6ab2c22e26ec161556fed6"}, - {file = "filelock-3.7.0.tar.gz", hash = "sha256:b795f1b42a61bbf8ec7113c341dad679d772567b936fbd1bf43c9a238e673e20"}, + {file = "filelock-3.10.7-py3-none-any.whl", hash = "sha256:bde48477b15fde2c7e5a0713cbe72721cb5a5ad32ee0b8f419907960b9d75536"}, + {file = "filelock-3.10.7.tar.gz", hash = "sha256:892be14aa8efc01673b5ed6589dbccb95f9a8596f0507e232626155495c18105"}, ] flake8 = [ {file = "flake8-3.9.2-py2.py3-none-any.whl", hash = "sha256:bf8fd333346d844f616e8d47905ef3a3384edae6b4e9beb0c5101e25e3110907"}, @@ -1802,95 +1910,94 @@ html5lib = [ {file = "html5lib-1.1.tar.gz", hash = "sha256:b2e5b40261e20f354d198eae92afc10d750afb487ed5e50f9c4eaf07c184146f"}, ] identify = [ - {file = "identify-2.5.1-py2.py3-none-any.whl", hash = "sha256:0dca2ea3e4381c435ef9c33ba100a78a9b40c0bab11189c7cf121f75815efeaa"}, - {file = "identify-2.5.1.tar.gz", hash = "sha256:3d11b16f3fe19f52039fb7e39c9c884b21cb1b586988114fbe42671f03de3e82"}, + {file = "identify-2.5.22-py2.py3-none-any.whl", hash = "sha256:f0faad595a4687053669c112004178149f6c326db71ee999ae4636685753ad2f"}, + {file = "identify-2.5.22.tar.gz", hash = "sha256:f7a93d6cf98e29bd07663c60728e7a4057615068d7a639d132dc883b2d54d31e"}, ] idna = [ - {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"}, - {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"}, + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, ] imagesize = [ - {file = "imagesize-1.3.0-py2.py3-none-any.whl", hash = "sha256:1db2f82529e53c3e929e8926a1fa9235aa82d0bd0c580359c67ec31b2fddaa8c"}, - {file = "imagesize-1.3.0.tar.gz", hash = "sha256:cd1750d452385ca327479d45b64d9c7729ecf0b3969a58148298c77092261f9d"}, + {file = "imagesize-1.4.1-py2.py3-none-any.whl", hash = "sha256:0d8d18d08f840c19d0ee7ca1fd82490fdc3729b7ac93f49870406ddde8ef8d8b"}, + {file = "imagesize-1.4.1.tar.gz", hash = "sha256:69150444affb9cb0d5cc5a92b3676f0b2fb7cd9ae39e947a5e11a36b4497cd4a"}, ] importlib-metadata = [ - {file = "importlib_metadata-4.11.4-py3-none-any.whl", hash = "sha256:c58c8eb8a762858f49e18436ff552e83914778e50e9d2f1660535ffb364552ec"}, - {file = "importlib_metadata-4.11.4.tar.gz", hash = "sha256:5d26852efe48c0a32b0509ffbc583fda1a2266545a78d104a6f4aff3db17d700"}, + {file = "importlib_metadata-6.1.0-py3-none-any.whl", hash = "sha256:ff80f3b5394912eb1b108fcfd444dc78b7f1f3e16b16188054bd01cb9cb86f09"}, + {file = "importlib_metadata-6.1.0.tar.gz", hash = "sha256:43ce9281e097583d758c2c708c4376371261a02c34682491a8e98352365aad20"}, ] iniconfig = [ - {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"}, - {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"}, + {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, + {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, ] interrogate = [ {file = "interrogate-1.5.0-py3-none-any.whl", hash = "sha256:a4ccc5cbd727c74acc98dee6f5e79ef264c0bcfa66b68d4e123069b2af89091a"}, {file = "interrogate-1.5.0.tar.gz", hash = "sha256:b6f325f0aa84ac3ac6779d8708264d366102226c5af7d69058cecffcff7a6d6c"}, ] ipykernel = [ - {file = "ipykernel-6.17.1-py3-none-any.whl", hash = "sha256:3a9a1b2ad6dbbd5879855aabb4557f08e63fa2208bffed897f03070e2bb436f6"}, - {file = "ipykernel-6.17.1.tar.gz", hash = "sha256:e178c1788399f93a459c241fe07c3b810771c607b1fb064a99d2c5d40c90c5d4"}, + {file = "ipykernel-6.22.0-py3-none-any.whl", hash = "sha256:1ae6047c1277508933078163721bbb479c3e7292778a04b4bacf0874550977d6"}, + {file = "ipykernel-6.22.0.tar.gz", hash = "sha256:302558b81f1bc22dc259fb2a0c5c7cf2f4c0bdb21b50484348f7bafe7fb71421"}, ] ipython = [ - {file = "ipython-8.6.0-py3-none-any.whl", hash = "sha256:91ef03016bcf72dd17190f863476e7c799c6126ec7e8be97719d1bc9a78a59a4"}, - {file = "ipython-8.6.0.tar.gz", hash = "sha256:7c959e3dedbf7ed81f9b9d8833df252c430610e2a4a6464ec13cd20975ce20a5"}, + {file = "ipython-8.11.0-py3-none-any.whl", hash = "sha256:5b54478e459155a326bf5f42ee4f29df76258c0279c36f21d71ddb560f88b156"}, + {file = "ipython-8.11.0.tar.gz", hash = "sha256:735cede4099dbc903ee540307b9171fbfef4aa75cfcacc5a273b2cda2f02be04"}, ] isort = [ - {file = "isort-5.10.1-py3-none-any.whl", hash = "sha256:6f62d78e2f89b4500b080fe3a81690850cd254227f27f75c3a0c491a1f351ba7"}, - {file = "isort-5.10.1.tar.gz", hash = "sha256:e8443a5e7a020e9d7f97f1d7d9cd17c88bcb3bc7e218bf9cf5095fe550be2951"}, + {file = "isort-5.12.0-py3-none-any.whl", hash = "sha256:f84c2818376e66cf843d497486ea8fed8700b340f308f076c6fb1229dff318b6"}, + {file = "isort-5.12.0.tar.gz", hash = "sha256:8bef7dde241278824a6d83f44a544709b065191b95b6e50894bdc722fcba0504"}, ] jedi = [ - {file = "jedi-0.18.1-py2.py3-none-any.whl", hash = "sha256:637c9635fcf47945ceb91cd7f320234a7be540ded6f3e99a50cb6febdfd1ba8d"}, - {file = "jedi-0.18.1.tar.gz", hash = "sha256:74137626a64a99c8eb6ae5832d99b3bdd7d29a3850fe2aa80a4126b2a7d949ab"}, + {file = "jedi-0.18.2-py2.py3-none-any.whl", hash = "sha256:203c1fd9d969ab8f2119ec0a3342e0b49910045abe6af0a3ae83a5764d54639e"}, + {file = "jedi-0.18.2.tar.gz", hash = "sha256:bae794c30d07f6d910d32a7048af09b5a39ed740918da923c6b780790ebac612"}, ] jinja2 = [ - {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, - {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, + {file = "Jinja2-3.0.3-py3-none-any.whl", hash = "sha256:077ce6014f7b40d03b47d1f1ca4b0fc8328a692bd284016f806ed0eaca390ad8"}, + {file = "Jinja2-3.0.3.tar.gz", hash = "sha256:611bb273cd68f3b993fabdc4064fc858c5b47a973cb5aa7999ec1ba405c87cd7"}, ] jupyter-client = [ - {file = "jupyter_client-7.3.4-py3-none-any.whl", hash = "sha256:17d74b0d0a7b24f1c8c527b24fcf4607c56bee542ffe8e3418e50b21e514b621"}, - {file = "jupyter_client-7.3.4.tar.gz", hash = "sha256:aa9a6c32054b290374f95f73bb0cae91455c58dfb84f65c8591912b8f65e6d56"}, + {file = "jupyter_client-8.1.0-py3-none-any.whl", hash = "sha256:d5b8e739d7816944be50f81121a109788a3d92732ecf1ad1e4dadebc948818fe"}, + {file = "jupyter_client-8.1.0.tar.gz", hash = "sha256:3fbab64100a0dcac7701b1e0f1a4412f1ccb45546ff2ad9bc4fcbe4e19804811"}, ] jupyter-core = [ - {file = "jupyter_core-5.0.0-py3-none-any.whl", hash = "sha256:6da1fae48190da8551e1b5dbbb19d51d00b079d59a073c7030407ecaf96dbb1e"}, - {file = "jupyter_core-5.0.0.tar.gz", hash = "sha256:4ed68b7c606197c7e344a24b7195eef57898157075a69655a886074b6beb7043"}, + {file = "jupyter_core-5.3.0-py3-none-any.whl", hash = "sha256:d4201af84559bc8c70cead287e1ab94aeef3c512848dde077b7684b54d67730d"}, + {file = "jupyter_core-5.3.0.tar.gz", hash = "sha256:6db75be0c83edbf1b7c9f91ec266a9a24ef945da630f3120e1a0046dc13713fc"}, ] lazy-object-proxy = [ - {file = "lazy-object-proxy-1.7.1.tar.gz", hash = "sha256:d609c75b986def706743cdebe5e47553f4a5a1da9c5ff66d76013ef396b5a8a4"}, - {file = "lazy_object_proxy-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bb8c5fd1684d60a9902c60ebe276da1f2281a318ca16c1d0a96db28f62e9166b"}, - {file = "lazy_object_proxy-1.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a57d51ed2997e97f3b8e3500c984db50a554bb5db56c50b5dab1b41339b37e36"}, - {file = "lazy_object_proxy-1.7.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd45683c3caddf83abbb1249b653a266e7069a09f486daa8863fb0e7496a9fdb"}, - {file = "lazy_object_proxy-1.7.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:8561da8b3dd22d696244d6d0d5330618c993a215070f473b699e00cf1f3f6443"}, - {file = "lazy_object_proxy-1.7.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fccdf7c2c5821a8cbd0a9440a456f5050492f2270bd54e94360cac663398739b"}, - {file = "lazy_object_proxy-1.7.1-cp310-cp310-win32.whl", hash = "sha256:898322f8d078f2654d275124a8dd19b079080ae977033b713f677afcfc88e2b9"}, - {file = "lazy_object_proxy-1.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:85b232e791f2229a4f55840ed54706110c80c0a210d076eee093f2b2e33e1bfd"}, - {file = "lazy_object_proxy-1.7.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:46ff647e76f106bb444b4533bb4153c7370cdf52efc62ccfc1a28bdb3cc95442"}, - {file = "lazy_object_proxy-1.7.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12f3bb77efe1367b2515f8cb4790a11cffae889148ad33adad07b9b55e0ab22c"}, - {file = "lazy_object_proxy-1.7.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c19814163728941bb871240d45c4c30d33b8a2e85972c44d4e63dd7107faba44"}, - {file = "lazy_object_proxy-1.7.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:e40f2013d96d30217a51eeb1db28c9ac41e9d0ee915ef9d00da639c5b63f01a1"}, - {file = "lazy_object_proxy-1.7.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:2052837718516a94940867e16b1bb10edb069ab475c3ad84fd1e1a6dd2c0fcfc"}, - {file = "lazy_object_proxy-1.7.1-cp36-cp36m-win32.whl", hash = "sha256:6a24357267aa976abab660b1d47a34aaf07259a0c3859a34e536f1ee6e76b5bb"}, - {file = "lazy_object_proxy-1.7.1-cp36-cp36m-win_amd64.whl", hash = "sha256:6aff3fe5de0831867092e017cf67e2750c6a1c7d88d84d2481bd84a2e019ec35"}, - {file = "lazy_object_proxy-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6a6e94c7b02641d1311228a102607ecd576f70734dc3d5e22610111aeacba8a0"}, - {file = "lazy_object_proxy-1.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4ce15276a1a14549d7e81c243b887293904ad2d94ad767f42df91e75fd7b5b6"}, - {file = "lazy_object_proxy-1.7.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e368b7f7eac182a59ff1f81d5f3802161932a41dc1b1cc45c1f757dc876b5d2c"}, - {file = "lazy_object_proxy-1.7.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:6ecbb350991d6434e1388bee761ece3260e5228952b1f0c46ffc800eb313ff42"}, - {file = "lazy_object_proxy-1.7.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:553b0f0d8dbf21890dd66edd771f9b1b5f51bd912fa5f26de4449bfc5af5e029"}, - {file = "lazy_object_proxy-1.7.1-cp37-cp37m-win32.whl", hash = "sha256:c7a683c37a8a24f6428c28c561c80d5f4fd316ddcf0c7cab999b15ab3f5c5c69"}, - {file = "lazy_object_proxy-1.7.1-cp37-cp37m-win_amd64.whl", hash = "sha256:df2631f9d67259dc9620d831384ed7732a198eb434eadf69aea95ad18c587a28"}, - {file = "lazy_object_proxy-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:07fa44286cda977bd4803b656ffc1c9b7e3bc7dff7d34263446aec8f8c96f88a"}, - {file = "lazy_object_proxy-1.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4dca6244e4121c74cc20542c2ca39e5c4a5027c81d112bfb893cf0790f96f57e"}, - {file = "lazy_object_proxy-1.7.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:91ba172fc5b03978764d1df5144b4ba4ab13290d7bab7a50f12d8117f8630c38"}, - {file = "lazy_object_proxy-1.7.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:043651b6cb706eee4f91854da4a089816a6606c1428fd391573ef8cb642ae4f7"}, - {file = "lazy_object_proxy-1.7.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b9e89b87c707dd769c4ea91f7a31538888aad05c116a59820f28d59b3ebfe25a"}, - {file = "lazy_object_proxy-1.7.1-cp38-cp38-win32.whl", hash = "sha256:9d166602b525bf54ac994cf833c385bfcc341b364e3ee71e3bf5a1336e677b55"}, - {file = "lazy_object_proxy-1.7.1-cp38-cp38-win_amd64.whl", hash = "sha256:8f3953eb575b45480db6568306893f0bd9d8dfeeebd46812aa09ca9579595148"}, - {file = "lazy_object_proxy-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dd7ed7429dbb6c494aa9bc4e09d94b778a3579be699f9d67da7e6804c422d3de"}, - {file = "lazy_object_proxy-1.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70ed0c2b380eb6248abdef3cd425fc52f0abd92d2b07ce26359fcbc399f636ad"}, - {file = "lazy_object_proxy-1.7.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7096a5e0c1115ec82641afbdd70451a144558ea5cf564a896294e346eb611be1"}, - {file = "lazy_object_proxy-1.7.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f769457a639403073968d118bc70110e7dce294688009f5c24ab78800ae56dc8"}, - {file = "lazy_object_proxy-1.7.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:39b0e26725c5023757fc1ab2a89ef9d7ab23b84f9251e28f9cc114d5b59c1b09"}, - {file = "lazy_object_proxy-1.7.1-cp39-cp39-win32.whl", hash = "sha256:2130db8ed69a48a3440103d4a520b89d8a9405f1b06e2cc81640509e8bf6548f"}, - {file = "lazy_object_proxy-1.7.1-cp39-cp39-win_amd64.whl", hash = "sha256:677ea950bef409b47e51e733283544ac3d660b709cfce7b187f5ace137960d61"}, - {file = "lazy_object_proxy-1.7.1-pp37.pp38-none-any.whl", hash = "sha256:d66906d5785da8e0be7360912e99c9188b70f52c422f9fc18223347235691a84"}, + {file = "lazy-object-proxy-1.9.0.tar.gz", hash = "sha256:659fb5809fa4629b8a1ac5106f669cfc7bef26fbb389dda53b3e010d1ac4ebae"}, + {file = "lazy_object_proxy-1.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b40387277b0ed2d0602b8293b94d7257e17d1479e257b4de114ea11a8cb7f2d7"}, + {file = "lazy_object_proxy-1.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8c6cfb338b133fbdbc5cfaa10fe3c6aeea827db80c978dbd13bc9dd8526b7d4"}, + {file = "lazy_object_proxy-1.9.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:721532711daa7db0d8b779b0bb0318fa87af1c10d7fe5e52ef30f8eff254d0cd"}, + {file = "lazy_object_proxy-1.9.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:66a3de4a3ec06cd8af3f61b8e1ec67614fbb7c995d02fa224813cb7afefee701"}, + {file = "lazy_object_proxy-1.9.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1aa3de4088c89a1b69f8ec0dcc169aa725b0ff017899ac568fe44ddc1396df46"}, + {file = "lazy_object_proxy-1.9.0-cp310-cp310-win32.whl", hash = "sha256:f0705c376533ed2a9e5e97aacdbfe04cecd71e0aa84c7c0595d02ef93b6e4455"}, + {file = "lazy_object_proxy-1.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:ea806fd4c37bf7e7ad82537b0757999264d5f70c45468447bb2b91afdbe73a6e"}, + {file = "lazy_object_proxy-1.9.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:946d27deaff6cf8452ed0dba83ba38839a87f4f7a9732e8f9fd4107b21e6ff07"}, + {file = "lazy_object_proxy-1.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79a31b086e7e68b24b99b23d57723ef7e2c6d81ed21007b6281ebcd1688acb0a"}, + {file = "lazy_object_proxy-1.9.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f699ac1c768270c9e384e4cbd268d6e67aebcfae6cd623b4d7c3bfde5a35db59"}, + {file = "lazy_object_proxy-1.9.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bfb38f9ffb53b942f2b5954e0f610f1e721ccebe9cce9025a38c8ccf4a5183a4"}, + {file = "lazy_object_proxy-1.9.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:189bbd5d41ae7a498397287c408617fe5c48633e7755287b21d741f7db2706a9"}, + {file = "lazy_object_proxy-1.9.0-cp311-cp311-win32.whl", hash = "sha256:81fc4d08b062b535d95c9ea70dbe8a335c45c04029878e62d744bdced5141586"}, + {file = "lazy_object_proxy-1.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:f2457189d8257dd41ae9b434ba33298aec198e30adf2dcdaaa3a28b9994f6adb"}, + {file = "lazy_object_proxy-1.9.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:d9e25ef10a39e8afe59a5c348a4dbf29b4868ab76269f81ce1674494e2565a6e"}, + {file = "lazy_object_proxy-1.9.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cbf9b082426036e19c6924a9ce90c740a9861e2bdc27a4834fd0a910742ac1e8"}, + {file = "lazy_object_proxy-1.9.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f5fa4a61ce2438267163891961cfd5e32ec97a2c444e5b842d574251ade27d2"}, + {file = "lazy_object_proxy-1.9.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:8fa02eaab317b1e9e03f69aab1f91e120e7899b392c4fc19807a8278a07a97e8"}, + {file = "lazy_object_proxy-1.9.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e7c21c95cae3c05c14aafffe2865bbd5e377cfc1348c4f7751d9dc9a48ca4bda"}, + {file = "lazy_object_proxy-1.9.0-cp37-cp37m-win32.whl", hash = "sha256:f12ad7126ae0c98d601a7ee504c1122bcef553d1d5e0c3bfa77b16b3968d2734"}, + {file = "lazy_object_proxy-1.9.0-cp37-cp37m-win_amd64.whl", hash = "sha256:edd20c5a55acb67c7ed471fa2b5fb66cb17f61430b7a6b9c3b4a1e40293b1671"}, + {file = "lazy_object_proxy-1.9.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2d0daa332786cf3bb49e10dc6a17a52f6a8f9601b4cf5c295a4f85854d61de63"}, + {file = "lazy_object_proxy-1.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cd077f3d04a58e83d04b20e334f678c2b0ff9879b9375ed107d5d07ff160171"}, + {file = "lazy_object_proxy-1.9.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:660c94ea760b3ce47d1855a30984c78327500493d396eac4dfd8bd82041b22be"}, + {file = "lazy_object_proxy-1.9.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:212774e4dfa851e74d393a2370871e174d7ff0ebc980907723bb67d25c8a7c30"}, + {file = "lazy_object_proxy-1.9.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f0117049dd1d5635bbff65444496c90e0baa48ea405125c088e93d9cf4525b11"}, + {file = "lazy_object_proxy-1.9.0-cp38-cp38-win32.whl", hash = "sha256:0a891e4e41b54fd5b8313b96399f8b0e173bbbfc03c7631f01efbe29bb0bcf82"}, + {file = "lazy_object_proxy-1.9.0-cp38-cp38-win_amd64.whl", hash = "sha256:9990d8e71b9f6488e91ad25f322898c136b008d87bf852ff65391b004da5e17b"}, + {file = "lazy_object_proxy-1.9.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9e7551208b2aded9c1447453ee366f1c4070602b3d932ace044715d89666899b"}, + {file = "lazy_object_proxy-1.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f83ac4d83ef0ab017683d715ed356e30dd48a93746309c8f3517e1287523ef4"}, + {file = "lazy_object_proxy-1.9.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7322c3d6f1766d4ef1e51a465f47955f1e8123caee67dd641e67d539a534d006"}, + {file = "lazy_object_proxy-1.9.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:18b78ec83edbbeb69efdc0e9c1cb41a3b1b1ed11ddd8ded602464c3fc6020494"}, + {file = "lazy_object_proxy-1.9.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:09763491ce220c0299688940f8dc2c5d05fd1f45af1e42e636b2e8b2303e4382"}, + {file = "lazy_object_proxy-1.9.0-cp39-cp39-win32.whl", hash = "sha256:9090d8e53235aa280fc9239a86ae3ea8ac58eff66a705fa6aa2ec4968b95c821"}, + {file = "lazy_object_proxy-1.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:db1c1722726f47e10e0b5fdbf15ac3b8adb58c091d12b3ab713965795036985f"}, ] livereload = [ {file = "livereload-2.6.3-py2.py3-none-any.whl", hash = "sha256:ad4ac6f53b2d62bb6ce1a5e6e96f1f00976a32348afedcb4b6d68df2a1d346e4"}, @@ -1901,46 +2008,56 @@ lockfile = [ {file = "lockfile-0.12.2.tar.gz", hash = "sha256:6aed02de03cba24efabcd600b30540140634fc06cfa603822d508d5361e9f799"}, ] markupsafe = [ - {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-win32.whl", hash = "sha256:4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-win32.whl", hash = "sha256:8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-win32.whl", hash = "sha256:421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-win32.whl", hash = "sha256:d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247"}, - {file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:665a36ae6f8f20a4676b53224e33d456a6f5a72657d9c83c2aa00765072f31f7"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:340bea174e9761308703ae988e982005aedf427de816d1afe98147668cc03036"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22152d00bf4a9c7c83960521fc558f55a1adbc0631fbb00a9471e097b19d72e1"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28057e985dace2f478e042eaa15606c7efccb700797660629da387eb289b9323"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca244fa73f50a800cf8c3ebf7fd93149ec37f5cb9596aa8873ae2c1d23498601"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d9d971ec1e79906046aa3ca266de79eac42f1dbf3612a05dc9368125952bd1a1"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7e007132af78ea9df29495dbf7b5824cb71648d7133cf7848a2a5dd00d36f9ff"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7313ce6a199651c4ed9d7e4cfb4aa56fe923b1adf9af3b420ee14e6d9a73df65"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-win32.whl", hash = "sha256:c4a549890a45f57f1ebf99c067a4ad0cb423a05544accaf2b065246827ed9603"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:835fb5e38fd89328e9c81067fd642b3593c33e1e17e2fdbf77f5676abb14a156"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2ec4f2d48ae59bbb9d1f9d7efb9236ab81429a764dedca114f5fdabbc3788013"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:608e7073dfa9e38a85d38474c082d4281f4ce276ac0010224eaba11e929dd53a"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65608c35bfb8a76763f37036547f7adfd09270fbdbf96608be2bead319728fcd"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2bfb563d0211ce16b63c7cb9395d2c682a23187f54c3d79bfec33e6705473c6"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:da25303d91526aac3672ee6d49a2f3db2d9502a4a60b55519feb1a4c7714e07d"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:9cad97ab29dfc3f0249b483412c85c8ef4766d96cdf9dcf5a1e3caa3f3661cf1"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:085fd3201e7b12809f9e6e9bc1e5c96a368c8523fad5afb02afe3c051ae4afcc"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1bea30e9bf331f3fef67e0a3877b2288593c98a21ccb2cf29b74c581a4eb3af0"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-win32.whl", hash = "sha256:7df70907e00c970c60b9ef2938d894a9381f38e6b9db73c5be35e59d92e06625"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:e55e40ff0cc8cc5c07996915ad367fa47da6b3fc091fdadca7f5403239c5fec3"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a6e40afa7f45939ca356f348c8e23048e02cb109ced1eb8420961b2f40fb373a"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf877ab4ed6e302ec1d04952ca358b381a882fbd9d1b07cccbfd61783561f98a"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63ba06c9941e46fa389d389644e2d8225e0e3e5ebcc4ff1ea8506dce646f8c8a"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1cd098434e83e656abf198f103a8207a8187c0fc110306691a2e94a78d0abb2"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:55f44b440d491028addb3b88f72207d71eeebfb7b5dbf0643f7c023ae1fba619"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:a6f2fcca746e8d5910e18782f976489939d54a91f9411c32051b4aab2bd7c513"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0b462104ba25f1ac006fdab8b6a01ebbfbce9ed37fd37fd4acd70c67c973e460"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-win32.whl", hash = "sha256:7668b52e102d0ed87cb082380a7e2e1e78737ddecdde129acadb0eccc5423859"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6d6607f98fcf17e534162f0709aaad3ab7a96032723d8ac8750ffe17ae5a0666"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a806db027852538d2ad7555b203300173dd1b77ba116de92da9afbc3a3be3eed"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a4abaec6ca3ad8660690236d11bfe28dfd707778e2442b45addd2f086d6ef094"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f03a532d7dee1bed20bc4884194a16160a2de9ffc6354b3878ec9682bb623c54"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cf06cdc1dda95223e9d2d3c58d3b178aa5dacb35ee7e3bbac10e4e1faacb419"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:22731d79ed2eb25059ae3df1dfc9cb1546691cc41f4e3130fe6bfbc3ecbbecfa"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f8ffb705ffcf5ddd0e80b65ddf7bed7ee4f5a441ea7d3419e861a12eaf41af58"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:8db032bf0ce9022a8e41a22598eefc802314e81b879ae093f36ce9ddf39ab1ba"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2298c859cfc5463f1b64bd55cb3e602528db6fa0f3cfd568d3605c50678f8f03"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-win32.whl", hash = "sha256:50c42830a633fa0cf9e7d27664637532791bfc31c731a87b202d2d8ac40c3ea2"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:bb06feb762bade6bf3c8b844462274db0c76acc95c52abe8dbed28ae3d44a147"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:99625a92da8229df6d44335e6fcc558a5037dd0a760e11d84be2260e6f37002f"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8bca7e26c1dd751236cfb0c6c72d4ad61d986e9a41bbf76cb445f69488b2a2bd"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40627dcf047dadb22cd25ea7ecfe9cbf3bbbad0482ee5920b582f3809c97654f"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40dfd3fefbef579ee058f139733ac336312663c6706d1163b82b3003fb1925c4"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:090376d812fb6ac5f171e5938e82e7f2d7adc2b629101cec0db8b267815c85e2"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2e7821bffe00aa6bd07a23913b7f4e01328c3d5cc0b40b36c0bd81d362faeb65"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:c0a33bc9f02c2b17c3ea382f91b4db0e6cde90b63b296422a939886a7a80de1c"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b8526c6d437855442cdd3d87eede9c425c4445ea011ca38d937db299382e6fa3"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-win32.whl", hash = "sha256:137678c63c977754abe9086a3ec011e8fd985ab90631145dfb9294ad09c102a7"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:0576fe974b40a400449768941d5d0858cc624e3249dfd1e0c33674e5c7ca7aed"}, + {file = "MarkupSafe-2.1.2.tar.gz", hash = "sha256:abcabc8c2b26036d62d4c746381a6f7cf60aafcc653198ad678306986b09450d"}, ] matplotlib-inline = [ {file = "matplotlib-inline-0.1.6.tar.gz", hash = "sha256:f887e5f10ba98e8d2b150ddcf4702c1e5f8b3a20005eb0f74bfdbd360ee6f304"}, @@ -1951,58 +2068,69 @@ mccabe = [ {file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"}, ] msgpack = [ - {file = "msgpack-1.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4ab251d229d10498e9a2f3b1e68ef64cb393394ec477e3370c457f9430ce9250"}, - {file = "msgpack-1.0.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:112b0f93202d7c0fef0b7810d465fde23c746a2d482e1e2de2aafd2ce1492c88"}, - {file = "msgpack-1.0.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:002b5c72b6cd9b4bafd790f364b8480e859b4712e91f43014fe01e4f957b8467"}, - {file = "msgpack-1.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35bc0faa494b0f1d851fd29129b2575b2e26d41d177caacd4206d81502d4c6a6"}, - {file = "msgpack-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4733359808c56d5d7756628736061c432ded018e7a1dff2d35a02439043321aa"}, - {file = "msgpack-1.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb514ad14edf07a1dbe63761fd30f89ae79b42625731e1ccf5e1f1092950eaa6"}, - {file = "msgpack-1.0.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:c23080fdeec4716aede32b4e0ef7e213c7b1093eede9ee010949f2a418ced6ba"}, - {file = "msgpack-1.0.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:49565b0e3d7896d9ea71d9095df15b7f75a035c49be733051c34762ca95bbf7e"}, - {file = "msgpack-1.0.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:aca0f1644d6b5a73eb3e74d4d64d5d8c6c3d577e753a04c9e9c87d07692c58db"}, - {file = "msgpack-1.0.4-cp310-cp310-win32.whl", hash = "sha256:0dfe3947db5fb9ce52aaea6ca28112a170db9eae75adf9339a1aec434dc954ef"}, - {file = "msgpack-1.0.4-cp310-cp310-win_amd64.whl", hash = "sha256:4dea20515f660aa6b7e964433b1808d098dcfcabbebeaaad240d11f909298075"}, - {file = "msgpack-1.0.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e83f80a7fec1a62cf4e6c9a660e39c7f878f603737a0cdac8c13131d11d97f52"}, - {file = "msgpack-1.0.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3c11a48cf5e59026ad7cb0dc29e29a01b5a66a3e333dc11c04f7e991fc5510a9"}, - {file = "msgpack-1.0.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1276e8f34e139aeff1c77a3cefb295598b504ac5314d32c8c3d54d24fadb94c9"}, - {file = "msgpack-1.0.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6c9566f2c39ccced0a38d37c26cc3570983b97833c365a6044edef3574a00c08"}, - {file = "msgpack-1.0.4-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:fcb8a47f43acc113e24e910399376f7277cf8508b27e5b88499f053de6b115a8"}, - {file = "msgpack-1.0.4-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:76ee788122de3a68a02ed6f3a16bbcd97bc7c2e39bd4d94be2f1821e7c4a64e6"}, - {file = "msgpack-1.0.4-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:0a68d3ac0104e2d3510de90a1091720157c319ceeb90d74f7b5295a6bee51bae"}, - {file = "msgpack-1.0.4-cp36-cp36m-win32.whl", hash = "sha256:85f279d88d8e833ec015650fd15ae5eddce0791e1e8a59165318f371158efec6"}, - {file = "msgpack-1.0.4-cp36-cp36m-win_amd64.whl", hash = "sha256:c1683841cd4fa45ac427c18854c3ec3cd9b681694caf5bff04edb9387602d661"}, - {file = "msgpack-1.0.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a75dfb03f8b06f4ab093dafe3ddcc2d633259e6c3f74bb1b01996f5d8aa5868c"}, - {file = "msgpack-1.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9667bdfdf523c40d2511f0e98a6c9d3603be6b371ae9a238b7ef2dc4e7a427b0"}, - {file = "msgpack-1.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11184bc7e56fd74c00ead4f9cc9a3091d62ecb96e97653add7a879a14b003227"}, - {file = "msgpack-1.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ac5bd7901487c4a1dd51a8c58f2632b15d838d07ceedaa5e4c080f7190925bff"}, - {file = "msgpack-1.0.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:1e91d641d2bfe91ba4c52039adc5bccf27c335356055825c7f88742c8bb900dd"}, - {file = "msgpack-1.0.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2a2df1b55a78eb5f5b7d2a4bb221cd8363913830145fad05374a80bf0877cb1e"}, - {file = "msgpack-1.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:545e3cf0cf74f3e48b470f68ed19551ae6f9722814ea969305794645da091236"}, - {file = "msgpack-1.0.4-cp37-cp37m-win32.whl", hash = "sha256:2cc5ca2712ac0003bcb625c96368fd08a0f86bbc1a5578802512d87bc592fe44"}, - {file = "msgpack-1.0.4-cp37-cp37m-win_amd64.whl", hash = "sha256:eba96145051ccec0ec86611fe9cf693ce55f2a3ce89c06ed307de0e085730ec1"}, - {file = "msgpack-1.0.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:7760f85956c415578c17edb39eed99f9181a48375b0d4a94076d84148cf67b2d"}, - {file = "msgpack-1.0.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:449e57cc1ff18d3b444eb554e44613cffcccb32805d16726a5494038c3b93dab"}, - {file = "msgpack-1.0.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d603de2b8d2ea3f3bcb2efe286849aa7a81531abc52d8454da12f46235092bcb"}, - {file = "msgpack-1.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48f5d88c99f64c456413d74a975bd605a9b0526293218a3b77220a2c15458ba9"}, - {file = "msgpack-1.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6916c78f33602ecf0509cc40379271ba0f9ab572b066bd4bdafd7434dee4bc6e"}, - {file = "msgpack-1.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81fc7ba725464651190b196f3cd848e8553d4d510114a954681fd0b9c479d7e1"}, - {file = "msgpack-1.0.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:d5b5b962221fa2c5d3a7f8133f9abffc114fe218eb4365e40f17732ade576c8e"}, - {file = "msgpack-1.0.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:77ccd2af37f3db0ea59fb280fa2165bf1b096510ba9fe0cc2bf8fa92a22fdb43"}, - {file = "msgpack-1.0.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b17be2478b622939e39b816e0aa8242611cc8d3583d1cd8ec31b249f04623243"}, - {file = "msgpack-1.0.4-cp38-cp38-win32.whl", hash = "sha256:2bb8cdf50dd623392fa75525cce44a65a12a00c98e1e37bf0fb08ddce2ff60d2"}, - {file = "msgpack-1.0.4-cp38-cp38-win_amd64.whl", hash = "sha256:26b8feaca40a90cbe031b03d82b2898bf560027160d3eae1423f4a67654ec5d6"}, - {file = "msgpack-1.0.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:462497af5fd4e0edbb1559c352ad84f6c577ffbbb708566a0abaaa84acd9f3ae"}, - {file = "msgpack-1.0.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2999623886c5c02deefe156e8f869c3b0aaeba14bfc50aa2486a0415178fce55"}, - {file = "msgpack-1.0.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f0029245c51fd9473dc1aede1160b0a29f4a912e6b1dd353fa6d317085b219da"}, - {file = "msgpack-1.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed6f7b854a823ea44cf94919ba3f727e230da29feb4a99711433f25800cf747f"}, - {file = "msgpack-1.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0df96d6eaf45ceca04b3f3b4b111b86b33785683d682c655063ef8057d61fd92"}, - {file = "msgpack-1.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6a4192b1ab40f8dca3f2877b70e63799d95c62c068c84dc028b40a6cb03ccd0f"}, - {file = "msgpack-1.0.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0e3590f9fb9f7fbc36df366267870e77269c03172d086fa76bb4eba8b2b46624"}, - {file = "msgpack-1.0.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:1576bd97527a93c44fa856770197dec00d223b0b9f36ef03f65bac60197cedf8"}, - {file = "msgpack-1.0.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:63e29d6e8c9ca22b21846234913c3466b7e4ee6e422f205a2988083de3b08cae"}, - {file = "msgpack-1.0.4-cp39-cp39-win32.whl", hash = "sha256:fb62ea4b62bfcb0b380d5680f9a4b3f9a2d166d9394e9bbd9666c0ee09a3645c"}, - {file = "msgpack-1.0.4-cp39-cp39-win_amd64.whl", hash = "sha256:4d5834a2a48965a349da1c5a79760d94a1a0172fbb5ab6b5b33cbf8447e109ce"}, - {file = "msgpack-1.0.4.tar.gz", hash = "sha256:f5d869c18f030202eb412f08b28d2afeea553d6613aee89e200d7aca7ef01f5f"}, + {file = "msgpack-1.0.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:525228efd79bb831cf6830a732e2e80bc1b05436b086d4264814b4b2955b2fa9"}, + {file = "msgpack-1.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4f8d8b3bf1ff2672567d6b5c725a1b347fe838b912772aa8ae2bf70338d5a198"}, + {file = "msgpack-1.0.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cdc793c50be3f01106245a61b739328f7dccc2c648b501e237f0699fe1395b81"}, + {file = "msgpack-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cb47c21a8a65b165ce29f2bec852790cbc04936f502966768e4aae9fa763cb7"}, + {file = "msgpack-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e42b9594cc3bf4d838d67d6ed62b9e59e201862a25e9a157019e171fbe672dd3"}, + {file = "msgpack-1.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:55b56a24893105dc52c1253649b60f475f36b3aa0fc66115bffafb624d7cb30b"}, + {file = "msgpack-1.0.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:1967f6129fc50a43bfe0951c35acbb729be89a55d849fab7686004da85103f1c"}, + {file = "msgpack-1.0.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:20a97bf595a232c3ee6d57ddaadd5453d174a52594bf9c21d10407e2a2d9b3bd"}, + {file = "msgpack-1.0.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d25dd59bbbbb996eacf7be6b4ad082ed7eacc4e8f3d2df1ba43822da9bfa122a"}, + {file = "msgpack-1.0.5-cp310-cp310-win32.whl", hash = "sha256:382b2c77589331f2cb80b67cc058c00f225e19827dbc818d700f61513ab47bea"}, + {file = "msgpack-1.0.5-cp310-cp310-win_amd64.whl", hash = "sha256:4867aa2df9e2a5fa5f76d7d5565d25ec76e84c106b55509e78c1ede0f152659a"}, + {file = "msgpack-1.0.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9f5ae84c5c8a857ec44dc180a8b0cc08238e021f57abdf51a8182e915e6299f0"}, + {file = "msgpack-1.0.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9e6ca5d5699bcd89ae605c150aee83b5321f2115695e741b99618f4856c50898"}, + {file = "msgpack-1.0.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5494ea30d517a3576749cad32fa27f7585c65f5f38309c88c6d137877fa28a5a"}, + {file = "msgpack-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ab2f3331cb1b54165976a9d976cb251a83183631c88076613c6c780f0d6e45a"}, + {file = "msgpack-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28592e20bbb1620848256ebc105fc420436af59515793ed27d5c77a217477705"}, + {file = "msgpack-1.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fe5c63197c55bce6385d9aee16c4d0641684628f63ace85f73571e65ad1c1e8d"}, + {file = "msgpack-1.0.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ed40e926fa2f297e8a653c954b732f125ef97bdd4c889f243182299de27e2aa9"}, + {file = "msgpack-1.0.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b2de4c1c0538dcb7010902a2b97f4e00fc4ddf2c8cda9749af0e594d3b7fa3d7"}, + {file = "msgpack-1.0.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bf22a83f973b50f9d38e55c6aade04c41ddda19b00c4ebc558930d78eecc64ed"}, + {file = "msgpack-1.0.5-cp311-cp311-win32.whl", hash = "sha256:c396e2cc213d12ce017b686e0f53497f94f8ba2b24799c25d913d46c08ec422c"}, + {file = "msgpack-1.0.5-cp311-cp311-win_amd64.whl", hash = "sha256:6c4c68d87497f66f96d50142a2b73b97972130d93677ce930718f68828b382e2"}, + {file = "msgpack-1.0.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:a2b031c2e9b9af485d5e3c4520f4220d74f4d222a5b8dc8c1a3ab9448ca79c57"}, + {file = "msgpack-1.0.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f837b93669ce4336e24d08286c38761132bc7ab29782727f8557e1eb21b2080"}, + {file = "msgpack-1.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1d46dfe3832660f53b13b925d4e0fa1432b00f5f7210eb3ad3bb9a13c6204a6"}, + {file = "msgpack-1.0.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:366c9a7b9057e1547f4ad51d8facad8b406bab69c7d72c0eb6f529cf76d4b85f"}, + {file = "msgpack-1.0.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:4c075728a1095efd0634a7dccb06204919a2f67d1893b6aa8e00497258bf926c"}, + {file = "msgpack-1.0.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:f933bbda5a3ee63b8834179096923b094b76f0c7a73c1cfe8f07ad608c58844b"}, + {file = "msgpack-1.0.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:36961b0568c36027c76e2ae3ca1132e35123dcec0706c4b7992683cc26c1320c"}, + {file = "msgpack-1.0.5-cp36-cp36m-win32.whl", hash = "sha256:b5ef2f015b95f912c2fcab19c36814963b5463f1fb9049846994b007962743e9"}, + {file = "msgpack-1.0.5-cp36-cp36m-win_amd64.whl", hash = "sha256:288e32b47e67f7b171f86b030e527e302c91bd3f40fd9033483f2cacc37f327a"}, + {file = "msgpack-1.0.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:137850656634abddfb88236008339fdaba3178f4751b28f270d2ebe77a563b6c"}, + {file = "msgpack-1.0.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0c05a4a96585525916b109bb85f8cb6511db1c6f5b9d9cbcbc940dc6b4be944b"}, + {file = "msgpack-1.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56a62ec00b636583e5cb6ad313bbed36bb7ead5fa3a3e38938503142c72cba4f"}, + {file = "msgpack-1.0.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef8108f8dedf204bb7b42994abf93882da1159728a2d4c5e82012edd92c9da9f"}, + {file = "msgpack-1.0.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:1835c84d65f46900920b3708f5ba829fb19b1096c1800ad60bae8418652a951d"}, + {file = "msgpack-1.0.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:e57916ef1bd0fee4f21c4600e9d1da352d8816b52a599c46460e93a6e9f17086"}, + {file = "msgpack-1.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:17358523b85973e5f242ad74aa4712b7ee560715562554aa2134d96e7aa4cbbf"}, + {file = "msgpack-1.0.5-cp37-cp37m-win32.whl", hash = "sha256:cb5aaa8c17760909ec6cb15e744c3ebc2ca8918e727216e79607b7bbce9c8f77"}, + {file = "msgpack-1.0.5-cp37-cp37m-win_amd64.whl", hash = "sha256:ab31e908d8424d55601ad7075e471b7d0140d4d3dd3272daf39c5c19d936bd82"}, + {file = "msgpack-1.0.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:b72d0698f86e8d9ddf9442bdedec15b71df3598199ba33322d9711a19f08145c"}, + {file = "msgpack-1.0.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:379026812e49258016dd84ad79ac8446922234d498058ae1d415f04b522d5b2d"}, + {file = "msgpack-1.0.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:332360ff25469c346a1c5e47cbe2a725517919892eda5cfaffe6046656f0b7bb"}, + {file = "msgpack-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:476a8fe8fae289fdf273d6d2a6cb6e35b5a58541693e8f9f019bfe990a51e4ba"}, + {file = "msgpack-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9985b214f33311df47e274eb788a5893a761d025e2b92c723ba4c63936b69b1"}, + {file = "msgpack-1.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:48296af57cdb1d885843afd73c4656be5c76c0c6328db3440c9601a98f303d87"}, + {file = "msgpack-1.0.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:addab7e2e1fcc04bd08e4eb631c2a90960c340e40dfc4a5e24d2ff0d5a3b3edb"}, + {file = "msgpack-1.0.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:916723458c25dfb77ff07f4c66aed34e47503b2eb3188b3adbec8d8aa6e00f48"}, + {file = "msgpack-1.0.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:821c7e677cc6acf0fd3f7ac664c98803827ae6de594a9f99563e48c5a2f27eb0"}, + {file = "msgpack-1.0.5-cp38-cp38-win32.whl", hash = "sha256:1c0f7c47f0087ffda62961d425e4407961a7ffd2aa004c81b9c07d9269512f6e"}, + {file = "msgpack-1.0.5-cp38-cp38-win_amd64.whl", hash = "sha256:bae7de2026cbfe3782c8b78b0db9cbfc5455e079f1937cb0ab8d133496ac55e1"}, + {file = "msgpack-1.0.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:20c784e66b613c7f16f632e7b5e8a1651aa5702463d61394671ba07b2fc9e025"}, + {file = "msgpack-1.0.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:266fa4202c0eb94d26822d9bfd7af25d1e2c088927fe8de9033d929dd5ba24c5"}, + {file = "msgpack-1.0.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:18334484eafc2b1aa47a6d42427da7fa8f2ab3d60b674120bce7a895a0a85bdd"}, + {file = "msgpack-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:57e1f3528bd95cc44684beda696f74d3aaa8a5e58c816214b9046512240ef437"}, + {file = "msgpack-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:586d0d636f9a628ddc6a17bfd45aa5b5efaf1606d2b60fa5d87b8986326e933f"}, + {file = "msgpack-1.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a740fa0e4087a734455f0fc3abf5e746004c9da72fbd541e9b113013c8dc3282"}, + {file = "msgpack-1.0.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:3055b0455e45810820db1f29d900bf39466df96ddca11dfa6d074fa47054376d"}, + {file = "msgpack-1.0.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:a61215eac016f391129a013c9e46f3ab308db5f5ec9f25811e811f96962599a8"}, + {file = "msgpack-1.0.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:362d9655cd369b08fda06b6657a303eb7172d5279997abe094512e919cf74b11"}, + {file = "msgpack-1.0.5-cp39-cp39-win32.whl", hash = "sha256:ac9dd47af78cae935901a9a500104e2dea2e253207c924cc95de149606dc43cc"}, + {file = "msgpack-1.0.5-cp39-cp39-win_amd64.whl", hash = "sha256:06f5174b5f8ed0ed919da0e62cbd4ffde676a374aba4020034da05fab67b9164"}, + {file = "msgpack-1.0.5.tar.gz", hash = "sha256:c075544284eadc5cddc70f4757331d99dcbc16b2bbd4849d15f8aae4cf36d31c"}, ] mypy = [ {file = "mypy-0.910-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:a155d80ea6cee511a3694b108c4494a39f42de11ee4e61e72bc424c490e46457"}, @@ -2030,36 +2158,35 @@ mypy = [ {file = "mypy-0.910.tar.gz", hash = "sha256:704098302473cb31a218f1775a873b376b30b4c18229421e9e9dc8916fd16150"}, ] mypy-extensions = [ - {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"}, - {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"}, + {file = "mypy_extensions-0.4.4.tar.gz", hash = "sha256:c8b707883a96efe9b4bb3aaf0dcc07e7e217d7d8368eec4db4049ee9e142f4fd"}, ] natsort = [ - {file = "natsort-8.1.0-py3-none-any.whl", hash = "sha256:f59988d2f24e77b6b56f8a8f882d5df6b3b637e09e075abc67b486d59fba1a4b"}, - {file = "natsort-8.1.0.tar.gz", hash = "sha256:c7c1f3f27c375719a4dfcab353909fe39f26c2032a062a8c80cc844eaaca0445"}, + {file = "natsort-8.3.1-py3-none-any.whl", hash = "sha256:d583bc9050dd10538de36297c960b93f873f0cd01671a3c50df5bd86dd391dcb"}, + {file = "natsort-8.3.1.tar.gz", hash = "sha256:517595492dde570a4fd6b6a76f644440c1ba51e2338c8a671d7f0475fda8f9fd"}, ] nest-asyncio = [ {file = "nest_asyncio-1.5.6-py3-none-any.whl", hash = "sha256:b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8"}, {file = "nest_asyncio-1.5.6.tar.gz", hash = "sha256:d267cc1ff794403f7df692964d1d2a3fa9418ffea2a3f6859a439ff482fef290"}, ] nodeenv = [ - {file = "nodeenv-1.6.0-py2.py3-none-any.whl", hash = "sha256:621e6b7076565ddcacd2db0294c0381e01fd28945ab36bcf00f41c5daf63bef7"}, - {file = "nodeenv-1.6.0.tar.gz", hash = "sha256:3ef13ff90291ba2a4a7a4ff9a979b63ffdd00a464dbe04acf0ea6471517a4c2b"}, + {file = "nodeenv-1.7.0-py2.py3-none-any.whl", hash = "sha256:27083a7b96a25f2f5e1d8cb4b6317ee8aeda3bdd121394e5ac54e498028a042e"}, + {file = "nodeenv-1.7.0.tar.gz", hash = "sha256:e0e7f7dfb85fc5394c6fe1e8fa98131a2473e04311a45afb6508f7cf1836fa2b"}, ] overrides = [ {file = "overrides-7.3.1-py3-none-any.whl", hash = "sha256:6187d8710a935d09b0bcef8238301d6ee2569d2ac1ae0ec39a8c7924e27f58ca"}, {file = "overrides-7.3.1.tar.gz", hash = "sha256:8b97c6c1e1681b78cbc9424b138d880f0803c2254c5ebaabdde57bb6c62093f2"}, ] packaging = [ - {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"}, - {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"}, + {file = "packaging-23.0-py3-none-any.whl", hash = "sha256:714ac14496c3e68c99c29b00845f7a2b85f3bb6f1078fd9f72fd20f0570002b2"}, + {file = "packaging-23.0.tar.gz", hash = "sha256:b6ad297f8907de0fa2fe1ccbd26fdaf387f5f47c7275fedf8cce89f99446cf97"}, ] parso = [ {file = "parso-0.8.3-py2.py3-none-any.whl", hash = "sha256:c001d4636cd3aecdaf33cbb40aebb59b094be2a74c556778ef5576c175e19e75"}, {file = "parso-0.8.3.tar.gz", hash = "sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0"}, ] pathspec = [ - {file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"}, - {file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"}, + {file = "pathspec-0.11.1-py3-none-any.whl", hash = "sha256:d8af70af76652554bd134c22b3e8a1cc46ed7d91edcdd721ef1a0c51a84a5293"}, + {file = "pathspec-0.11.1.tar.gz", hash = "sha256:2798de800fa92780e33acca925945e9a19a133b715067cf165b8866c15a31687"}, ] pexpect = [ {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"}, @@ -2070,20 +2197,20 @@ pickleshare = [ {file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"}, ] platformdirs = [ - {file = "platformdirs-2.5.2-py3-none-any.whl", hash = "sha256:027d8e83a2d7de06bbac4e5ef7e023c02b863d7ea5d079477e722bb41ab25788"}, - {file = "platformdirs-2.5.2.tar.gz", hash = "sha256:58c8abb07dcb441e6ee4b11d8df0ac856038f944ab98b7be6b27b2a3c7feef19"}, + {file = "platformdirs-3.2.0-py3-none-any.whl", hash = "sha256:ebe11c0d7a805086e99506aa331612429a72ca7cd52a1f0d277dc4adc20cb10e"}, + {file = "platformdirs-3.2.0.tar.gz", hash = "sha256:d5b638ca397f25f979350ff789db335903d7ea010ab28903f57b27e1b16c2b08"}, ] pluggy = [ {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, ] pre-commit = [ - {file = "pre_commit-2.19.0-py2.py3-none-any.whl", hash = "sha256:10c62741aa5704faea2ad69cb550ca78082efe5697d6f04e5710c3c229afdd10"}, - {file = "pre_commit-2.19.0.tar.gz", hash = "sha256:4233a1e38621c87d9dda9808c6606d7e7ba0e087cd56d3fe03202a01d2919615"}, + {file = "pre_commit-2.21.0-py2.py3-none-any.whl", hash = "sha256:e2f91727039fc39a92f58a588a25b87f936de6567eed4f0e673e0507edc75bad"}, + {file = "pre_commit-2.21.0.tar.gz", hash = "sha256:31ef31af7e474a8d8995027fefdfcf509b5c913ff31f2015b4ec4beb26a6f658"}, ] prompt-toolkit = [ - {file = "prompt_toolkit-3.0.32-py3-none-any.whl", hash = "sha256:24becda58d49ceac4dc26232eb179ef2b21f133fecda7eed6018d341766ed76e"}, - {file = "prompt_toolkit-3.0.32.tar.gz", hash = "sha256:e7f2129cba4ff3b3656bbdda0e74ee00d2f874a8bcdb9dd16f5fec7b3e173cae"}, + {file = "prompt_toolkit-3.0.38-py3-none-any.whl", hash = "sha256:45ea77a2f7c60418850331366c81cf6b5b9cf4c7fd34616f733c5427e6abbb1f"}, + {file = "prompt_toolkit-3.0.38.tar.gz", hash = "sha256:23ac5d50538a9a38c8bde05fecb47d0b403ecd0662857a86f886f798563d5b9b"}, ] psutil = [ {file = "psutil-5.9.4-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c1ca331af862803a42677c120aff8a814a804e09832f166f226bfd22b56feee8"}, @@ -2126,20 +2253,16 @@ pyflakes = [ {file = "pyflakes-2.3.1.tar.gz", hash = "sha256:f5bc8ecabc05bb9d291eb5203d6810b49040f6ff446a756326104746cc00c1db"}, ] pygments = [ - {file = "Pygments-2.12.0-py3-none-any.whl", hash = "sha256:dc9c10fb40944260f6ed4c688ece0cd2048414940f1cea51b8b226318411c519"}, - {file = "Pygments-2.12.0.tar.gz", hash = "sha256:5eb116118f9612ff1ee89ac96437bb6b49e8f04d8a13b514ba26f620208e26eb"}, + {file = "Pygments-2.14.0-py3-none-any.whl", hash = "sha256:fa7bd7bd2771287c0de303af8bfdfc731f51bd2c6a47ab69d117138893b82717"}, + {file = "Pygments-2.14.0.tar.gz", hash = "sha256:b3ed06a9e8ac9a9aae5a6f5dbe78a8a58655d17b43b93c078f094ddc476ae297"}, ] pylint = [ - {file = "pylint-2.14.3-py3-none-any.whl", hash = "sha256:6757a027e15816be23625b079ebc45464e4c9d9dde0c826d18beee53fe22a2e7"}, - {file = "pylint-2.14.3.tar.gz", hash = "sha256:4e1378f815c63e7e44590d0d339ed6435f5281d0a0cc357d29a86ea0365ef868"}, -] -pyparsing = [ - {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"}, - {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"}, + {file = "pylint-2.17.1-py3-none-any.whl", hash = "sha256:8660a54e3f696243d644fca98f79013a959c03f979992c1ab59c24d3f4ec2700"}, + {file = "pylint-2.17.1.tar.gz", hash = "sha256:d4d009b0116e16845533bc2163493d6681846ac725eab8ca8014afb520178ddd"}, ] pytest = [ - {file = "pytest-7.1.2-py3-none-any.whl", hash = "sha256:13d0e3ccfc2b6e26be000cb6568c832ba67ba32e719443bfe725814d3c42433c"}, - {file = "pytest-7.1.2.tar.gz", hash = "sha256:a06a0425453864a270bc45e71f783330a7428defb4230fb5e6a731fde06ecd45"}, + {file = "pytest-7.2.2-py3-none-any.whl", hash = "sha256:130328f552dcfac0b1cec75c12e3f005619dc5f874f0a06e8ff7263f0ee6225e"}, + {file = "pytest-7.2.2.tar.gz", hash = "sha256:c99ab0c73aceb050f68929bc93af19ab6db0558791c6a0715723abe9d0ade9d4"}, ] pytest-cov = [ {file = "pytest-cov-3.0.0.tar.gz", hash = "sha256:e7f0f5b1617d2210a2cabc266dfe2f4c75a8d32fb89eafb7ad9d06f6d076d470"}, @@ -2149,25 +2272,21 @@ python-dateutil = [ {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, ] -pytz = [ - {file = "pytz-2022.1-py2.py3-none-any.whl", hash = "sha256:e68985985296d9a66a881eb3193b0906246245294a881e7c8afe623866ac6a5c"}, - {file = "pytz-2022.1.tar.gz", hash = "sha256:1e760e2fe6a8163bc0b3d9a19c4f84342afa0a2affebfaa84b01b978a02ecaa7"}, -] pywin32 = [ - {file = "pywin32-305-cp310-cp310-win32.whl", hash = "sha256:421f6cd86e84bbb696d54563c48014b12a23ef95a14e0bdba526be756d89f116"}, - {file = "pywin32-305-cp310-cp310-win_amd64.whl", hash = "sha256:73e819c6bed89f44ff1d690498c0a811948f73777e5f97c494c152b850fad478"}, - {file = "pywin32-305-cp310-cp310-win_arm64.whl", hash = "sha256:742eb905ce2187133a29365b428e6c3b9001d79accdc30aa8969afba1d8470f4"}, - {file = "pywin32-305-cp311-cp311-win32.whl", hash = "sha256:19ca459cd2e66c0e2cc9a09d589f71d827f26d47fe4a9d09175f6aa0256b51c2"}, - {file = "pywin32-305-cp311-cp311-win_amd64.whl", hash = "sha256:326f42ab4cfff56e77e3e595aeaf6c216712bbdd91e464d167c6434b28d65990"}, - {file = "pywin32-305-cp311-cp311-win_arm64.whl", hash = "sha256:4ecd404b2c6eceaca52f8b2e3e91b2187850a1ad3f8b746d0796a98b4cea04db"}, - {file = "pywin32-305-cp36-cp36m-win32.whl", hash = "sha256:48d8b1659284f3c17b68587af047d110d8c44837736b8932c034091683e05863"}, - {file = "pywin32-305-cp36-cp36m-win_amd64.whl", hash = "sha256:13362cc5aa93c2beaf489c9c9017c793722aeb56d3e5166dadd5ef82da021fe1"}, - {file = "pywin32-305-cp37-cp37m-win32.whl", hash = "sha256:a55db448124d1c1484df22fa8bbcbc45c64da5e6eae74ab095b9ea62e6d00496"}, - {file = "pywin32-305-cp37-cp37m-win_amd64.whl", hash = "sha256:109f98980bfb27e78f4df8a51a8198e10b0f347257d1e265bb1a32993d0c973d"}, - {file = "pywin32-305-cp38-cp38-win32.whl", hash = "sha256:9dd98384da775afa009bc04863426cb30596fd78c6f8e4e2e5bbf4edf8029504"}, - {file = "pywin32-305-cp38-cp38-win_amd64.whl", hash = "sha256:56d7a9c6e1a6835f521788f53b5af7912090674bb84ef5611663ee1595860fc7"}, - {file = "pywin32-305-cp39-cp39-win32.whl", hash = "sha256:9d968c677ac4d5cbdaa62fd3014ab241718e619d8e36ef8e11fb930515a1e918"}, - {file = "pywin32-305-cp39-cp39-win_amd64.whl", hash = "sha256:50768c6b7c3f0b38b7fb14dd4104da93ebced5f1a50dc0e834594bff6fbe1271"}, + {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, + {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, + {file = "pywin32-306-cp311-cp311-win32.whl", hash = "sha256:e65028133d15b64d2ed8f06dd9fbc268352478d4f9289e69c190ecd6818b6407"}, + {file = "pywin32-306-cp311-cp311-win_amd64.whl", hash = "sha256:a7639f51c184c0272e93f244eb24dafca9b1855707d94c192d4a0b4c01e1100e"}, + {file = "pywin32-306-cp311-cp311-win_arm64.whl", hash = "sha256:70dba0c913d19f942a2db25217d9a1b726c278f483a919f1abfed79c9cf64d3a"}, + {file = "pywin32-306-cp312-cp312-win32.whl", hash = "sha256:383229d515657f4e3ed1343da8be101000562bf514591ff383ae940cad65458b"}, + {file = "pywin32-306-cp312-cp312-win_amd64.whl", hash = "sha256:37257794c1ad39ee9be652da0462dc2e394c8159dfd913a8a4e8eb6fd346da0e"}, + {file = "pywin32-306-cp312-cp312-win_arm64.whl", hash = "sha256:5821ec52f6d321aa59e2db7e0a35b997de60c201943557d108af9d4ae1ec7040"}, + {file = "pywin32-306-cp37-cp37m-win32.whl", hash = "sha256:1c73ea9a0d2283d889001998059f5eaaba3b6238f767c9cf2833b13e6a685f65"}, + {file = "pywin32-306-cp37-cp37m-win_amd64.whl", hash = "sha256:72c5f621542d7bdd4fdb716227be0dd3f8565c11b280be6315b06ace35487d36"}, + {file = "pywin32-306-cp38-cp38-win32.whl", hash = "sha256:e4c092e2589b5cf0d365849e73e02c391c1349958c5ac3e9d5ccb9a28e017b3a"}, + {file = "pywin32-306-cp38-cp38-win_amd64.whl", hash = "sha256:e8ac1ae3601bee6ca9f7cb4b5363bf1c0badb935ef243c4733ff9a393b1690c0"}, + {file = "pywin32-306-cp39-cp39-win32.whl", hash = "sha256:e25fd5b485b55ac9c057f67d94bc203f3f6595078d1fb3b458c9c28b7153a802"}, + {file = "pywin32-306-cp39-cp39-win_amd64.whl", hash = "sha256:39b61c15272833b5c329a2989999dcae836b1eed650252ab1b7bfbe1d59f30f4"}, ] pyyaml = [ {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, @@ -2212,128 +2331,137 @@ pyyaml = [ {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, ] pyzmq = [ - {file = "pyzmq-24.0.1-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:28b119ba97129d3001673a697b7cce47fe6de1f7255d104c2f01108a5179a066"}, - {file = "pyzmq-24.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bcbebd369493d68162cddb74a9c1fcebd139dfbb7ddb23d8f8e43e6c87bac3a6"}, - {file = "pyzmq-24.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ae61446166983c663cee42c852ed63899e43e484abf080089f771df4b9d272ef"}, - {file = "pyzmq-24.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:87f7ac99b15270db8d53f28c3c7b968612993a90a5cf359da354efe96f5372b4"}, - {file = "pyzmq-24.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9dca7c3956b03b7663fac4d150f5e6d4f6f38b2462c1e9afd83bcf7019f17913"}, - {file = "pyzmq-24.0.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:8c78bfe20d4c890cb5580a3b9290f700c570e167d4cdcc55feec07030297a5e3"}, - {file = "pyzmq-24.0.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:48f721f070726cd2a6e44f3c33f8ee4b24188e4b816e6dd8ba542c8c3bb5b246"}, - {file = "pyzmq-24.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:afe1f3bc486d0ce40abb0a0c9adb39aed3bbac36ebdc596487b0cceba55c21c1"}, - {file = "pyzmq-24.0.1-cp310-cp310-win32.whl", hash = "sha256:3e6192dbcefaaa52ed81be88525a54a445f4b4fe2fffcae7fe40ebb58bd06bfd"}, - {file = "pyzmq-24.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:86de64468cad9c6d269f32a6390e210ca5ada568c7a55de8e681ca3b897bb340"}, - {file = "pyzmq-24.0.1-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:838812c65ed5f7c2bd11f7b098d2e5d01685a3f6d1f82849423b570bae698c00"}, - {file = "pyzmq-24.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dfb992dbcd88d8254471760879d48fb20836d91baa90f181c957122f9592b3dc"}, - {file = "pyzmq-24.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7abddb2bd5489d30ffeb4b93a428130886c171b4d355ccd226e83254fcb6b9ef"}, - {file = "pyzmq-24.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:94010bd61bc168c103a5b3b0f56ed3b616688192db7cd5b1d626e49f28ff51b3"}, - {file = "pyzmq-24.0.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:8242543c522d84d033fe79be04cb559b80d7eb98ad81b137ff7e0a9020f00ace"}, - {file = "pyzmq-24.0.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ccb94342d13e3bf3ffa6e62f95b5e3f0bc6bfa94558cb37f4b3d09d6feb536ff"}, - {file = "pyzmq-24.0.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6640f83df0ae4ae1104d4c62b77e9ef39be85ebe53f636388707d532bee2b7b8"}, - {file = "pyzmq-24.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a180dbd5ea5d47c2d3b716d5c19cc3fb162d1c8db93b21a1295d69585bfddac1"}, - {file = "pyzmq-24.0.1-cp311-cp311-win32.whl", hash = "sha256:624321120f7e60336be8ec74a172ae7fba5c3ed5bf787cc85f7e9986c9e0ebc2"}, - {file = "pyzmq-24.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:1724117bae69e091309ffb8255412c4651d3f6355560d9af312d547f6c5bc8b8"}, - {file = "pyzmq-24.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:15975747462ec49fdc863af906bab87c43b2491403ab37a6d88410635786b0f4"}, - {file = "pyzmq-24.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b947e264f0e77d30dcbccbb00f49f900b204b922eb0c3a9f0afd61aaa1cedc3d"}, - {file = "pyzmq-24.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0ec91f1bad66f3ee8c6deb65fa1fe418e8ad803efedd69c35f3b5502f43bd1dc"}, - {file = "pyzmq-24.0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:db03704b3506455d86ec72c3358a779e9b1d07b61220dfb43702b7b668edcd0d"}, - {file = "pyzmq-24.0.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:e7e66b4e403c2836ac74f26c4b65d8ac0ca1eef41dfcac2d013b7482befaad83"}, - {file = "pyzmq-24.0.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:7a23ccc1083c260fa9685c93e3b170baba45aeed4b524deb3f426b0c40c11639"}, - {file = "pyzmq-24.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fa0ae3275ef706c0309556061185dd0e4c4cd3b7d6f67ae617e4e677c7a41e2e"}, - {file = "pyzmq-24.0.1-cp36-cp36m-win32.whl", hash = "sha256:f01de4ec083daebf210531e2cca3bdb1608dbbbe00a9723e261d92087a1f6ebc"}, - {file = "pyzmq-24.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:de4217b9eb8b541cf2b7fde4401ce9d9a411cc0af85d410f9d6f4333f43640be"}, - {file = "pyzmq-24.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:78068e8678ca023594e4a0ab558905c1033b2d3e806a0ad9e3094e231e115a33"}, - {file = "pyzmq-24.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77c2713faf25a953c69cf0f723d1b7dd83827b0834e6c41e3fb3bbc6765914a1"}, - {file = "pyzmq-24.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8bb4af15f305056e95ca1bd086239b9ebc6ad55e9f49076d27d80027f72752f6"}, - {file = "pyzmq-24.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:0f14cffd32e9c4c73da66db97853a6aeceaac34acdc0fae9e5bbc9370281864c"}, - {file = "pyzmq-24.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:0108358dab8c6b27ff6b985c2af4b12665c1bc659648284153ee501000f5c107"}, - {file = "pyzmq-24.0.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:d66689e840e75221b0b290b0befa86f059fb35e1ee6443bce51516d4d61b6b99"}, - {file = "pyzmq-24.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ae08ac90aa8fa14caafc7a6251bd218bf6dac518b7bff09caaa5e781119ba3f2"}, - {file = "pyzmq-24.0.1-cp37-cp37m-win32.whl", hash = "sha256:8421aa8c9b45ea608c205db9e1c0c855c7e54d0e9c2c2f337ce024f6843cab3b"}, - {file = "pyzmq-24.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:54d8b9c5e288362ec8595c1d98666d36f2070fd0c2f76e2b3c60fbad9bd76227"}, - {file = "pyzmq-24.0.1-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:acbd0a6d61cc954b9f535daaa9ec26b0a60a0d4353c5f7c1438ebc88a359a47e"}, - {file = "pyzmq-24.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:47b11a729d61a47df56346283a4a800fa379ae6a85870d5a2e1e4956c828eedc"}, - {file = "pyzmq-24.0.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:abe6eb10122f0d746a0d510c2039ae8edb27bc9af29f6d1b05a66cc2401353ff"}, - {file = "pyzmq-24.0.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:07bec1a1b22dacf718f2c0e71b49600bb6a31a88f06527dfd0b5aababe3fa3f7"}, - {file = "pyzmq-24.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0d945a85b70da97ae86113faf9f1b9294efe66bd4a5d6f82f2676d567338b66"}, - {file = "pyzmq-24.0.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1b7928bb7580736ffac5baf814097be342ba08d3cfdfb48e52773ec959572287"}, - {file = "pyzmq-24.0.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:b946da90dc2799bcafa682692c1d2139b2a96ec3c24fa9fc6f5b0da782675330"}, - {file = "pyzmq-24.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c8840f064b1fb377cffd3efeaad2b190c14d4c8da02316dae07571252d20b31f"}, - {file = "pyzmq-24.0.1-cp38-cp38-win32.whl", hash = "sha256:4854f9edc5208f63f0841c0c667260ae8d6846cfa233c479e29fdc85d42ebd58"}, - {file = "pyzmq-24.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:42d4f97b9795a7aafa152a36fe2ad44549b83a743fd3e77011136def512e6c2a"}, - {file = "pyzmq-24.0.1-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:52afb0ac962963fff30cf1be775bc51ae083ef4c1e354266ab20e5382057dd62"}, - {file = "pyzmq-24.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8bad8210ad4df68c44ff3685cca3cda448ee46e20d13edcff8909eba6ec01ca4"}, - {file = "pyzmq-24.0.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:dabf1a05318d95b1537fd61d9330ef4313ea1216eea128a17615038859da3b3b"}, - {file = "pyzmq-24.0.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5bd3d7dfd9cd058eb68d9a905dec854f86649f64d4ddf21f3ec289341386c44b"}, - {file = "pyzmq-24.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8012bce6836d3f20a6c9599f81dfa945f433dab4dbd0c4917a6fb1f998ab33d"}, - {file = "pyzmq-24.0.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c31805d2c8ade9b11feca4674eee2b9cce1fec3e8ddb7bbdd961a09dc76a80ea"}, - {file = "pyzmq-24.0.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:3104f4b084ad5d9c0cb87445cc8cfd96bba710bef4a66c2674910127044df209"}, - {file = "pyzmq-24.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:df0841f94928f8af9c7a1f0aaaffba1fb74607af023a152f59379c01c53aee58"}, - {file = "pyzmq-24.0.1-cp39-cp39-win32.whl", hash = "sha256:a435ef8a3bd95c8a2d316d6e0ff70d0db524f6037411652803e118871d703333"}, - {file = "pyzmq-24.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:2032d9cb994ce3b4cba2b8dfae08c7e25bc14ba484c770d4d3be33c27de8c45b"}, - {file = "pyzmq-24.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bb5635c851eef3a7a54becde6da99485eecf7d068bd885ac8e6d173c4ecd68b0"}, - {file = "pyzmq-24.0.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:83ea1a398f192957cb986d9206ce229efe0ee75e3c6635baff53ddf39bd718d5"}, - {file = "pyzmq-24.0.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:941fab0073f0a54dc33d1a0460cb04e0d85893cb0c5e1476c785000f8b359409"}, - {file = "pyzmq-24.0.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e8f482c44ccb5884bf3f638f29bea0f8dc68c97e38b2061769c4cb697f6140d"}, - {file = "pyzmq-24.0.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:613010b5d17906c4367609e6f52e9a2595e35d5cc27d36ff3f1b6fa6e954d944"}, - {file = "pyzmq-24.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:65c94410b5a8355cfcf12fd600a313efee46ce96a09e911ea92cf2acf6708804"}, - {file = "pyzmq-24.0.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:20e7eeb1166087db636c06cae04a1ef59298627f56fb17da10528ab52a14c87f"}, - {file = "pyzmq-24.0.1-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a2712aee7b3834ace51738c15d9ee152cc5a98dc7d57dd93300461b792ab7b43"}, - {file = "pyzmq-24.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a7c280185c4da99e0cc06c63bdf91f5b0b71deb70d8717f0ab870a43e376db8"}, - {file = "pyzmq-24.0.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:858375573c9225cc8e5b49bfac846a77b696b8d5e815711b8d4ba3141e6e8879"}, - {file = "pyzmq-24.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:80093b595921eed1a2cead546a683b9e2ae7f4a4592bb2ab22f70d30174f003a"}, - {file = "pyzmq-24.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f3f3154fde2b1ff3aa7b4f9326347ebc89c8ef425ca1db8f665175e6d3bd42f"}, - {file = "pyzmq-24.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abb756147314430bee5d10919b8493c0ccb109ddb7f5dfd2fcd7441266a25b75"}, - {file = "pyzmq-24.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44e706bac34e9f50779cb8c39f10b53a4d15aebb97235643d3112ac20bd577b4"}, - {file = "pyzmq-24.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:687700f8371643916a1d2c61f3fdaa630407dd205c38afff936545d7b7466066"}, - {file = "pyzmq-24.0.1.tar.gz", hash = "sha256:216f5d7dbb67166759e59b0479bca82b8acf9bed6015b526b8eb10143fb08e77"}, + {file = "pyzmq-25.0.2-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:ac178e666c097c8d3deb5097b58cd1316092fc43e8ef5b5fdb259b51da7e7315"}, + {file = "pyzmq-25.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:659e62e1cbb063151c52f5b01a38e1df6b54feccfa3e2509d44c35ca6d7962ee"}, + {file = "pyzmq-25.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8280ada89010735a12b968ec3ea9a468ac2e04fddcc1cede59cb7f5178783b9c"}, + {file = "pyzmq-25.0.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9b5eeb5278a8a636bb0abdd9ff5076bcbb836cd2302565df53ff1fa7d106d54"}, + {file = "pyzmq-25.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a2e5fe42dfe6b73ca120b97ac9f34bfa8414feb15e00e37415dbd51cf227ef6"}, + {file = "pyzmq-25.0.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:827bf60e749e78acb408a6c5af6688efbc9993e44ecc792b036ec2f4b4acf485"}, + {file = "pyzmq-25.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7b504ae43d37e282301da586529e2ded8b36d4ee2cd5e6db4386724ddeaa6bbc"}, + {file = "pyzmq-25.0.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:cb1f69a0a2a2b1aae8412979dd6293cc6bcddd4439bf07e4758d864ddb112354"}, + {file = "pyzmq-25.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2b9c9cc965cdf28381e36da525dcb89fc1571d9c54800fdcd73e3f73a2fc29bd"}, + {file = "pyzmq-25.0.2-cp310-cp310-win32.whl", hash = "sha256:24abbfdbb75ac5039205e72d6c75f10fc39d925f2df8ff21ebc74179488ebfca"}, + {file = "pyzmq-25.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6a821a506822fac55d2df2085a52530f68ab15ceed12d63539adc32bd4410f6e"}, + {file = "pyzmq-25.0.2-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:9af0bb0277e92f41af35e991c242c9c71920169d6aa53ade7e444f338f4c8128"}, + {file = "pyzmq-25.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:54a96cf77684a3a537b76acfa7237b1e79a8f8d14e7f00e0171a94b346c5293e"}, + {file = "pyzmq-25.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88649b19ede1cab03b96b66c364cbbf17c953615cdbc844f7f6e5f14c5e5261c"}, + {file = "pyzmq-25.0.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:715cff7644a80a7795953c11b067a75f16eb9fc695a5a53316891ebee7f3c9d5"}, + {file = "pyzmq-25.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:312b3f0f066b4f1d17383aae509bacf833ccaf591184a1f3c7a1661c085063ae"}, + {file = "pyzmq-25.0.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:d488c5c8630f7e782e800869f82744c3aca4aca62c63232e5d8c490d3d66956a"}, + {file = "pyzmq-25.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:38d9f78d69bcdeec0c11e0feb3bc70f36f9b8c44fc06e5d06d91dc0a21b453c7"}, + {file = "pyzmq-25.0.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3059a6a534c910e1d5d068df42f60d434f79e6cc6285aa469b384fa921f78cf8"}, + {file = "pyzmq-25.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6526d097b75192f228c09d48420854d53dfbc7abbb41b0e26f363ccb26fbc177"}, + {file = "pyzmq-25.0.2-cp311-cp311-win32.whl", hash = "sha256:5c5fbb229e40a89a2fe73d0c1181916f31e30f253cb2d6d91bea7927c2e18413"}, + {file = "pyzmq-25.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:ed15e3a2c3c2398e6ae5ce86d6a31b452dfd6ad4cd5d312596b30929c4b6e182"}, + {file = "pyzmq-25.0.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:032f5c8483c85bf9c9ca0593a11c7c749d734ce68d435e38c3f72e759b98b3c9"}, + {file = "pyzmq-25.0.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:374b55516393bfd4d7a7daa6c3b36d6dd6a31ff9d2adad0838cd6a203125e714"}, + {file = "pyzmq-25.0.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:08bfcc21b5997a9be4fefa405341320d8e7f19b4d684fb9c0580255c5bd6d695"}, + {file = "pyzmq-25.0.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:1a843d26a8da1b752c74bc019c7b20e6791ee813cd6877449e6a1415589d22ff"}, + {file = "pyzmq-25.0.2-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:b48616a09d7df9dbae2f45a0256eee7b794b903ddc6d8657a9948669b345f220"}, + {file = "pyzmq-25.0.2-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:d4427b4a136e3b7f85516c76dd2e0756c22eec4026afb76ca1397152b0ca8145"}, + {file = "pyzmq-25.0.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:26b0358e8933990502f4513c991c9935b6c06af01787a36d133b7c39b1df37fa"}, + {file = "pyzmq-25.0.2-cp36-cp36m-win32.whl", hash = "sha256:c8fedc3ccd62c6b77dfe6f43802057a803a411ee96f14e946f4a76ec4ed0e117"}, + {file = "pyzmq-25.0.2-cp36-cp36m-win_amd64.whl", hash = "sha256:2da6813b7995b6b1d1307329c73d3e3be2fd2d78e19acfc4eff2e27262732388"}, + {file = "pyzmq-25.0.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a35960c8b2f63e4ef67fd6731851030df68e4b617a6715dd11b4b10312d19fef"}, + {file = "pyzmq-25.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eef2a0b880ab40aca5a878933376cb6c1ec483fba72f7f34e015c0f675c90b20"}, + {file = "pyzmq-25.0.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:85762712b74c7bd18e340c3639d1bf2f23735a998d63f46bb6584d904b5e401d"}, + {file = "pyzmq-25.0.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:64812f29d6eee565e129ca14b0c785744bfff679a4727137484101b34602d1a7"}, + {file = "pyzmq-25.0.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:510d8e55b3a7cd13f8d3e9121edf0a8730b87d925d25298bace29a7e7bc82810"}, + {file = "pyzmq-25.0.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b164cc3c8acb3d102e311f2eb6f3c305865ecb377e56adc015cb51f721f1dda6"}, + {file = "pyzmq-25.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:28fdb9224a258134784a9cf009b59265a9dde79582fb750d4e88a6bcbc6fa3dc"}, + {file = "pyzmq-25.0.2-cp37-cp37m-win32.whl", hash = "sha256:dd771a440effa1c36d3523bc6ba4e54ff5d2e54b4adcc1e060d8f3ca3721d228"}, + {file = "pyzmq-25.0.2-cp37-cp37m-win_amd64.whl", hash = "sha256:9bdc40efb679b9dcc39c06d25629e55581e4c4f7870a5e88db4f1c51ce25e20d"}, + {file = "pyzmq-25.0.2-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:1f82906a2d8e4ee310f30487b165e7cc8ed09c009e4502da67178b03083c4ce0"}, + {file = "pyzmq-25.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:21ec0bf4831988af43c8d66ba3ccd81af2c5e793e1bf6790eb2d50e27b3c570a"}, + {file = "pyzmq-25.0.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:abbce982a17c88d2312ec2cf7673985d444f1beaac6e8189424e0a0e0448dbb3"}, + {file = "pyzmq-25.0.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9e1d2f2d86fc75ed7f8845a992c5f6f1ab5db99747fb0d78b5e4046d041164d2"}, + {file = "pyzmq-25.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2e92ff20ad5d13266bc999a29ed29a3b5b101c21fdf4b2cf420c09db9fb690e"}, + {file = "pyzmq-25.0.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:edbbf06cc2719889470a8d2bf5072bb00f423e12de0eb9ffec946c2c9748e149"}, + {file = "pyzmq-25.0.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:77942243ff4d14d90c11b2afd8ee6c039b45a0be4e53fb6fa7f5e4fd0b59da39"}, + {file = "pyzmq-25.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ab046e9cb902d1f62c9cc0eca055b1d11108bdc271caf7c2171487298f229b56"}, + {file = "pyzmq-25.0.2-cp38-cp38-win32.whl", hash = "sha256:ad761cfbe477236802a7ab2c080d268c95e784fe30cafa7e055aacd1ca877eb0"}, + {file = "pyzmq-25.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:8560756318ec7c4c49d2c341012167e704b5a46d9034905853c3d1ade4f55bee"}, + {file = "pyzmq-25.0.2-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:ab2c056ac503f25a63f6c8c6771373e2a711b98b304614151dfb552d3d6c81f6"}, + {file = "pyzmq-25.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cca8524b61c0eaaa3505382dc9b9a3bc8165f1d6c010fdd1452c224225a26689"}, + {file = "pyzmq-25.0.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:cfb9f7eae02d3ac42fbedad30006b7407c984a0eb4189a1322241a20944d61e5"}, + {file = "pyzmq-25.0.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5eaeae038c68748082137d6896d5c4db7927e9349237ded08ee1bbd94f7361c9"}, + {file = "pyzmq-25.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a31992a8f8d51663ebf79df0df6a04ffb905063083d682d4380ab8d2c67257c"}, + {file = "pyzmq-25.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:6a979e59d2184a0c8f2ede4b0810cbdd86b64d99d9cc8a023929e40dce7c86cc"}, + {file = "pyzmq-25.0.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:1f124cb73f1aa6654d31b183810febc8505fd0c597afa127c4f40076be4574e0"}, + {file = "pyzmq-25.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:65c19a63b4a83ae45d62178b70223adeee5f12f3032726b897431b6553aa25af"}, + {file = "pyzmq-25.0.2-cp39-cp39-win32.whl", hash = "sha256:83d822e8687621bed87404afc1c03d83fa2ce39733d54c2fd52d8829edb8a7ff"}, + {file = "pyzmq-25.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:24683285cc6b7bf18ad37d75b9db0e0fefe58404e7001f1d82bf9e721806daa7"}, + {file = "pyzmq-25.0.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:4a4b4261eb8f9ed71f63b9eb0198dd7c934aa3b3972dac586d0ef502ba9ab08b"}, + {file = "pyzmq-25.0.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:62ec8d979f56c0053a92b2b6a10ff54b9ec8a4f187db2b6ec31ee3dd6d3ca6e2"}, + {file = "pyzmq-25.0.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:affec1470351178e892121b3414c8ef7803269f207bf9bef85f9a6dd11cde264"}, + {file = "pyzmq-25.0.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffc71111433bd6ec8607a37b9211f4ef42e3d3b271c6d76c813669834764b248"}, + {file = "pyzmq-25.0.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:6fadc60970714d86eff27821f8fb01f8328dd36bebd496b0564a500fe4a9e354"}, + {file = "pyzmq-25.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:269968f2a76c0513490aeb3ba0dc3c77b7c7a11daa894f9d1da88d4a0db09835"}, + {file = "pyzmq-25.0.2-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f7c8b8368e84381ae7c57f1f5283b029c888504aaf4949c32e6e6fb256ec9bf0"}, + {file = "pyzmq-25.0.2-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:25e6873a70ad5aa31e4a7c41e5e8c709296edef4a92313e1cd5fc87bbd1874e2"}, + {file = "pyzmq-25.0.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b733076ff46e7db5504c5e7284f04a9852c63214c74688bdb6135808531755a3"}, + {file = "pyzmq-25.0.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:a6f6ae12478fdc26a6d5fdb21f806b08fa5403cd02fd312e4cb5f72df078f96f"}, + {file = "pyzmq-25.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:67da1c213fbd208906ab3470cfff1ee0048838365135a9bddc7b40b11e6d6c89"}, + {file = "pyzmq-25.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:531e36d9fcd66f18de27434a25b51d137eb546931033f392e85674c7a7cea853"}, + {file = "pyzmq-25.0.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34a6fddd159ff38aa9497b2e342a559f142ab365576284bc8f77cb3ead1f79c5"}, + {file = "pyzmq-25.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b491998ef886662c1f3d49ea2198055a9a536ddf7430b051b21054f2a5831800"}, + {file = "pyzmq-25.0.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:5d496815074e3e3d183fe2c7fcea2109ad67b74084c254481f87b64e04e9a471"}, + {file = "pyzmq-25.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:56a94ab1d12af982b55ca96c6853db6ac85505e820d9458ac76364c1998972f4"}, + {file = "pyzmq-25.0.2.tar.gz", hash = "sha256:6b8c1bbb70e868dc88801aa532cae6bd4e3b5233784692b786f17ad2962e5149"}, ] requests = [ - {file = "requests-2.27.1-py2.py3-none-any.whl", hash = "sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d"}, - {file = "requests-2.27.1.tar.gz", hash = "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61"}, + {file = "requests-2.28.2-py3-none-any.whl", hash = "sha256:64299f4909223da747622c030b781c0d7811e359c37124b4bd368fb8c6518baa"}, + {file = "requests-2.28.2.tar.gz", hash = "sha256:98b1b2782e3c6c4904938b84c0eb932721069dfdb9134313beff7c83c2df24bf"}, ] responses = [ {file = "responses-0.21.0-py3-none-any.whl", hash = "sha256:2dcc863ba63963c0c3d9ee3fa9507cbe36b7d7b0fccb4f0bdfd9e96c539b1487"}, {file = "responses-0.21.0.tar.gz", hash = "sha256:b82502eb5f09a0289d8e209e7bad71ef3978334f56d09b444253d5ad67bf5253"}, ] -"ruamel.yaml" = [ +ruamel-yaml = [ {file = "ruamel.yaml-0.17.21-py3-none-any.whl", hash = "sha256:742b35d3d665023981bd6d16b3d24248ce5df75fdb4e2924e93a05c1f8b61ca7"}, {file = "ruamel.yaml-0.17.21.tar.gz", hash = "sha256:8b7ce697a2f212752a35c1ac414471dc16c424c9573be4926b56ff3f5d23b7af"}, ] -"ruamel.yaml.clib" = [ - {file = "ruamel.yaml.clib-0.2.6-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6e7be2c5bcb297f5b82fee9c665eb2eb7001d1050deaba8471842979293a80b0"}, - {file = "ruamel.yaml.clib-0.2.6-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:066f886bc90cc2ce44df8b5f7acfc6a7e2b2e672713f027136464492b0c34d7c"}, - {file = "ruamel.yaml.clib-0.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:221eca6f35076c6ae472a531afa1c223b9c29377e62936f61bc8e6e8bdc5f9e7"}, - {file = "ruamel.yaml.clib-0.2.6-cp310-cp310-win32.whl", hash = "sha256:1070ba9dd7f9370d0513d649420c3b362ac2d687fe78c6e888f5b12bf8bc7bee"}, - {file = "ruamel.yaml.clib-0.2.6-cp310-cp310-win_amd64.whl", hash = "sha256:77df077d32921ad46f34816a9a16e6356d8100374579bc35e15bab5d4e9377de"}, - {file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-macosx_10_6_intel.whl", hash = "sha256:cfdb9389d888c5b74af297e51ce357b800dd844898af9d4a547ffc143fa56751"}, - {file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:7b2927e92feb51d830f531de4ccb11b320255ee95e791022555971c466af4527"}, - {file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-win32.whl", hash = "sha256:ada3f400d9923a190ea8b59c8f60680c4ef8a4b0dfae134d2f2ff68429adfab5"}, - {file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-win_amd64.whl", hash = "sha256:de9c6b8a1ba52919ae919f3ae96abb72b994dd0350226e28f3686cb4f142165c"}, - {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d67f273097c368265a7b81e152e07fb90ed395df6e552b9fa858c6d2c9f42502"}, - {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:72a2b8b2ff0a627496aad76f37a652bcef400fd861721744201ef1b45199ab78"}, - {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:d3c620a54748a3d4cf0bcfe623e388407c8e85a4b06b8188e126302bcab93ea8"}, - {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-win32.whl", hash = "sha256:9efef4aab5353387b07f6b22ace0867032b900d8e91674b5d8ea9150db5cae94"}, - {file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-win_amd64.whl", hash = "sha256:846fc8336443106fe23f9b6d6b8c14a53d38cef9a375149d61f99d78782ea468"}, - {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0847201b767447fc33b9c235780d3aa90357d20dd6108b92be544427bea197dd"}, - {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:78988ed190206672da0f5d50c61afef8f67daa718d614377dcd5e3ed85ab4a99"}, - {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:210c8fcfeff90514b7133010bf14e3bad652c8efde6b20e00c43854bf94fa5a6"}, - {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-win32.whl", hash = "sha256:a49e0161897901d1ac9c4a79984b8410f450565bbad64dbfcbf76152743a0cdb"}, - {file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-win_amd64.whl", hash = "sha256:bf75d28fa071645c529b5474a550a44686821decebdd00e21127ef1fd566eabe"}, - {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a32f8d81ea0c6173ab1b3da956869114cae53ba1e9f72374032e33ba3118c233"}, - {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7f7ecb53ae6848f959db6ae93bdff1740e651809780822270eab111500842a84"}, - {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:61bc5e5ca632d95925907c569daa559ea194a4d16084ba86084be98ab1cec1c6"}, - {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-win32.whl", hash = "sha256:89221ec6d6026f8ae859c09b9718799fea22c0e8da8b766b0b2c9a9ba2db326b"}, - {file = "ruamel.yaml.clib-0.2.6-cp38-cp38-win_amd64.whl", hash = "sha256:31ea73e564a7b5fbbe8188ab8b334393e06d997914a4e184975348f204790277"}, - {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dc6a613d6c74eef5a14a214d433d06291526145431c3b964f5e16529b1842bed"}, - {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:1866cf2c284a03b9524a5cc00daca56d80057c5ce3cdc86a52020f4c720856f0"}, - {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:1b4139a6ffbca8ef60fdaf9b33dec05143ba746a6f0ae0f9d11d38239211d335"}, - {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-win32.whl", hash = "sha256:3fb9575a5acd13031c57a62cc7823e5d2ff8bc3835ba4d94b921b4e6ee664104"}, - {file = "ruamel.yaml.clib-0.2.6-cp39-cp39-win_amd64.whl", hash = "sha256:825d5fccef6da42f3c8eccd4281af399f21c02b32d98e113dbc631ea6a6ecbc7"}, - {file = "ruamel.yaml.clib-0.2.6.tar.gz", hash = "sha256:4ff604ce439abb20794f05613c374759ce10e3595d1867764dd1ae675b85acbd"}, +ruamel-yaml-clib = [ + {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d5859983f26d8cd7bb5c287ef452e8aacc86501487634573d260968f753e1d71"}, + {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:debc87a9516b237d0466a711b18b6ebeb17ba9f391eb7f91c649c5c4ec5006c7"}, + {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:df5828871e6648db72d1c19b4bd24819b80a755c4541d3409f0f7acd0f335c80"}, + {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:efa08d63ef03d079dcae1dfe334f6c8847ba8b645d08df286358b1f5293d24ab"}, + {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-win32.whl", hash = "sha256:763d65baa3b952479c4e972669f679fe490eee058d5aa85da483ebae2009d231"}, + {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-win_amd64.whl", hash = "sha256:d000f258cf42fec2b1bbf2863c61d7b8918d31ffee905da62dede869254d3b8a"}, + {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:045e0626baf1c52e5527bd5db361bc83180faaba2ff586e763d3d5982a876a9e"}, + {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-macosx_12_6_arm64.whl", hash = "sha256:721bc4ba4525f53f6a611ec0967bdcee61b31df5a56801281027a3a6d1c2daf5"}, + {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:41d0f1fa4c6830176eef5b276af04c89320ea616655d01327d5ce65e50575c94"}, + {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-win32.whl", hash = "sha256:f6d3d39611ac2e4f62c3128a9eed45f19a6608670c5a2f4f07f24e8de3441d38"}, + {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-win_amd64.whl", hash = "sha256:da538167284de58a52109a9b89b8f6a53ff8437dd6dc26d33b57bf6699153122"}, + {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:4b3a93bb9bc662fc1f99c5c3ea8e623d8b23ad22f861eb6fce9377ac07ad6072"}, + {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-macosx_12_0_arm64.whl", hash = "sha256:a234a20ae07e8469da311e182e70ef6b199d0fbeb6c6cc2901204dd87fb867e8"}, + {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:15910ef4f3e537eea7fe45f8a5d19997479940d9196f357152a09031c5be59f3"}, + {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:370445fd795706fd291ab00c9df38a0caed0f17a6fb46b0f607668ecb16ce763"}, + {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-win32.whl", hash = "sha256:ecdf1a604009bd35c674b9225a8fa609e0282d9b896c03dd441a91e5f53b534e"}, + {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-win_amd64.whl", hash = "sha256:f34019dced51047d6f70cb9383b2ae2853b7fc4dce65129a5acd49f4f9256646"}, + {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:2aa261c29a5545adfef9296b7e33941f46aa5bbd21164228e833412af4c9c75f"}, + {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-macosx_12_0_arm64.whl", hash = "sha256:f01da5790e95815eb5a8a138508c01c758e5f5bc0ce4286c4f7028b8dd7ac3d0"}, + {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:40d030e2329ce5286d6b231b8726959ebbe0404c92f0a578c0e2482182e38282"}, + {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:c3ca1fbba4ae962521e5eb66d72998b51f0f4d0f608d3c0347a48e1af262efa7"}, + {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-win32.whl", hash = "sha256:7bdb4c06b063f6fd55e472e201317a3bb6cdeeee5d5a38512ea5c01e1acbdd93"}, + {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-win_amd64.whl", hash = "sha256:be2a7ad8fd8f7442b24323d24ba0b56c51219513cfa45b9ada3b87b76c374d4b"}, + {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:91a789b4aa0097b78c93e3dc4b40040ba55bef518f84a40d4442f713b4094acb"}, + {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:99e77daab5d13a48a4054803d052ff40780278240a902b880dd37a51ba01a307"}, + {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:3243f48ecd450eddadc2d11b5feb08aca941b5cd98c9b1db14b2fd128be8c697"}, + {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:8831a2cedcd0f0927f788c5bdf6567d9dc9cc235646a434986a852af1cb54b4b"}, + {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-win32.whl", hash = "sha256:3110a99e0f94a4a3470ff67fc20d3f96c25b13d24c6980ff841e82bafe827cac"}, + {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-win_amd64.whl", hash = "sha256:92460ce908546ab69770b2e576e4f99fbb4ce6ab4b245345a3869a0a0410488f"}, + {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5bc0667c1eb8f83a3752b71b9c4ba55ef7c7058ae57022dd9b29065186a113d9"}, + {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:4a4d8d417868d68b979076a9be6a38c676eca060785abaa6709c7b31593c35d1"}, + {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:bf9a6bc4a0221538b1a7de3ed7bca4c93c02346853f44e1cd764be0023cd3640"}, + {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:a7b301ff08055d73223058b5c46c55638917f04d21577c95e00e0c4d79201a6b"}, + {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-win32.whl", hash = "sha256:d5e51e2901ec2366b79f16c2299a03e74ba4531ddcfacc1416639c557aef0ad8"}, + {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-win_amd64.whl", hash = "sha256:184faeaec61dbaa3cace407cffc5819f7b977e75360e8d5ca19461cd851a5fc5"}, + {file = "ruamel.yaml.clib-0.2.7.tar.gz", hash = "sha256:1f08fd5a2bea9c4180db71678e850b995d2a5f4537be0e94557668cf0f5f9497"}, ] setuptools = [ - {file = "setuptools-65.5.1-py3-none-any.whl", hash = "sha256:d0b9a8433464d5800cbe05094acf5c6d52a91bfac9b52bcfc4d41382be5d5d31"}, - {file = "setuptools-65.5.1.tar.gz", hash = "sha256:e197a19aa8ec9722928f2206f8de752def0e4c9fc6953527360d1c36d94ddb2f"}, + {file = "setuptools-67.6.1-py3-none-any.whl", hash = "sha256:e728ca814a823bf7bf60162daf9db95b93d532948c4c0bea762ce62f60189078"}, + {file = "setuptools-67.6.1.tar.gz", hash = "sha256:257de92a9d50a60b8e22abfcbb771571fde0dbf3ec234463212027a4eeecbe9a"}, ] six = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, @@ -2344,55 +2472,59 @@ snowballstemmer = [ {file = "snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1"}, ] soupsieve = [ - {file = "soupsieve-2.3.2.post1-py3-none-any.whl", hash = "sha256:3b2503d3c7084a42b1ebd08116e5f81aadfaea95863628c80a3b774a11b7c759"}, - {file = "soupsieve-2.3.2.post1.tar.gz", hash = "sha256:fc53893b3da2c33de295667a0e19f078c14bf86544af307354de5fcf12a3f30d"}, + {file = "soupsieve-2.4-py3-none-any.whl", hash = "sha256:49e5368c2cda80ee7e84da9dbe3e110b70a4575f196efb74e51b94549d921955"}, + {file = "soupsieve-2.4.tar.gz", hash = "sha256:e28dba9ca6c7c00173e34e4ba57448f0688bb681b7c5e8bf4971daafc093d69a"}, ] sphinx = [ {file = "Sphinx-4.5.0-py3-none-any.whl", hash = "sha256:ebf612653238bcc8f4359627a9b7ce44ede6fdd75d9d30f68255c7383d3a6226"}, {file = "Sphinx-4.5.0.tar.gz", hash = "sha256:7bf8ca9637a4ee15af412d1a1d9689fec70523a68ca9bb9127c2f3eeb344e2e6"}, ] sphinx-argparse = [ - {file = "sphinx-argparse-0.3.1.tar.gz", hash = "sha256:82151cbd43ccec94a1530155f4ad34f251aaca6a0ffd5516d7fadf952d32dc1e"}, - {file = "sphinx_argparse-0.3.1-py2.py3-none-any.whl", hash = "sha256:295ccae425874630b6a3b47254854027345d786bab2c3ffd5e9a0407bc6856b2"}, + {file = "sphinx-argparse-0.3.2.tar.gz", hash = "sha256:e54ad6c8f895ac6bb9d0dd9fa07e47e137a2a42ae18a714515262e86b4cc4bab"}, + {file = "sphinx_argparse-0.3.2-py3-none-any.whl", hash = "sha256:499afb62d19966651e1e5d601ac912ca2bdfb43f5dad491305d84bef4414f4f4"}, ] sphinx-autobuild = [ {file = "sphinx-autobuild-2021.3.14.tar.gz", hash = "sha256:de1ca3b66e271d2b5b5140c35034c89e47f263f2cd5db302c9217065f7443f05"}, {file = "sphinx_autobuild-2021.3.14-py3-none-any.whl", hash = "sha256:8fe8cbfdb75db04475232f05187c776f46f6e9e04cacf1e49ce81bdac649ccac"}, ] sphinx-autodoc-typehints = [ - {file = "sphinx_autodoc_typehints-1.18.3-py3-none-any.whl", hash = "sha256:20294de2a818bda04953c5cb302ec5af46138c81980ad9efa6d8fc1fc4242518"}, - {file = "sphinx_autodoc_typehints-1.18.3.tar.gz", hash = "sha256:c04d8f8d70e988960e25b206af39a90df84e7e2c085bb24e123bc3684021b313"}, + {file = "sphinx_autodoc_typehints-1.19.1-py3-none-any.whl", hash = "sha256:9be46aeeb1b315eb5df1f3a7cb262149895d16c7d7dcd77b92513c3c3a1e85e6"}, + {file = "sphinx_autodoc_typehints-1.19.1.tar.gz", hash = "sha256:6c841db55e0e9be0483ff3962a2152b60e79306f4288d8c4e7e86ac84486a5ea"}, ] sphinx-jinja2-compat = [ - {file = "sphinx_jinja2_compat-0.1.2-py3-none-any.whl", hash = "sha256:6fd822875a3b6850657423ecd496ed578c124e078169442f2c6d0908124dbd38"}, - {file = "sphinx_jinja2_compat-0.1.2.tar.gz", hash = "sha256:6848882c1841a182c9cb41cfddb2f711b308fe088991cee349d1aad527a96956"}, + {file = "sphinx_jinja2_compat-0.2.0-py3-none-any.whl", hash = "sha256:a5f3112d6873991c2cf28e37287163a0485d9c0812863b8aa4df7182722501fb"}, + {file = "sphinx_jinja2_compat-0.2.0.tar.gz", hash = "sha256:c41346d859653e202b623f4236da8936243ed734abf5984adc3bef59d6f9a946"}, ] sphinx-prompt = [ {file = "sphinx_prompt-1.5.0-py3-none-any.whl", hash = "sha256:fa4e90d8088b5a996c76087d701fc7e31175f8b9dc4aab03a507e45051067162"}, ] sphinx-rtd-theme = [ - {file = "sphinx_rtd_theme-1.0.0-py2.py3-none-any.whl", hash = "sha256:4d35a56f4508cfee4c4fb604373ede6feae2a306731d533f409ef5c3496fdbd8"}, - {file = "sphinx_rtd_theme-1.0.0.tar.gz", hash = "sha256:eec6d497e4c2195fa0e8b2016b337532b8a699a68bcb22a512870e16925c6a5c"}, + {file = "sphinx_rtd_theme-1.2.0-py2.py3-none-any.whl", hash = "sha256:f823f7e71890abe0ac6aaa6013361ea2696fc8d3e1fa798f463e82bdb77eeff2"}, + {file = "sphinx_rtd_theme-1.2.0.tar.gz", hash = "sha256:a0d8bd1a2ed52e0b338cbe19c4b2eef3c5e7a048769753dac6a9f059c7b641b8"}, ] sphinx-tabs = [ - {file = "sphinx-tabs-3.3.1.tar.gz", hash = "sha256:d10dd7fb2700329b8e5948ab9f8e3ef54fff30f79d2e42cfd1b0089ae26e8c5e"}, - {file = "sphinx_tabs-3.3.1-py3-none-any.whl", hash = "sha256:73209aa769246501f6de9e33051cfd2d54f5900e0cc28a63367d8e4af4c0db5d"}, + {file = "sphinx-tabs-3.4.0.tar.gz", hash = "sha256:75e97ce10b74700deaf87b662539a293c8afc9dfa9d21f126b860118064cb0c5"}, + {file = "sphinx_tabs-3.4.0-py3-none-any.whl", hash = "sha256:31dbe7594b5ef4cfa76a7960448d4607dca167ff21467000213920572c302072"}, ] sphinx-toolbox = [ - {file = "sphinx_toolbox-3.1.2-py3-none-any.whl", hash = "sha256:71b615c135ac993dd8cc4b7d291888ad2f5437049071f2299152dbae69a1db41"}, - {file = "sphinx_toolbox-3.1.2.tar.gz", hash = "sha256:c05860b44e9ad17d16df52a594736839190ded72e55bb38e80f4972afea47b74"}, + {file = "sphinx_toolbox-3.4.0-py3-none-any.whl", hash = "sha256:cdf70facee515a2d9406d568a253fa3e89f930fde23c4e8095ba0c675f7c0a48"}, + {file = "sphinx_toolbox-3.4.0.tar.gz", hash = "sha256:e1cf2a3dea5ce80e175a6a9cee8b5b2792240ecf6c28993d87a63b6fcf606293"}, ] sphinxcontrib-applehelp = [ - {file = "sphinxcontrib-applehelp-1.0.2.tar.gz", hash = "sha256:a072735ec80e7675e3f432fcae8610ecf509c5f1869d17e2eecff44389cdbc58"}, - {file = "sphinxcontrib_applehelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:806111e5e962be97c29ec4c1e7fe277bfd19e9652fb1a4392105b43e01af885a"}, + {file = "sphinxcontrib-applehelp-1.0.4.tar.gz", hash = "sha256:828f867945bbe39817c210a1abfd1bc4895c8b73fcaade56d45357a348a07d7e"}, + {file = "sphinxcontrib_applehelp-1.0.4-py3-none-any.whl", hash = "sha256:29d341f67fb0f6f586b23ad80e072c8e6ad0b48417db2bde114a4c9746feb228"}, ] sphinxcontrib-devhelp = [ {file = "sphinxcontrib-devhelp-1.0.2.tar.gz", hash = "sha256:ff7f1afa7b9642e7060379360a67e9c41e8f3121f2ce9164266f61b9f4b338e4"}, {file = "sphinxcontrib_devhelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:8165223f9a335cc1af7ffe1ed31d2871f325254c0423bc0c4c7cd1c1e4734a2e"}, ] sphinxcontrib-htmlhelp = [ - {file = "sphinxcontrib-htmlhelp-2.0.0.tar.gz", hash = "sha256:f5f8bb2d0d629f398bf47d0d69c07bc13b65f75a81ad9e2f71a63d4b7a2f6db2"}, - {file = "sphinxcontrib_htmlhelp-2.0.0-py2.py3-none-any.whl", hash = "sha256:d412243dfb797ae3ec2b59eca0e52dac12e75a241bf0e4eb861e450d06c6ed07"}, + {file = "sphinxcontrib-htmlhelp-2.0.1.tar.gz", hash = "sha256:0cbdd302815330058422b98a113195c9249825d681e18f11e8b1f78a2f11efff"}, + {file = "sphinxcontrib_htmlhelp-2.0.1-py3-none-any.whl", hash = "sha256:c38cb46dccf316c79de6e5515e1770414b797162b23cd3d06e67020e1d2a6903"}, +] +sphinxcontrib-jquery = [ + {file = "sphinxcontrib-jquery-4.1.tar.gz", hash = "sha256:1620739f04e36a2c779f1a131a2dfd49b2fd07351bf1968ced074365933abc7a"}, + {file = "sphinxcontrib_jquery-4.1-py2.py3-none-any.whl", hash = "sha256:f936030d7d0147dd026a4f2b5a57343d233f1fc7b363f68b3d4f1cb0993878ae"}, ] sphinxcontrib-jsmath = [ {file = "sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8"}, @@ -2407,12 +2539,12 @@ sphinxcontrib-serializinghtml = [ {file = "sphinxcontrib_serializinghtml-1.1.5-py2.py3-none-any.whl", hash = "sha256:352a9a00ae864471d3a7ead8d7d79f5fc0b57e8b3f95e9867eb9eb28999b92fd"}, ] stack-data = [ - {file = "stack_data-0.6.1-py3-none-any.whl", hash = "sha256:960cb054d6a1b2fdd9cbd529e365b3c163e8dabf1272e02cfe36b58403cff5c6"}, - {file = "stack_data-0.6.1.tar.gz", hash = "sha256:6c9a10eb5f342415fe085db551d673955611afb821551f554d91772415464315"}, + {file = "stack_data-0.6.2-py3-none-any.whl", hash = "sha256:cbb2a53eb64e5785878201a97ed7c7b94883f48b87bfb0bbe8b623c74679e4a8"}, + {file = "stack_data-0.6.2.tar.gz", hash = "sha256:32d2dd0376772d01b6cb9fc996f3c8b57a357089dec328ed4b6553d037eaf815"}, ] tabulate = [ - {file = "tabulate-0.8.9-py3-none-any.whl", hash = "sha256:d7c013fe7abbc5e491394e10fa845f8f32fe54f8dc60c6622c6cf482d25d47e4"}, - {file = "tabulate-0.8.9.tar.gz", hash = "sha256:eb1d13f25760052e8931f2ef80aaf6045a6cceb47514db8beab24cded16f13a7"}, + {file = "tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f"}, + {file = "tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c"}, ] toml = [ {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, @@ -2423,151 +2555,132 @@ tomli = [ {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, ] tomlkit = [ - {file = "tomlkit-0.11.0-py3-none-any.whl", hash = "sha256:0f4050db66fd445b885778900ce4dd9aea8c90c4721141fde0d6ade893820ef1"}, - {file = "tomlkit-0.11.0.tar.gz", hash = "sha256:71ceb10c0eefd8b8f11fe34e8a51ad07812cb1dc3de23247425fbc9ddc47b9dd"}, + {file = "tomlkit-0.11.7-py3-none-any.whl", hash = "sha256:5325463a7da2ef0c6bbfefb62a3dc883aebe679984709aee32a317907d0a8d3c"}, + {file = "tomlkit-0.11.7.tar.gz", hash = "sha256:f392ef70ad87a672f02519f99967d28a4d3047133e2d1df936511465fbb3791d"}, ] tornado = [ - {file = "tornado-6.1-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:d371e811d6b156d82aa5f9a4e08b58debf97c302a35714f6f45e35139c332e32"}, - {file = "tornado-6.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:0d321a39c36e5f2c4ff12b4ed58d41390460f798422c4504e09eb5678e09998c"}, - {file = "tornado-6.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9de9e5188a782be6b1ce866e8a51bc76a0fbaa0e16613823fc38e4fc2556ad05"}, - {file = "tornado-6.1-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:61b32d06ae8a036a6607805e6720ef00a3c98207038444ba7fd3d169cd998910"}, - {file = "tornado-6.1-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:3e63498f680547ed24d2c71e6497f24bca791aca2fe116dbc2bd0ac7f191691b"}, - {file = "tornado-6.1-cp35-cp35m-manylinux2014_aarch64.whl", hash = "sha256:6c77c9937962577a6a76917845d06af6ab9197702a42e1346d8ae2e76b5e3675"}, - {file = "tornado-6.1-cp35-cp35m-win32.whl", hash = "sha256:6286efab1ed6e74b7028327365cf7346b1d777d63ab30e21a0f4d5b275fc17d5"}, - {file = "tornado-6.1-cp35-cp35m-win_amd64.whl", hash = "sha256:fa2ba70284fa42c2a5ecb35e322e68823288a4251f9ba9cc77be04ae15eada68"}, - {file = "tornado-6.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:0a00ff4561e2929a2c37ce706cb8233b7907e0cdc22eab98888aca5dd3775feb"}, - {file = "tornado-6.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:748290bf9112b581c525e6e6d3820621ff020ed95af6f17fedef416b27ed564c"}, - {file = "tornado-6.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:e385b637ac3acaae8022e7e47dfa7b83d3620e432e3ecb9a3f7f58f150e50921"}, - {file = "tornado-6.1-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:25ad220258349a12ae87ede08a7b04aca51237721f63b1808d39bdb4b2164558"}, - {file = "tornado-6.1-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:65d98939f1a2e74b58839f8c4dab3b6b3c1ce84972ae712be02845e65391ac7c"}, - {file = "tornado-6.1-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:e519d64089b0876c7b467274468709dadf11e41d65f63bba207e04217f47c085"}, - {file = "tornado-6.1-cp36-cp36m-win32.whl", hash = "sha256:b87936fd2c317b6ee08a5741ea06b9d11a6074ef4cc42e031bc6403f82a32575"}, - {file = "tornado-6.1-cp36-cp36m-win_amd64.whl", hash = "sha256:cc0ee35043162abbf717b7df924597ade8e5395e7b66d18270116f8745ceb795"}, - {file = "tornado-6.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:7250a3fa399f08ec9cb3f7b1b987955d17e044f1ade821b32e5f435130250d7f"}, - {file = "tornado-6.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:ed3ad863b1b40cd1d4bd21e7498329ccaece75db5a5bf58cd3c9f130843e7102"}, - {file = "tornado-6.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:dcef026f608f678c118779cd6591c8af6e9b4155c44e0d1bc0c87c036fb8c8c4"}, - {file = "tornado-6.1-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:70dec29e8ac485dbf57481baee40781c63e381bebea080991893cd297742b8fd"}, - {file = "tornado-6.1-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:d3f7594930c423fd9f5d1a76bee85a2c36fd8b4b16921cae7e965f22575e9c01"}, - {file = "tornado-6.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:3447475585bae2e77ecb832fc0300c3695516a47d46cefa0528181a34c5b9d3d"}, - {file = "tornado-6.1-cp37-cp37m-win32.whl", hash = "sha256:e7229e60ac41a1202444497ddde70a48d33909e484f96eb0da9baf8dc68541df"}, - {file = "tornado-6.1-cp37-cp37m-win_amd64.whl", hash = "sha256:cb5ec8eead331e3bb4ce8066cf06d2dfef1bfb1b2a73082dfe8a161301b76e37"}, - {file = "tornado-6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:20241b3cb4f425e971cb0a8e4ffc9b0a861530ae3c52f2b0434e6c1b57e9fd95"}, - {file = "tornado-6.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:c77da1263aa361938476f04c4b6c8916001b90b2c2fdd92d8d535e1af48fba5a"}, - {file = "tornado-6.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:fba85b6cd9c39be262fcd23865652920832b61583de2a2ca907dbd8e8a8c81e5"}, - {file = "tornado-6.1-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:1e8225a1070cd8eec59a996c43229fe8f95689cb16e552d130b9793cb570a288"}, - {file = "tornado-6.1-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:d14d30e7f46a0476efb0deb5b61343b1526f73ebb5ed84f23dc794bdb88f9d9f"}, - {file = "tornado-6.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:8f959b26f2634a091bb42241c3ed8d3cedb506e7c27b8dd5c7b9f745318ddbb6"}, - {file = "tornado-6.1-cp38-cp38-win32.whl", hash = "sha256:34ca2dac9e4d7afb0bed4677512e36a52f09caa6fded70b4e3e1c89dbd92c326"}, - {file = "tornado-6.1-cp38-cp38-win_amd64.whl", hash = "sha256:6196a5c39286cc37c024cd78834fb9345e464525d8991c21e908cc046d1cc02c"}, - {file = "tornado-6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f0ba29bafd8e7e22920567ce0d232c26d4d47c8b5cf4ed7b562b5db39fa199c5"}, - {file = "tornado-6.1-cp39-cp39-manylinux1_i686.whl", hash = "sha256:33892118b165401f291070100d6d09359ca74addda679b60390b09f8ef325ffe"}, - {file = "tornado-6.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:7da13da6f985aab7f6f28debab00c67ff9cbacd588e8477034c0652ac141feea"}, - {file = "tornado-6.1-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:e0791ac58d91ac58f694d8d2957884df8e4e2f6687cdf367ef7eb7497f79eaa2"}, - {file = "tornado-6.1-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:66324e4e1beede9ac79e60f88de548da58b1f8ab4b2f1354d8375774f997e6c0"}, - {file = "tornado-6.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:a48900ecea1cbb71b8c71c620dee15b62f85f7c14189bdeee54966fbd9a0c5bd"}, - {file = "tornado-6.1-cp39-cp39-win32.whl", hash = "sha256:d3d20ea5782ba63ed13bc2b8c291a053c8d807a8fa927d941bd718468f7b950c"}, - {file = "tornado-6.1-cp39-cp39-win_amd64.whl", hash = "sha256:548430be2740e327b3fe0201abe471f314741efcb0067ec4f2d7dcfb4825f3e4"}, - {file = "tornado-6.1.tar.gz", hash = "sha256:33c6e81d7bd55b468d2e793517c909b139960b6c790a60b7991b9b6b76fb9791"}, + {file = "tornado-6.2-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:20f638fd8cc85f3cbae3c732326e96addff0a15e22d80f049e00121651e82e72"}, + {file = "tornado-6.2-cp37-abi3-macosx_10_9_x86_64.whl", hash = "sha256:87dcafae3e884462f90c90ecc200defe5e580a7fbbb4365eda7c7c1eb809ebc9"}, + {file = "tornado-6.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba09ef14ca9893954244fd872798b4ccb2367c165946ce2dd7376aebdde8e3ac"}, + {file = "tornado-6.2-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b8150f721c101abdef99073bf66d3903e292d851bee51910839831caba341a75"}, + {file = "tornado-6.2-cp37-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3a2f5999215a3a06a4fc218026cd84c61b8b2b40ac5296a6db1f1451ef04c1e"}, + {file = "tornado-6.2-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:5f8c52d219d4995388119af7ccaa0bcec289535747620116a58d830e7c25d8a8"}, + {file = "tornado-6.2-cp37-abi3-musllinux_1_1_i686.whl", hash = "sha256:6fdfabffd8dfcb6cf887428849d30cf19a3ea34c2c248461e1f7d718ad30b66b"}, + {file = "tornado-6.2-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:1d54d13ab8414ed44de07efecb97d4ef7c39f7438cf5e976ccd356bebb1b5fca"}, + {file = "tornado-6.2-cp37-abi3-win32.whl", hash = "sha256:5c87076709343557ef8032934ce5f637dbb552efa7b21d08e89ae7619ed0eb23"}, + {file = "tornado-6.2-cp37-abi3-win_amd64.whl", hash = "sha256:e5f923aa6a47e133d1cf87d60700889d7eae68988704e20c75fb2d65677a8e4b"}, + {file = "tornado-6.2.tar.gz", hash = "sha256:9b630419bde84ec666bfd7ea0a4cb2a8a651c2d5cccdbdd1972a0c859dfc3c13"}, ] traitlets = [ - {file = "traitlets-5.5.0-py3-none-any.whl", hash = "sha256:1201b2c9f76097195989cdf7f65db9897593b0dfd69e4ac96016661bb6f0d30f"}, - {file = "traitlets-5.5.0.tar.gz", hash = "sha256:b122f9ff2f2f6c1709dab289a05555be011c87828e911c0cf4074b85cb780a79"}, + {file = "traitlets-5.9.0-py3-none-any.whl", hash = "sha256:9e6ec080259b9a5940c797d58b613b5e31441c2257b87c2e795c5228ae80d2d8"}, + {file = "traitlets-5.9.0.tar.gz", hash = "sha256:f6cde21a9c68cf756af02035f72d5a723bf607e862e7be33ece505abf4a3bad9"}, ] types-requests = [ - {file = "types-requests-2.27.27.tar.gz", hash = "sha256:d618d9809fa32f514cf17cea8460814da671c56366fb1c908accca8bf183112b"}, - {file = "types_requests-2.27.27-py3-none-any.whl", hash = "sha256:6d8463ffe1f6edcf2e5361740a6140e7a16d427c267d83c7c1d3d1298f4e67c5"}, + {file = "types-requests-2.28.11.17.tar.gz", hash = "sha256:0d580652ce903f643f8c3b494dd01d29367ea57cea0c7ad7f65cf3169092edb0"}, + {file = "types_requests-2.28.11.17-py3-none-any.whl", hash = "sha256:cc1aba862575019306b2ed134eb1ea994cab1c887a22e18d3383e6dd42e9789b"}, ] types-urllib3 = [ - {file = "types-urllib3-1.26.14.tar.gz", hash = "sha256:2a2578e4b36341ccd240b00fccda9826988ff0589a44ba4a664bbd69ef348d27"}, - {file = "types_urllib3-1.26.14-py3-none-any.whl", hash = "sha256:5d2388aa76395b1e3999ff789ea5b3283677dad8e9bcf3d9117ba19271fd35d9"}, + {file = "types-urllib3-1.26.25.10.tar.gz", hash = "sha256:c44881cde9fc8256d05ad6b21f50c4681eb20092552351570ab0a8a0653286d6"}, + {file = "types_urllib3-1.26.25.10-py3-none-any.whl", hash = "sha256:12c744609d588340a07e45d333bf870069fc8793bcf96bae7a96d4712a42591d"}, ] typing-extensions = [ - {file = "typing_extensions-4.2.0-py3-none-any.whl", hash = "sha256:6657594ee297170d19f67d55c05852a874e7eb634f4f753dbd667855e07c1708"}, - {file = "typing_extensions-4.2.0.tar.gz", hash = "sha256:f1c24655a0da0d1b67f07e17a5e6b2a105894e6824b92096378bb3668ef02376"}, + {file = "typing_extensions-4.5.0-py3-none-any.whl", hash = "sha256:fb33085c39dd998ac16d1431ebc293a8b3eedd00fd4a32de0ff79002c19511b4"}, + {file = "typing_extensions-4.5.0.tar.gz", hash = "sha256:5cb5f4a79139d699607b3ef622a1dedafa84e115ab0024e0d9c044a9479ca7cb"}, ] urllib3 = [ - {file = "urllib3-1.26.9-py2.py3-none-any.whl", hash = "sha256:44ece4d53fb1706f667c9bd1c648f5469a2ec925fcf3a776667042d645472c14"}, - {file = "urllib3-1.26.9.tar.gz", hash = "sha256:aabaf16477806a5e1dd19aa41f8c2b7950dd3c746362d7e3223dbe6de6ac448e"}, + {file = "urllib3-1.26.15-py2.py3-none-any.whl", hash = "sha256:aa751d169e23c7479ce47a0cb0da579e3ede798f994f5816a74e4f4500dcea42"}, + {file = "urllib3-1.26.15.tar.gz", hash = "sha256:8a388717b9476f934a21484e8c8e61875ab60644d29b9b39e11e4b9dc1c6b305"}, ] virtualenv = [ - {file = "virtualenv-20.14.1-py2.py3-none-any.whl", hash = "sha256:e617f16e25b42eb4f6e74096b9c9e37713cf10bf30168fb4a739f3fa8f898a3a"}, - {file = "virtualenv-20.14.1.tar.gz", hash = "sha256:ef589a79795589aada0c1c5b319486797c03b67ac3984c48c669c0e4f50df3a5"}, + {file = "virtualenv-20.21.0-py3-none-any.whl", hash = "sha256:31712f8f2a17bd06234fa97fdf19609e789dd4e3e4bf108c3da71d710651adbc"}, + {file = "virtualenv-20.21.0.tar.gz", hash = "sha256:f50e3e60f990a0757c9b68333c9fdaa72d7188caa417f96af9e52407831a3b68"}, ] wcwidth = [ - {file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"}, - {file = "wcwidth-0.2.5.tar.gz", hash = "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"}, + {file = "wcwidth-0.2.6-py2.py3-none-any.whl", hash = "sha256:795b138f6875577cd91bba52baf9e445cd5118fd32723b460e30a0af30ea230e"}, + {file = "wcwidth-0.2.6.tar.gz", hash = "sha256:a5220780a404dbe3353789870978e472cfe477761f06ee55077256e509b156d0"}, ] webencodings = [ {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, ] wrapt = [ - {file = "wrapt-1.14.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:1b376b3f4896e7930f1f772ac4b064ac12598d1c38d04907e696cc4d794b43d3"}, - {file = "wrapt-1.14.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:903500616422a40a98a5a3c4ff4ed9d0066f3b4c951fa286018ecdf0750194ef"}, - {file = "wrapt-1.14.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:5a9a0d155deafd9448baff28c08e150d9b24ff010e899311ddd63c45c2445e28"}, - {file = "wrapt-1.14.1-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:ddaea91abf8b0d13443f6dac52e89051a5063c7d014710dcb4d4abb2ff811a59"}, - {file = "wrapt-1.14.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:36f582d0c6bc99d5f39cd3ac2a9062e57f3cf606ade29a0a0d6b323462f4dd87"}, - {file = "wrapt-1.14.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:7ef58fb89674095bfc57c4069e95d7a31cfdc0939e2a579882ac7d55aadfd2a1"}, - {file = "wrapt-1.14.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:e2f83e18fe2f4c9e7db597e988f72712c0c3676d337d8b101f6758107c42425b"}, - {file = "wrapt-1.14.1-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:ee2b1b1769f6707a8a445162ea16dddf74285c3964f605877a20e38545c3c462"}, - {file = "wrapt-1.14.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:833b58d5d0b7e5b9832869f039203389ac7cbf01765639c7309fd50ef619e0b1"}, - {file = "wrapt-1.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:80bb5c256f1415f747011dc3604b59bc1f91c6e7150bd7db03b19170ee06b320"}, - {file = "wrapt-1.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07f7a7d0f388028b2df1d916e94bbb40624c59b48ecc6cbc232546706fac74c2"}, - {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02b41b633c6261feff8ddd8d11c711df6842aba629fdd3da10249a53211a72c4"}, - {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2fe803deacd09a233e4762a1adcea5db5d31e6be577a43352936179d14d90069"}, - {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:257fd78c513e0fb5cdbe058c27a0624c9884e735bbd131935fd49e9fe719d310"}, - {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4fcc4649dc762cddacd193e6b55bc02edca674067f5f98166d7713b193932b7f"}, - {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:11871514607b15cfeb87c547a49bca19fde402f32e2b1c24a632506c0a756656"}, - {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8ad85f7f4e20964db4daadcab70b47ab05c7c1cf2a7c1e51087bfaa83831854c"}, - {file = "wrapt-1.14.1-cp310-cp310-win32.whl", hash = "sha256:a9a52172be0b5aae932bef82a79ec0a0ce87288c7d132946d645eba03f0ad8a8"}, - {file = "wrapt-1.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:6d323e1554b3d22cfc03cd3243b5bb815a51f5249fdcbb86fda4bf62bab9e164"}, - {file = "wrapt-1.14.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:43ca3bbbe97af00f49efb06e352eae40434ca9d915906f77def219b88e85d907"}, - {file = "wrapt-1.14.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:6b1a564e6cb69922c7fe3a678b9f9a3c54e72b469875aa8018f18b4d1dd1adf3"}, - {file = "wrapt-1.14.1-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:00b6d4ea20a906c0ca56d84f93065b398ab74b927a7a3dbd470f6fc503f95dc3"}, - {file = "wrapt-1.14.1-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:a85d2b46be66a71bedde836d9e41859879cc54a2a04fad1191eb50c2066f6e9d"}, - {file = "wrapt-1.14.1-cp35-cp35m-win32.whl", hash = "sha256:dbcda74c67263139358f4d188ae5faae95c30929281bc6866d00573783c422b7"}, - {file = "wrapt-1.14.1-cp35-cp35m-win_amd64.whl", hash = "sha256:b21bb4c09ffabfa0e85e3a6b623e19b80e7acd709b9f91452b8297ace2a8ab00"}, - {file = "wrapt-1.14.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:9e0fd32e0148dd5dea6af5fee42beb949098564cc23211a88d799e434255a1f4"}, - {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9736af4641846491aedb3c3f56b9bc5568d92b0692303b5a305301a95dfd38b1"}, - {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b02d65b9ccf0ef6c34cba6cf5bf2aab1bb2f49c6090bafeecc9cd81ad4ea1c1"}, - {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21ac0156c4b089b330b7666db40feee30a5d52634cc4560e1905d6529a3897ff"}, - {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:9f3e6f9e05148ff90002b884fbc2a86bd303ae847e472f44ecc06c2cd2fcdb2d"}, - {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:6e743de5e9c3d1b7185870f480587b75b1cb604832e380d64f9504a0535912d1"}, - {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d79d7d5dc8a32b7093e81e97dad755127ff77bcc899e845f41bf71747af0c569"}, - {file = "wrapt-1.14.1-cp36-cp36m-win32.whl", hash = "sha256:81b19725065dcb43df02b37e03278c011a09e49757287dca60c5aecdd5a0b8ed"}, - {file = "wrapt-1.14.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b014c23646a467558be7da3d6b9fa409b2c567d2110599b7cf9a0c5992b3b471"}, - {file = "wrapt-1.14.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:88bd7b6bd70a5b6803c1abf6bca012f7ed963e58c68d76ee20b9d751c74a3248"}, - {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5901a312f4d14c59918c221323068fad0540e34324925c8475263841dbdfe68"}, - {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d77c85fedff92cf788face9bfa3ebaa364448ebb1d765302e9af11bf449ca36d"}, - {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d649d616e5c6a678b26d15ece345354f7c2286acd6db868e65fcc5ff7c24a77"}, - {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7d2872609603cb35ca513d7404a94d6d608fc13211563571117046c9d2bcc3d7"}, - {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:ee6acae74a2b91865910eef5e7de37dc6895ad96fa23603d1d27ea69df545015"}, - {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:2b39d38039a1fdad98c87279b48bc5dce2c0ca0d73483b12cb72aa9609278e8a"}, - {file = "wrapt-1.14.1-cp37-cp37m-win32.whl", hash = "sha256:60db23fa423575eeb65ea430cee741acb7c26a1365d103f7b0f6ec412b893853"}, - {file = "wrapt-1.14.1-cp37-cp37m-win_amd64.whl", hash = "sha256:709fe01086a55cf79d20f741f39325018f4df051ef39fe921b1ebe780a66184c"}, - {file = "wrapt-1.14.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8c0ce1e99116d5ab21355d8ebe53d9460366704ea38ae4d9f6933188f327b456"}, - {file = "wrapt-1.14.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e3fb1677c720409d5f671e39bac6c9e0e422584e5f518bfd50aa4cbbea02433f"}, - {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:642c2e7a804fcf18c222e1060df25fc210b9c58db7c91416fb055897fc27e8cc"}, - {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b7c050ae976e286906dd3f26009e117eb000fb2cf3533398c5ad9ccc86867b1"}, - {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef3f72c9666bba2bab70d2a8b79f2c6d2c1a42a7f7e2b0ec83bb2f9e383950af"}, - {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:01c205616a89d09827986bc4e859bcabd64f5a0662a7fe95e0d359424e0e071b"}, - {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5a0f54ce2c092aaf439813735584b9537cad479575a09892b8352fea5e988dc0"}, - {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2cf71233a0ed05ccdabe209c606fe0bac7379fdcf687f39b944420d2a09fdb57"}, - {file = "wrapt-1.14.1-cp38-cp38-win32.whl", hash = "sha256:aa31fdcc33fef9eb2552cbcbfee7773d5a6792c137b359e82879c101e98584c5"}, - {file = "wrapt-1.14.1-cp38-cp38-win_amd64.whl", hash = "sha256:d1967f46ea8f2db647c786e78d8cc7e4313dbd1b0aca360592d8027b8508e24d"}, - {file = "wrapt-1.14.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3232822c7d98d23895ccc443bbdf57c7412c5a65996c30442ebe6ed3df335383"}, - {file = "wrapt-1.14.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:988635d122aaf2bdcef9e795435662bcd65b02f4f4c1ae37fbee7401c440b3a7"}, - {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cca3c2cdadb362116235fdbd411735de4328c61425b0aa9f872fd76d02c4e86"}, - {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d52a25136894c63de15a35bc0bdc5adb4b0e173b9c0d07a2be9d3ca64a332735"}, - {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40e7bc81c9e2b2734ea4bc1aceb8a8f0ceaac7c5299bc5d69e37c44d9081d43b"}, - {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b9b7a708dd92306328117d8c4b62e2194d00c365f18eff11a9b53c6f923b01e3"}, - {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6a9a25751acb379b466ff6be78a315e2b439d4c94c1e99cb7266d40a537995d3"}, - {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:34aa51c45f28ba7f12accd624225e2b1e5a3a45206aa191f6f9aac931d9d56fe"}, - {file = "wrapt-1.14.1-cp39-cp39-win32.whl", hash = "sha256:dee0ce50c6a2dd9056c20db781e9c1cfd33e77d2d569f5d1d9321c641bb903d5"}, - {file = "wrapt-1.14.1-cp39-cp39-win_amd64.whl", hash = "sha256:dee60e1de1898bde3b238f18340eec6148986da0455d8ba7848d50470a7a32fb"}, - {file = "wrapt-1.14.1.tar.gz", hash = "sha256:380a85cf89e0e69b7cfbe2ea9f765f004ff419f34194018a6827ac0e3edfed4d"}, + {file = "wrapt-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ca1cccf838cd28d5a0883b342474c630ac48cac5df0ee6eacc9c7290f76b11c1"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:e826aadda3cae59295b95343db8f3d965fb31059da7de01ee8d1c40a60398b29"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:5fc8e02f5984a55d2c653f5fea93531e9836abbd84342c1d1e17abc4a15084c2"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:96e25c8603a155559231c19c0349245eeb4ac0096fe3c1d0be5c47e075bd4f46"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:40737a081d7497efea35ab9304b829b857f21558acfc7b3272f908d33b0d9d4c"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:f87ec75864c37c4c6cb908d282e1969e79763e0d9becdfe9fe5473b7bb1e5f09"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:1286eb30261894e4c70d124d44b7fd07825340869945c79d05bda53a40caa079"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:493d389a2b63c88ad56cdc35d0fa5752daac56ca755805b1b0c530f785767d5e"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:58d7a75d731e8c63614222bcb21dd992b4ab01a399f1f09dd82af17bbfc2368a"}, + {file = "wrapt-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:21f6d9a0d5b3a207cdf7acf8e58d7d13d463e639f0c7e01d82cdb671e6cb7923"}, + {file = "wrapt-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ce42618f67741d4697684e501ef02f29e758a123aa2d669e2d964ff734ee00ee"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41d07d029dd4157ae27beab04d22b8e261eddfc6ecd64ff7000b10dc8b3a5727"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54accd4b8bc202966bafafd16e69da9d5640ff92389d33d28555c5fd4f25ccb7"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fbfbca668dd15b744418265a9607baa970c347eefd0db6a518aaf0cfbd153c0"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:76e9c727a874b4856d11a32fb0b389afc61ce8aaf281ada613713ddeadd1cfec"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e20076a211cd6f9b44a6be58f7eeafa7ab5720eb796975d0c03f05b47d89eb90"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a74d56552ddbde46c246b5b89199cb3fd182f9c346c784e1a93e4dc3f5ec9975"}, + {file = "wrapt-1.15.0-cp310-cp310-win32.whl", hash = "sha256:26458da5653aa5b3d8dc8b24192f574a58984c749401f98fff994d41d3f08da1"}, + {file = "wrapt-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:75760a47c06b5974aa5e01949bf7e66d2af4d08cb8c1d6516af5e39595397f5e"}, + {file = "wrapt-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ba1711cda2d30634a7e452fc79eabcadaffedf241ff206db2ee93dd2c89a60e7"}, + {file = "wrapt-1.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:56374914b132c702aa9aa9959c550004b8847148f95e1b824772d453ac204a72"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a89ce3fd220ff144bd9d54da333ec0de0399b52c9ac3d2ce34b569cf1a5748fb"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3bbe623731d03b186b3d6b0d6f51865bf598587c38d6f7b0be2e27414f7f214e"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3abbe948c3cbde2689370a262a8d04e32ec2dd4f27103669a45c6929bcdbfe7c"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b67b819628e3b748fd3c2192c15fb951f549d0f47c0449af0764d7647302fda3"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:7eebcdbe3677e58dd4c0e03b4f2cfa346ed4049687d839adad68cc38bb559c92"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:74934ebd71950e3db69960a7da29204f89624dde411afbfb3b4858c1409b1e98"}, + {file = "wrapt-1.15.0-cp311-cp311-win32.whl", hash = "sha256:bd84395aab8e4d36263cd1b9308cd504f6cf713b7d6d3ce25ea55670baec5416"}, + {file = "wrapt-1.15.0-cp311-cp311-win_amd64.whl", hash = "sha256:a487f72a25904e2b4bbc0817ce7a8de94363bd7e79890510174da9d901c38705"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:4ff0d20f2e670800d3ed2b220d40984162089a6e2c9646fdb09b85e6f9a8fc29"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9ed6aa0726b9b60911f4aed8ec5b8dd7bf3491476015819f56473ffaef8959bd"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:896689fddba4f23ef7c718279e42f8834041a21342d95e56922e1c10c0cc7afb"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:75669d77bb2c071333417617a235324a1618dba66f82a750362eccbe5b61d248"}, + {file = "wrapt-1.15.0-cp35-cp35m-win32.whl", hash = "sha256:fbec11614dba0424ca72f4e8ba3c420dba07b4a7c206c8c8e4e73f2e98f4c559"}, + {file = "wrapt-1.15.0-cp35-cp35m-win_amd64.whl", hash = "sha256:fd69666217b62fa5d7c6aa88e507493a34dec4fa20c5bd925e4bc12fce586639"}, + {file = "wrapt-1.15.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b0724f05c396b0a4c36a3226c31648385deb6a65d8992644c12a4963c70326ba"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bbeccb1aa40ab88cd29e6c7d8585582c99548f55f9b2581dfc5ba68c59a85752"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38adf7198f8f154502883242f9fe7333ab05a5b02de7d83aa2d88ea621f13364"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:578383d740457fa790fdf85e6d346fda1416a40549fe8db08e5e9bd281c6a475"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:a4cbb9ff5795cd66f0066bdf5947f170f5d63a9274f99bdbca02fd973adcf2a8"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:af5bd9ccb188f6a5fdda9f1f09d9f4c86cc8a539bd48a0bfdc97723970348418"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:b56d5519e470d3f2fe4aa7585f0632b060d532d0696c5bdfb5e8319e1d0f69a2"}, + {file = "wrapt-1.15.0-cp36-cp36m-win32.whl", hash = "sha256:77d4c1b881076c3ba173484dfa53d3582c1c8ff1f914c6461ab70c8428b796c1"}, + {file = "wrapt-1.15.0-cp36-cp36m-win_amd64.whl", hash = "sha256:077ff0d1f9d9e4ce6476c1a924a3332452c1406e59d90a2cf24aeb29eeac9420"}, + {file = "wrapt-1.15.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5c5aa28df055697d7c37d2099a7bc09f559d5053c3349b1ad0c39000e611d317"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3a8564f283394634a7a7054b7983e47dbf39c07712d7b177b37e03f2467a024e"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780c82a41dc493b62fc5884fb1d3a3b81106642c5c5c78d6a0d4cbe96d62ba7e"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e169e957c33576f47e21864cf3fc9ff47c223a4ebca8960079b8bd36cb014fd0"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b02f21c1e2074943312d03d243ac4388319f2456576b2c6023041c4d57cd7019"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f2e69b3ed24544b0d3dbe2c5c0ba5153ce50dcebb576fdc4696d52aa22db6034"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d787272ed958a05b2c86311d3a4135d3c2aeea4fc655705f074130aa57d71653"}, + {file = "wrapt-1.15.0-cp37-cp37m-win32.whl", hash = "sha256:02fce1852f755f44f95af51f69d22e45080102e9d00258053b79367d07af39c0"}, + {file = "wrapt-1.15.0-cp37-cp37m-win_amd64.whl", hash = "sha256:abd52a09d03adf9c763d706df707c343293d5d106aea53483e0ec8d9e310ad5e"}, + {file = "wrapt-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cdb4f085756c96a3af04e6eca7f08b1345e94b53af8921b25c72f096e704e145"}, + {file = "wrapt-1.15.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:230ae493696a371f1dbffaad3dafbb742a4d27a0afd2b1aecebe52b740167e7f"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63424c681923b9f3bfbc5e3205aafe790904053d42ddcc08542181a30a7a51bd"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6bcbfc99f55655c3d93feb7ef3800bd5bbe963a755687cbf1f490a71fb7794b"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c99f4309f5145b93eca6e35ac1a988f0dc0a7ccf9ccdcd78d3c0adf57224e62f"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b130fe77361d6771ecf5a219d8e0817d61b236b7d8b37cc045172e574ed219e6"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:96177eb5645b1c6985f5c11d03fc2dbda9ad24ec0f3a46dcce91445747e15094"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5fe3e099cf07d0fb5a1e23d399e5d4d1ca3e6dfcbe5c8570ccff3e9208274f7"}, + {file = "wrapt-1.15.0-cp38-cp38-win32.whl", hash = "sha256:abd8f36c99512755b8456047b7be10372fca271bf1467a1caa88db991e7c421b"}, + {file = "wrapt-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:b06fa97478a5f478fb05e1980980a7cdf2712015493b44d0c87606c1513ed5b1"}, + {file = "wrapt-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2e51de54d4fb8fb50d6ee8327f9828306a959ae394d3e01a1ba8b2f937747d86"}, + {file = "wrapt-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0970ddb69bba00670e58955f8019bec4a42d1785db3faa043c33d81de2bf843c"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76407ab327158c510f44ded207e2f76b657303e17cb7a572ffe2f5a8a48aa04d"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd525e0e52a5ff16653a3fc9e3dd827981917d34996600bbc34c05d048ca35cc"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d37ac69edc5614b90516807de32d08cb8e7b12260a285ee330955604ed9dd29"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:078e2a1a86544e644a68422f881c48b84fef6d18f8c7a957ffd3f2e0a74a0d4a"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2cf56d0e237280baed46f0b5316661da892565ff58309d4d2ed7dba763d984b8"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7dc0713bf81287a00516ef43137273b23ee414fe41a3c14be10dd95ed98a2df9"}, + {file = "wrapt-1.15.0-cp39-cp39-win32.whl", hash = "sha256:46ed616d5fb42f98630ed70c3529541408166c22cdfd4540b88d5f21006b0eff"}, + {file = "wrapt-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:eef4d64c650f33347c1f9266fa5ae001440b232ad9b98f1f43dfe7a79435c0a6"}, + {file = "wrapt-1.15.0-py3-none-any.whl", hash = "sha256:64b1df0f83706b4ef4cfb4fb0e4c2669100fd7ecacfb59e091fad300d4e04640"}, + {file = "wrapt-1.15.0.tar.gz", hash = "sha256:d06730c6aed78cee4126234cf2d071e01b44b915e725a6cb439a879ec9754a3a"}, ] zipp = [ - {file = "zipp-3.8.0-py3-none-any.whl", hash = "sha256:c4f6e5bbf48e74f7a38e7cc5b0480ff42b0ae5178957d564d18932525d5cf099"}, - {file = "zipp-3.8.0.tar.gz", hash = "sha256:56bf8aadb83c24db6c4b577e13de374ccfb67da2078beba1d037c17980bf43ad"}, + {file = "zipp-3.15.0-py3-none-any.whl", hash = "sha256:48904fc76a60e542af151aded95726c1a5c34ed43ab4134b597665c86d7ad556"}, + {file = "zipp-3.15.0.tar.gz", hash = "sha256:112929ad649da941c23de50f356a2b5570c954b65150642bccdd66bf194d224b"}, ] diff --git a/pyarr/lidarr.py b/pyarr/lidarr.py index 879383c..3af6d36 100644 --- a/pyarr/lidarr.py +++ b/pyarr/lidarr.py @@ -126,7 +126,7 @@ def add_artist( quality_profile_id: Optional[int] = None, metadata_profile_id: Optional[int] = None, monitored: bool = True, - artist_monitor: LidarrArtistMonitor = LidarrArtistMonitor.ALL_ALBUMS, + artist_monitor: LidarrArtistMonitor = "all", artist_search_for_missing_albums: bool = False, ) -> JsonObject: """Adds an artist from the lookup result @@ -137,7 +137,7 @@ def add_artist( quality_profile_id (Optional[int], optional): Quality profile ID. Defaults to None. metadata_profile_id (Optional[int], optional): Metadata profile ID. Defaults to None. monitored (bool, optional): Monitor the artist. Defaults to True. - artist_monitor (LidarrArtistMonitor, optional): Monitor the artist. Defaults to LidarrArtistMonitor.ALL_ALBUMS. + artist_monitor (LidarrArtistMonitor, optional): Monitor the artist. Defaults to "all". artist_search_for_missing_albums (bool, optional): Search for missing albums by this artist. Defaults to False. Returns: @@ -235,7 +235,7 @@ def add_album( quality_profile_id: Optional[int] = None, metadata_profile_id: Optional[int] = None, monitored: bool = True, - artist_monitor: LidarrArtistMonitor = LidarrArtistMonitor.ALL_ALBUMS, + artist_monitor: LidarrArtistMonitor = "all", artist_search_for_missing_albums: bool = False, ) -> JsonObject: """Adds an album to Lidarr @@ -246,7 +246,7 @@ def add_album( quality_profile_id (Optional[int], optional): Quality profile ID. Defaults to None. metadata_profile_id (Optional[int], optional): Metadata profile ID. Defaults to None. monitored (bool, optional): Should the album be monitored. Defaults to True. - artist_monitor (LidarrArtistMonitor, optional): What level to monitor the artist. Defaults to LidarrArtistMonitor.ALL_ALBUMS. + artist_monitor (LidarrArtistMonitor, optional): What level to monitor the artist. Defaults to "all". artist_search_for_missing_albums (bool, optional): Search for any missing albums by this artist. Defaults to False. Returns: diff --git a/pyarr/models/common.py b/pyarr/models/common.py index 79d2c24..1edd1c9 100644 --- a/pyarr/models/common.py +++ b/pyarr/models/common.py @@ -1,159 +1,128 @@ -from enum import Enum - - -class PyarrSortDirection(str, Enum): - """Pyarr sort direction""" - - ASC = "ascending" - DEFAULT = "default" - DESC = "descending" - - -class PyarrLogSortKey(str, Enum): - """Log Sort Keys - - Note: - There may be more, but these are not well documented - within Arr api docs. - """ - - ID = "Id" - LEVEL = "level" - TIME = "time" - LOGGER = "logger" - MESSAGE = "message" - EXCEPTION = "exception" - EXCEPTION_TYPE = "exceptionType" - - -class PyarrBlocklistSortKey(str, Enum): - """Block list sort keys - - Note: - There may be more, but these are not well documented - within Arr api docs. - """ - - DATE = "date" - - -class PyarrHistorySortKey(str, Enum): - """History sort keys - - Note: - There may be more, but these are not well documented - within Arr api docs. - """ - - TIME = "time" - - -class PyarrTaskSortKey(str, Enum): - """Task sort keys - - Note: - There may be more, but these are not well documented - within Arr api docs. - """ - - TIME_LEFT = "timeleft" - - -class PyarrLogFilterKey(str, Enum): - """Log filter keys - - Note: - There may be more, but these are not well documented - within Arr api docs. - """ - - LEVEL = "level" - - -class PyarrLogFilterValue(str, Enum): - """Log filter values - - Note: - There may be more, but these are not well documented - within Arr api docs. - """ - - ALL = "all" - INFO = "info" - WARN = "warn" - ERROR = "error" - - -class PyarrNotificationSchema(str, Enum): - """Notification schema implementations""" - - BOXCAR = "Boxcar" - CUSTOM = "CustomScript" - DISCORD = "Discord" - EMAIL = "Email" - MEDIA_BROWSER = "MediaBrowser" - GOTIFY = "Gotify" - JOIN = "Join" - XBMC = "Xbmc" - MAILGUN = "MailGun" - PLEX_THEATER = "PlexHomeTheater" - PLEX_CLIENT = "PlexClient" - PLEX_SERVER = "PlexServer" - PROWL = "Prowl" - PUSH_BULLET = "PushBullet" - PUSHOVER = "Pushover" - SAND_GRID = "SendGrid" - SLACK = "Slack" - SYNOLOGY_INDEXER = "SynologyIndexer" - TELEGRAM = "Telegram" - TRAKT = "Trakt" - TWITTER = "Twitter" - WEBHOOK = "Webhook" - - -class PyarrDownloadClientSchema(str, Enum): - """Download client schema implementations""" - - ARIA2 = "Aria2" - DELUGE = "Deluge" - TORRENT_DOWNLOAD_STATION = "TorrentDownloadStation" - USENET_DOWNLOAD_STATION = "UsenetDownloadStation" - FLOOD = "Flood" - HADOUKEN = "Hadouken" - NZB_GET = "Nzbget" - NZB_VORTEX = "NzbVortex" - PNEUMATIC = "Pneumatic" - Q_BITTORRENT = "QBittorrent" - R_TORRENT = "RTorrent" - SABNZBD = "Sabnzbd" - TORRENT_BLACKHOLE = "TorrentBlackhole" - TRANSMISSION = "Transmission" - USENET_BLACKHOLE = "UsenetBlackhole" - U_TORRENT = "UTorrent" - VUZE = "Vuze" - - -class PyarrImportListSchema(str, Enum): - """Import List schema implementations""" - - PLEX = "PlexImport" - SONARR = "SonarrImport" - TRAKT_LIST = "TraktListImport" - TRAKT_POPULAR = "TraktPopularImport" - TRAKT_USER = "TraktUserImport" - - -class PyarrIndexerSchema(str, Enum): - """Import List schema implementations""" - - FILE_LIST = "FileList" - HD_BITS = "HDBits" - IP_TORRENTS = "IPTorrents" - NEWZNAB = "Newznab" - NYAA = "Nyaa" - OMGWTFNZBS = "Omgwtfnzbs" - PASS_THE_POPCORN = "PassThePopcorn" - RARBG = "Rarbg" - TORRENT_RSS_INDEXER = "TorrentRssIndexer" - TORRENT_POTATO = "TorrentPotato" - TORZNAB = "Torznab" +from typing import Literal + +#: Pyarr sort direction +PyarrSortDirection = Literal["ascending", "default", "descending"] + + +PyarrLogSortKey = Literal[ + "Id", "level", "time", "logger", "message", "exception", "exceptionType" +] +"""Log Sort Keys + +Note: + There may be more, but these are not well documented + within Arr api docs. +""" + + +PyarrBlocklistSortKey = Literal["date"] +"""Block list sort keys + +Note: + There may be more, but these are not well documented + within Arr api docs. +""" + +PyarrHistorySortKey = Literal["time"] +"""History sort keys + +Note: + There may be more, but these are not well documented + within Arr api docs. +""" + +PyarrTaskSortKey = Literal["timeleft"] +"""Task sort keys + +Note: + There may be more, but these are not well documented + within Arr api docs. +""" + +PyarrLogFilterKey = Literal["level"] +"""Log filter keys + +Note: + There may be more, but these are not well documented + within Arr api docs. +""" + +PyarrLogFilterValue = Literal["all", "info", "warn", "error"] +"""Log filter values + +Note: + There may be more, but these are not well documented + within Arr api docs. +""" + + +#: Notification schema implementations +PyarrNotificationSchema = Literal[ + "Boxcar", + "CustomScript", + "Discord", + "Email", + "MediaBrowser", + "Gotify", + "Join", + "Xbmc", + "MailGun", + "PlexHomeTheater", + "PlexClient", + "PlexServer", + "Prowl", + "PushBullet", + "Pushover", + "SendGrid", + "Slack", + "SynologyIndexer", + "Telegram", + "Trakt", + "Twitter", + "Webhook", +] + +#: Download client schema implementations +PyarrDownloadClientSchema = Literal[ + "Aria2", + "Deluge", + "TorrentDownloadStation", + "UsenetDownloadStation", + "Flood", + "Hadouken", + "Nzbget", + "NzbVortex", + "Pneumatic", + "QBittorrent", + "RTorrent", + "Sabnzbd", + "TorrentBlackhole", + "Transmission", + "UsenetBlackhole", + "UTorrent", + "Vuze", +] + +#: Import List schema implementations +PyarrImportListSchema = Literal[ + "PlexImport", + "SonarrImport", + "TraktListImport", + "TraktPopularImport", + "TraktUserImport", +] + +#: Indexer schema implementations +PyarrIndexerSchema = Literal[ + "FileList", + "HDBits", + "IPTorrents", + "Newznab", + "Nyaa", + "Omgwtfnzbs", + "PassThePopcorn", + "Rarbg", + "TorrentRssIndexer", + "TorrentPotato", + "Torznab", +] diff --git a/pyarr/models/lidarr.py b/pyarr/models/lidarr.py index 20813c7..1029574 100644 --- a/pyarr/models/lidarr.py +++ b/pyarr/models/lidarr.py @@ -1,60 +1,52 @@ -from enum import Enum - - -class LidarrCommand(str, Enum): - """Lidarr commands.""" - - ALBUM_SEARCH = "AlbumSearch" - APP_UPDATE_CHECK = "ApplicationUpdateCheck" - ARTIST_SEARCH = "ArtistSearch" - DOWNLOADED_ALBUMS_SCAN = "DownloadedAlbumsScan" - MISSING_ALBUM_SEARCH = "MissingAlbumSearch" - REFRESH_ALBUM = "RefreshAlbum" - REFRESH_ARTIST = "RefreshArtist" - - -class LidarrSortKey(str, Enum): - """Lidarr sort keys.""" - - ALBUM_TITLE = "albums.title" - ARTIST_ID = "artistId" - DATE = "date" - DOWNLOAD_CLIENT = "downloadClient" - ID = "id" - INDEXER = "indexer" - MESSAGE = "message" - PATH = "path" - PROGRESS = "progress" - PROTOCOL = "protocol" - QUALITY = "quality" - RATINGS = "ratings" - RELEASE_DATE = "albums.releaseDate" - SOURCE_TITLE = "sourcetitle" - STATUS = "status" - TIMELEFT = "timeleft" - TITLE = "title" - - -class LidarrArtistMonitor(str, Enum): - """Lidarr Monitor types for an artist music""" - - ALL_ALBUMS = "all" - FUTURE_ALBUMS = "future" - MISSING_ALBUMS = "missing" - EXISTING_ALBUMS = "existing" - FIRST_ALBUM = "first" - LATEST_ALBUM = "latest" - - -class LidarrImportListSchema(str, Enum): - """Import List schema implementations""" - - LIDARR = "LidarrImport" - HEADPHONES = "HeadphonesImport" - LAST_FM_TAG = "LastFmTag" - LAST_FM_USER = "LastFmUser" - LIDARR_LISTS = "LidarrLists" - MUSICBRAINZ_SERIES = "MusicBrainzSeries" - SPOTIFY_FOLLOWED_ARTISTS = "SpotifyFollowedArtists" - SPOTIFY_PLAYLIST = "SpotifyPlaylist" - SPOTIFY_SAVED_ALBUMS = "SpotifySavedAlbums" +from typing import Literal + +#: Lidarr commands. +LidarrCommand = Literal[ + "AlbumSearch", + "ApplicationUpdateCheck", + "ArtistSearch", + "DownloadedAlbumsScan", + "MissingAlbumSearch", + "RefreshAlbum", + "RefreshArtist", +] + + +#: Lidarr sort keys. +LidarrSortKey = Literal[ + "albums.title", + "artistId", + "date", + "downloadClient", + "id", + "indexer", + "message", + "path", + "progress", + "protocol", + "quality", + "ratings", + "albums.releaseDate", + "sourcetitle", + "status", + "timeleft", + "title", +] + + +#: Lidarr Monitor types for an artist music +LidarrArtistMonitor = Literal["all", "future", "missing", "existing", "first", "latest"] + + +#: Import List schema implementations +LidarrImportListSchema = Literal[ + "LidarrImport", + "HeadphonesImport", + "LastFmTag", + "LastFmUser", + "LidarrLists", + "MusicBrainzSeries", + "SpotifyFollowedArtists", + "SpotifyPlaylist", + "SpotifySavedAlbums", +] diff --git a/pyarr/models/radarr.py b/pyarr/models/radarr.py index 20f95bf..8c7adb6 100644 --- a/pyarr/models/radarr.py +++ b/pyarr/models/radarr.py @@ -1,96 +1,93 @@ -from enum import Enum - - -class RadarrCommands(str, Enum): - """Radarr commands. +from typing import Literal + +RadarrCommands = Literal[ + "DownloadedMoviesScan", + "MissingMoviesSearch", + "RefreshMovie", + "RenameMovie", + "RenameFiles", + "Backup", +] +""" +Radarr commands. Note: The parameters are supplied as `**kwargs` within the `post_command` method. - """ - DOWNLOADED_MOVIES_SCAN = "DownloadedMoviesScan" - """Scans for all clients for downloaded movies, or a single client by ID +DownloadedMoviesScan: + Scans for all clients for downloaded movies, or a single client by ID Args: clientid (int, optional): Download client ID - """ - MISSING_MOVIES_SEARCH = "MissingMoviesSearch" - """Searches for any missing movies""" - REFRESH_MOVIE = "RefreshMovie" - """Refreshes all of the movies, or specific by ID + +MissingMoviesSearch: + Searches for any missing movies + +RefreshMovies: + Refreshes all of the movies, or specific by ID Args: movieid (int, Optional): ID of Movie - """ - RENAME_MOVIE = "RenameMovie" - """Rename specific movie to correct format. + +RenameMovie: + Rename specific movie to correct format. Args: movieid (list[int]): ID of Movie or movies - """ - RESCAN_MOVIE = "RescanMovie" - """Rescans specific movie + +RescanMovie: + Rescans specific movie Args: movieid (int): ID of Movie - """ - RENAME_FILES = "RenameFiles" - """Rename files to correct format + +RenameFiles: + Rename files to correct format Args: movieid (int): ID of Movie - """ - BACKUP = "Backup" - """Backup the server data""" - - -class RadarrSortKeys(str, Enum): - """Radarr sort keys.""" - - DATE = "date" - DOWNLOAD_CLIENT = "downloadClient" - ID = "id" - INDEXER = "indexer" - LANGUAGES = "languages" - MESSAGE = "message" - MOVIE_ID = "modieId" - MOVIE_TITLE = "movies.sortTitle" - PATH = "path" - PROGRESS = "progress" - PROTOCOL = "protocol" - QUALITY = "quality" - RATINGS = "ratings" - RELEASE_TITLE = "title" - SIZE = "size" - SOURCE_TITLE = "sourcetitle" - STATUS = "status" - TIMELEFT = "timeleft" - - -class RadarrEventType(str, Enum): - """Radarr event types""" - - UNKNOWN = "unknown" - GRABBED = "grabbed" - DOWNLOAD_FILDER_INPORTED = "downloadFolderImported" - DOWNLOAD_FAILED = "downloadFailed" - MOVIE_FILE_DELETED = "movieFileDeleted" - MOVIE_FOLDER_IMPORTED = "movieFolderImported" - MOVIE_FILE_RENAMED = "movieFileRenamed" - DOWNLOAD_IGNORED = "downloadIgnored" - - -class RadarrMonitorType(str, Enum): - """Radarr monitor types""" - - MOVIE_ONLY = "movieOnly" - MOVIE_AND_COLLECTION = "movieAndCollection" - NONE = "none" - - -class RadarrAvailabilityType(str, Enum): - """Radarr availability types""" - - ANNOUNCED = "announced" - IN_CINEMAS = "inCinemas" - RELEASED = "released" + +Backup: + Backup the server data +""" + +#: Radarr sort keys +RadarrSortKey = Literal[ + "date", + "downloadClient", + "id", + "indexer", + "languages", + "message", + "modieId", + "movies.sortTitle", + "path", + "progress", + "protocol", + "quality", + "ratings", + "title", + "size", + "sourcetitle", + "status", + "timeleft", +] + + +#: Radarr event types +RadarrEventType = Literal[ + "unknown", + "grabbed", + "downloadFolderImported", + "downloadFailed", + "movieFileDeleted", + "movieFolderImported", + "movieFileRenamed", + "downloadIgnored", +] + +#: Radarr movie availability types +RadarrMonitorType = Literal["movieOnly", "movieAndCollections", "none"] + +#: Radarr movie availability types +RadarrAvailabilityType = Literal["announced", "inCinemas", "released"] diff --git a/pyarr/models/readarr.py b/pyarr/models/readarr.py index d97cb64..e6fa8c1 100644 --- a/pyarr/models/readarr.py +++ b/pyarr/models/readarr.py @@ -1,100 +1,101 @@ -from enum import Enum - - -class ReadarrCommands(str, Enum): - """Readarr commands. - - Note: - The parameters are supplied as `**kwargs` within the `post_command` method. - """ - - APP_UPDATE_CHECK: str = "ApplicationUpdateCheck" - """Checks for Application updates""" - AUTHOR_SEARCH = "AuthorSearch" - """Search for specific author by ID +from typing import Literal + +ReadarrCommands = Literal[ + "ApplicationUpdateCheck", + "AuthorSearch", + "BookSearch", + "RefreshAuthor", + "RefreshBook", + "RenameAuthor", + "RenameFiles", + "RescanFolders", + "RssSync", + "Backup", + "MissingBookSearch", +] +"""Readarr commands. + +Note: + The parameters are supplied as `**kwargs` within the `post_command` method. + +ApplicationUpdateCheck: + Checks for Application updates + +AuthorSearch: + Search for specific author by ID Args: authorId (int): ID for Author - """ - BOOK_SEARCH = "BookSearch" - """Search for specific Book by ID + +BookSearch: + Search for specific Book by ID Args: bookId (int): ID for Book - """ - REFRESH_AUTHOR = "RefreshAuthor" - """Refresh all Authors, or by specific ID + +RefreshAuthor: + Refresh all Authors, or by specific ID Args: authorId (int, optional): ID for Author - """ - REFRESH_BOOK = "RefreshBook" - """Refresh all Books, or by specific ID + +RefreshBook: + Refresh all Books, or by specific ID Args: bookId (int, optional): ID for Book - """ - RENAME_AUTHOR = "RenameAuthor" - """Rename all Authors, or by list of Ids + +RenameAuthor: + Rename all Authors, or by list of Ids Args: authorIds (list[int], optional): IDs for Authors - """ - RENAME_FILES = "RenameFiles" - """Rename all files, or by specific ID + +RenameFiles: + Rename all files, or by specific ID Args: authorId (int, optional): ID for Author - """ - RESCAN_FOLDERS = "RescanFolders" - """Rescans folders""" - RSS_SYNC = "RssSync" - """Synchronise RSS Feeds""" - BACKUP = "Backup" - """Backup of the Database""" - MISSING_BOOK_SEARCH = "MissingBookSearch" - """Searches for any missing books""" - - -class ReadarrSortKeys(str, Enum): - """Readarr sort keys.""" - - AUTHOR_ID = "authorId" - BOOK_ID = "Books.Id" - DATE = "books.releaseDate" - DOWNLOAD_CLIENT = "downloadClient" - ID = "id" - INDEXER = "indexer" - MESSAGE = "message" - PATH = "path" - PROGRESS = "progress" - PROTOCOL = "protocol" - QUALITY = "quality" - RATINGS = "ratings" - SIZE = "size" - SOURCE_TITLE = "sourcetitle" - STATUS = "status" - TIMELEFT = "timeleft" - TITLE = "title" - - -class ReadarrSearchType(str, Enum): - """Readarr search types.""" - - ASIN = "asin" - GOODREADS = "edition" - ISBN = "isbn" - AUTHOR = "author" - WORK = "work" - - -class ReadarrAuthorMonitor(str, Enum): - """Readarr author monitor options.""" - - ALL: str = "all" - FUTURE = "future" - MISSING = "missing" - EXISTING = "existing" - FIRST_BOOK = "first" - LATEST_BOOK = "latest" - NONE = "none" + +RescanFolders: + Rescans folders + +RssSync: + Synchronise RSS Feeds +Backup: + Backup of the Database + +MissingBookSearch: + Searches for any missing books +""" + +#: Readarr sort keys. +ReadarrSortKeys = Literal[ + "authorId", + "Books.Id", + "books.releaseDate", + "downloadClient", + "id", + "indexer", + "message", + "path", + "progress", + "protocol", + "quality", + "ratings", + "size", + "sourcetitle", + "status", + "timeleft", + "title", +] + + +#: Readarr search types. +ReadarrSearchType = Literal["asin", "edition", "isbn", "author", "work"] + + +#: Readarr author monitor options. +ReadarrAuthorMonitor = Literal[ + "all", "future", "missing", "existing", "first", "latest", "none" +] diff --git a/pyarr/models/sonarr.py b/pyarr/models/sonarr.py index 4410316..df70659 100644 --- a/pyarr/models/sonarr.py +++ b/pyarr/models/sonarr.py @@ -1,92 +1,101 @@ -from enum import Enum - - -class SonarrCommands(str, Enum): - """Sonarr commands. - - Note: - The parameters are supplied as `**kwargs` within the `post_command` method. - """ - - BACKUP = "Backup" - """Backup of the Database""" - DOWNLOADED_EPISODES_SCAN = "DownloadedEpisodesScan" - """Scans downloaded episodes for state""" - EPISODE_SEARCH = "EpisodeSearch" - """Searches for all episondes, or specific ones in supplied list +from typing import Literal + +SonarrCommands = Literal[ + "Backup", + "DownloadedEpisodesScan", + "EpisodeSearch", + "missingEpisodeSearch", + "RefreshSeries", + "RenameSeries", + "RenameFiles", + "RescanSeries", + "RssSync", + "SeasonSearch", + "SeriesSearch", +] +"""Sonarr commands. + +Note: + The parameters are supplied as `**kwargs` within the `post_command` method. + +Backup: + Backup of the Database + +DownloadedEpisodesScan: + Scans downloaded episodes for state + +EpisodeSearch: + Searches for all episondes, or specific ones in supplied list Args: episodeIds (lsit[int], optional): One or more episodeIds in a list - """ - MISSING_EPISODE_SEARCH = "missingEpisodeSearch" - """Searches for any missing episodes""" - REFRESH_SERIES = "RefreshSeries" - """Refreshes all series, if a `seriesId` is provided only that series will be refreshed + +missingEpisodeSearch: + Searches for any missing episodes + +RefreshSeries: + Refreshes all series, if a `seriesId` is provided only that series will be refreshed Args: seriesId (int, optional): ID of specific series to be refreshed. - """ - RENAME_SERIES = "RenameSeries" - """Renames series to the expected naming format. + +RenameSeries: + Renames series to the expected naming format. Args: seriesIds (list[int]): List of Series IDs to rename. - """ - RENAME_FILES = "RenameFiles" - """Renames files to the expected naming format. +RenameFiles: + Renames files to the expected naming format. Args: files (list[int]): List of File IDs to rename. - """ - RESCAN_SERIES = "RescanSeries" - """Re-scan all series, if `seriesId` is provided only that series will be Re-scanned. +RescanSeries: + Re-scan all series, if `seriesId` is provided only that series will be Re-scanned. Args: seriesId (int, optional): ID of series to search for. - """ - RSS_SYNC = "RssSync" - """Synchronise RSS Feeds""" +RssSync: + Synchronise RSS Feeds - SEASON_SEARCH = "SeasonSearch" - """Search for specific season. +SeasonSearch: + Search for specific season. Args: seriesId (int): Series in which the season resides. seasonNumber (int): Season to search for. - """ - SERIES_SEARCH = "SeriesSearch" - """Searches for specific series. +SeriesSearch: + Searches for specific series. Args: seriesId (int): ID of series to search for. - """ - - -class SonarrSortKey(str, Enum): - """Sonarr sort keys.""" - - AIR_DATE_UTC = "airDateUtc" - DATE = "date" - DOWNLOAD_CLIENT = "downloadClient" - EPISODE = "episode" - EPISODE_ID = "episodeId" - EPISODE_TITLE = "episode.title" - ID = "id" - INDEXER = "indexer" - LANGUAGE = "language" - MESSAGE = "message" - PATH = "path" - PROGRESS = "progress" - PROTOCOL = "protocol" - QUALITY = "quality" - RATINGS = "ratings" - SERIES_ID = "seriesId" - SERIES_TITLE = "series.sortTitle" - SIZE = "size" - SOURCE_TITLE = "sourcetitle" - STATUS = "status" - TIMELEFT = "timeleft" +""" + + +#: Sonarr sort keys. +SonarrSortKey = Literal[ + "airDateUtc", + "date", + "downloadClient", + "episode", + "episodeId", + "episode.title", + "id", + "indexer", + "language", + "message", + "path", + "progress", + "protocol", + "quality", + "ratings", + "seriesId", + "series.sortTitle", + "size", + "sourcetitle", + "status", + "timeleft", +] diff --git a/pyarr/radarr.py b/pyarr/radarr.py index edae95a..4afca7b 100644 --- a/pyarr/radarr.py +++ b/pyarr/radarr.py @@ -13,7 +13,7 @@ RadarrCommands, RadarrEventType, RadarrMonitorType, - RadarrSortKeys, + RadarrSortKey, ) @@ -87,8 +87,8 @@ def add_movie( quality_profile_id: int, monitored: bool = True, search_for_movie: bool = True, - monitor: RadarrMonitorType = RadarrMonitorType.MOVIE_ONLY, - minimum_availability: RadarrAvailabilityType = RadarrAvailabilityType.ANNOUNCED, + monitor: RadarrMonitorType = "movieOnly", + minimum_availability: RadarrAvailabilityType = "announced", tags: list[int] = [], ) -> JsonObject: """Adds a movie to the database @@ -99,8 +99,8 @@ def add_movie( quality_profile_id (int): ID of the quality profile the movie will use monitored (bool, optional): Should the movie be monitored. Defaults to True. search_for_movie (bool, optional): Should we search for the movie. Defaults to True. - monitor (RadarrMonitorType, optional): Monitor movie or collection. Defaults to RadarrMonitorType.MOVIE_ONLY. - minimum_availability (RadarrAvailabilityType, optional): Availability of movie. Defaults to RadarrAvailabilityType.ANNOUNCED + monitor (RadarrMonitorType, optional): Monitor movie or collection. Defaults to "movieOnly". + minimum_availability (RadarrAvailabilityType, optional): Availability of movie. Defaults to "announced" tags (list[int], optional): List of tag id's. Defaults to []. Returns: @@ -406,7 +406,7 @@ def get_queue( page: Optional[int] = None, page_size: Optional[int] = None, sort_dir: Optional[PyarrSortDirection] = None, - sort_key: Optional[RadarrSortKeys] = None, + sort_key: Optional[RadarrSortKey] = None, include_unknown_movie_items: Optional[bool] = None, ) -> JsonObject: """Return a list of items in the queue @@ -415,13 +415,13 @@ def get_queue( page (Optional[int], optional): Page to be returned. Defaults to None. page_size (Optional[int], optional): Number of results per page. Defaults to None. sort_direction (Optional[PyarrSortDirection], optional): Direction to sort. Defaults to None. - sort_key (Optional[RadarrSortKeys], optional): Field to sort. Defaults to None. + sort_key (Optional[RadarrSortKey], optional): Field to sort. Defaults to None. include_unknown_movie_items (Optional[bool], optional): Include unknown movie items. Defaults to None. Returns: JsonObject: List of dictionaries with items """ - params: dict[str, Union[int, PyarrSortDirection, RadarrSortKeys, bool]] = {} + params: dict[str, Union[int, PyarrSortDirection, RadarrSortKey, bool]] = {} if page: params["page"] = page diff --git a/pyarr/readarr.py b/pyarr/readarr.py index ca7ee0d..202205a 100644 --- a/pyarr/readarr.py +++ b/pyarr/readarr.py @@ -391,7 +391,7 @@ def add_book( metadata_profile_id: Optional[int] = None, monitored: bool = True, search_for_new_book: bool = False, - author_monitor: ReadarrAuthorMonitor = ReadarrAuthorMonitor.ALL, + author_monitor: ReadarrAuthorMonitor = "all", author_search_for_missing_books: bool = False, ) -> JsonObject: """Add a new book and its associated author (if not already added). @@ -403,7 +403,7 @@ def add_book( metadata_profile_id (Optional[int], optional): Metadata Profile. Defaults to first found profile. monitored (bool, optional): Monitor the book. Defaults to True. search_for_new_book (bool, optional): Look for new books. Defaults to False. - author_monitor (ReadarrAuthorMonitor, optional): Monitor the author for books. Defaults to ReadarrAuthorMonitor.ALL. + author_monitor (ReadarrAuthorMonitor, optional): Monitor the author for books. Defaults to "all". author_search_for_missing_books (bool, optional): Search missing books by the author. Defaults to False. Returns: @@ -502,7 +502,7 @@ def add_author( quality_profile_id: Optional[int] = None, metadata_profile_id: Optional[int] = None, monitored: bool = True, - author_monitor: ReadarrAuthorMonitor = ReadarrAuthorMonitor.NONE, + author_monitor: ReadarrAuthorMonitor = "none", author_search_for_missing_books: bool = False, ) -> JsonObject: """Adds an author based on data from lookup, must be an author record @@ -513,7 +513,7 @@ def add_author( quality_profile_id (int, optional): Quality profile id. Defaults to 1. metadata_profile_id (int, optional): Metadata profile id. Defaults to 0. monitored (bool, optional): Should the author be monitored. Defaults to True. - author_monitor (ReadarrAuthorMonitor, optional): What level should the author be monitored. Defaults to "ReadarrAuthorMonitor.NONE". + author_monitor (ReadarrAuthorMonitor, optional): What level should the author be monitored. Defaults to "none". author_search_for_missing_books (bool, optional): Search for any missing books by the author. Defaults to False. Returns: diff --git a/pyproject.toml b/pyproject.toml index 758676a..4e81b70 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,30 +27,29 @@ packages = [ [tool.poetry.dependencies] python = "^3.9" -requests = "^2.21.0" -types-requests = "^2.25.11" +requests = "^2.28.2" +types-requests = "^2.28.11.17" overrides = "^7.3.1" -[tool.poetry.dev-dependencies] -black = {version = "^22.3", allow-prereleases = true} -flake8 = "^3.8.4" -isort = "^5.10.0" +[tool.poetry.group.dev.dependencies] +black = {version = "^22.12.0", allow-prereleases = true} +flake8 = "^3.9.2" +isort = "^5.12.0" mypy = "^0.910" -pre-commit = "^2.15.0" +pre-commit = "^2.21.0" interrogate = "^1.5.0" -Sphinx = "^4.3.2" -sphinx-argparse = "^0.3.1" +Sphinx = "^4.5.0" +sphinx-argparse = "^0.3.2" sphinx-autobuild = "^2021.3.14" -sphinx-rtd-theme = "^1.0.0" -pytest = "^7.1.2" +sphinx-rtd-theme = "^1.2.0" +pytest = "^7.2.2" pytest-cov = "^3.0.0" -pylint = "^2.14.3" +pylint = "^2.17.1" responses = "^0.21.0" -sphinx-toolbox = "^3.1.2" -autoflake = "^1.6.1" - -[tool.poetry.group.dev.dependencies] -ipykernel = "^6.17.1" +autoflake = "^1.7.8" +ipykernel = "^6.22.0" +sphinx-toolbox = "^3.4.0" +enum-tools = "^0.9.0.post1" [tool.black] line-length = 88 @@ -122,5 +121,5 @@ quiet = false color = true [build-system] -requires = ["poetry>=0.12"] +requires = ["poetry-core>=1.4.0"] build-backend = "poetry.masonry.api" diff --git a/sphinx-docs/contributing.rst b/sphinx-docs/contributing.rst index 8f3bc75..2cb1b7f 100644 --- a/sphinx-docs/contributing.rst +++ b/sphinx-docs/contributing.rst @@ -18,7 +18,7 @@ Setup your environment #. Fork the `repository `_ #. Open the repository in VSCode -#. Copy the .devcontainer/recommended-*** files and remove the "recommended-" text +#. Copy the ``.devcontainer/recommended-***`` files and remove the "recommended-" text #. Update the renamed ``recommended-***`` files to suite your environment #. Press ``ctrl + shift + p`` and select ``Remote-Container: Reopen in Container`` #. Once loaded you can begin modification of the module or Documentation @@ -37,6 +37,7 @@ prior to the pull request being submitted. If you are not using devcontainer please register the pre-commit-config: .. code:: bash + poetry run pre-commit install A few guidelines for approval: diff --git a/tests/test_lidarr.py b/tests/test_lidarr.py index bf763cc..b60592b 100644 --- a/tests/test_lidarr.py +++ b/tests/test_lidarr.py @@ -7,29 +7,10 @@ from pyarr.exceptions import ( PyarrMissingArgument, - PyarrMissingProfile, PyarrRecordNotFound, PyarrResourceNotFound, ) from pyarr.lidarr import LidarrAPI -from pyarr.models.common import ( - PyarrBlocklistSortKey, - PyarrDownloadClientSchema, - PyarrHistorySortKey, - PyarrImportListSchema, - PyarrIndexerSchema, - PyarrLogFilterKey, - PyarrLogFilterValue, - PyarrLogSortKey, - PyarrNotificationSchema, - PyarrSortDirection, -) -from pyarr.models.lidarr import ( - LidarrArtistMonitor, - LidarrCommand, - LidarrImportListSchema, - LidarrSortKey, -) from tests import ( LIDARR_ALBUM_TERM, @@ -94,7 +75,7 @@ def test_add_artist(lidarr_client: LidarrAPI): quality_profile_id=qual_profile[0]["id"], metadata_profile_id=meta_profile[0]["id"], monitored=False, - artist_monitor=LidarrArtistMonitor.LATEST_ALBUM, + artist_monitor="latest", artist_search_for_missing_albums=False, ) break @@ -138,7 +119,7 @@ def test_add_album(lidarr_client: LidarrAPI): quality_profile_id=qual_profile[0]["id"], metadata_profile_id=meta_profile[0]["id"], monitored=False, - artist_monitor=LidarrArtistMonitor.LATEST_ALBUM, + artist_monitor="latest", artist_search_for_missing_albums=False, ) break @@ -170,19 +151,19 @@ def test_get_album(lidarr_client: LidarrAPI): def test_post_command(lidarr_client: LidarrAPI): - data = lidarr_client.post_command(name=LidarrCommand.DOWNLOADED_ALBUMS_SCAN) + data = lidarr_client.post_command(name="DownloadedAlbumsScan") assert isinstance(data, dict) - data = lidarr_client.post_command(name=LidarrCommand.ARTIST_SEARCH) + data = lidarr_client.post_command(name="ArtistSearch") assert isinstance(data, dict) - data = lidarr_client.post_command(name=LidarrCommand.REFRESH_ARTIST) + data = lidarr_client.post_command(name="RefreshArtist") assert isinstance(data, dict) - data = lidarr_client.post_command(name=LidarrCommand.REFRESH_ALBUM) + data = lidarr_client.post_command(name="RefreshAlbum") assert isinstance(data, dict) - data = lidarr_client.post_command(name=LidarrCommand.APP_UPDATE_CHECK) + data = lidarr_client.post_command(name="ApplicationUpdateCheck") assert isinstance(data, dict) - data = lidarr_client.post_command(name=LidarrCommand.MISSING_ALBUM_SEARCH) + data = lidarr_client.post_command(name="MissingAlbumSearch") assert isinstance(data, dict) - data = lidarr_client.post_command(name=LidarrCommand.ALBUM_SEARCH) + data = lidarr_client.post_command(name="AlbumSearch") assert isinstance(data, dict) @@ -197,16 +178,16 @@ def test_get_wanted(lidarr_client: LidarrAPI): data = lidarr_client.get_wanted( page=1, page_size=20, - sort_key=LidarrSortKey.ALBUM_TITLE, - sort_dir=PyarrSortDirection.ASC, + sort_key="albums.title", + sort_dir="ascending", ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = lidarr_client.get_wanted(sort_key=LidarrSortKey.TIMELEFT) + data = lidarr_client.get_wanted(sort_key="timeleft") assert False with contextlib.suppress(PyarrMissingArgument): - data = lidarr_client.get_wanted(sort_dir=PyarrSortDirection.DEFAULT) + data = lidarr_client.get_wanted(sort_dir="default") assert False @@ -392,8 +373,8 @@ def test_get_queue(lidarr_mock_client: LidarrAPI): data = lidarr_mock_client.get_queue( page=1, page_size=10, - sort_key=LidarrSortKey.TIMELEFT, - sort_dir=PyarrSortDirection.DEFAULT, + sort_key="timeleft", + sort_dir="default", ) assert isinstance(data, dict) @@ -411,11 +392,11 @@ def test_get_queue(lidarr_mock_client: LidarrAPI): assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = lidarr_mock_client.get_queue(sort_key=LidarrSortKey.ARTIST_ID) + data = lidarr_mock_client.get_queue(sort_key="artistId") assert False with contextlib.suppress(PyarrMissingArgument): - data = lidarr_mock_client.get_queue(sort_dir=PyarrSortDirection.ASC) + data = lidarr_mock_client.get_queue(sort_dir="ascending") assert False @@ -657,24 +638,24 @@ def test_get_log(lidarr_client: LidarrAPI): data = lidarr_client.get_log( page=10, page_size=10, - sort_key=PyarrLogSortKey.ID, - sort_dir=PyarrSortDirection.DESC, - filter_key=PyarrLogFilterKey.LEVEL, - filter_value=PyarrLogFilterValue.ALL, + sort_key="Id", + sort_dir="descending", + filter_key="level", + filter_value="all", ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = lidarr_client.get_log(sort_key=PyarrLogSortKey.ID) + data = lidarr_client.get_log(sort_key="Id") assert False with contextlib.suppress(PyarrMissingArgument): - data = lidarr_client.get_log(sort_dir=PyarrSortDirection.DESC) + data = lidarr_client.get_log(sort_dir="descending") assert False with contextlib.suppress(PyarrMissingArgument): - data = lidarr_client.get_log(filter_key=PyarrLogFilterKey.LEVEL) + data = lidarr_client.get_log(filter_key="level") assert False with contextlib.suppress(PyarrMissingArgument): - data = lidarr_client.get_log(filter_value=PyarrLogFilterValue.ALL) + data = lidarr_client.get_log(filter_value="all") assert False @@ -759,9 +740,7 @@ def test_get_notification_schema(lidarr_client: LidarrAPI): data = lidarr_client.get_notification_schema() assert isinstance(data, list) - data = lidarr_client.get_notification_schema( - implementation=PyarrNotificationSchema.BOXCAR - ) + data = lidarr_client.get_notification_schema(implementation="Boxcar") assert isinstance(data, list) with contextlib.suppress(PyarrRecordNotFound): @@ -809,17 +788,17 @@ def test_get_history(lidarr_client: LidarrAPI): data = lidarr_client.get_history( page=1, page_size=10, - sort_key=PyarrHistorySortKey.TIME, - sort_dir=PyarrSortDirection.DEFAULT, + sort_key="time", + sort_dir="default", ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = lidarr_client.get_history(sort_key=PyarrHistorySortKey.TIME) + data = lidarr_client.get_history(sort_key="time") assert False with contextlib.suppress(PyarrMissingArgument): - data = lidarr_client.get_history(sort_dir=PyarrSortDirection.DESC) + data = lidarr_client.get_history(sort_dir="descending") assert False @@ -905,11 +884,9 @@ def test_upd_quality_definition(lidarr_client: LidarrAPI): def test_get_indexer_schema(lidarr_client: LidarrAPI): data = lidarr_client.get_indexer_schema() assert isinstance(data, list) - data = lidarr_client.get_indexer_schema( - implementation=PyarrIndexerSchema.IP_TORRENTS - ) + data = lidarr_client.get_indexer_schema(implementation="IPTorrents") assert isinstance(data, list) - assert data[0]["implementation"] == PyarrIndexerSchema.IP_TORRENTS + assert data[0]["implementation"] == "IPTorrents" with contextlib.suppress(PyarrRecordNotFound): data = lidarr_client.get_indexer_schema(implementation="polarbear") @@ -956,9 +933,7 @@ def test_get_download_client_schema(lidarr_client: LidarrAPI): data = lidarr_client.get_download_client_schema() assert isinstance(data, list) - data = lidarr_client.get_download_client_schema( - implementation=PyarrDownloadClientSchema.ARIA2 - ) + data = lidarr_client.get_download_client_schema(implementation="Aria2") assert isinstance(data, list) with contextlib.suppress(PyarrRecordNotFound): @@ -971,9 +946,7 @@ def test_get_import_list_schema(lidarr_client: LidarrAPI): data = lidarr_client.get_import_list_schema() assert isinstance(data, list) - data = lidarr_client.get_import_list_schema( - implementation=LidarrImportListSchema.HEADPHONES - ) + data = lidarr_client.get_import_list_schema(implementation="HeadphonesImport") assert isinstance(data, list) with contextlib.suppress(PyarrRecordNotFound): @@ -1076,15 +1049,15 @@ def test_get_blocklist(lidarr_mock_client: LidarrAPI): data = lidarr_mock_client.get_blocklist( page=1, page_size=10, - sort_key=PyarrBlocklistSortKey.DATE, - sort_dir=PyarrSortDirection.ASC, + sort_key="date", + sort_dir="ascending", ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = lidarr_mock_client.get_blocklist(sort_key=PyarrBlocklistSortKey.DATE) + data = lidarr_mock_client.get_blocklist(sort_key="date") assert False with contextlib.suppress(PyarrMissingArgument): - data = lidarr_mock_client.get_blocklist(sort_dir=PyarrSortDirection.ASC) + data = lidarr_mock_client.get_blocklist(sort_dir="ascending") assert False diff --git a/tests/test_radarr.py b/tests/test_radarr.py index 6796518..4a05238 100644 --- a/tests/test_radarr.py +++ b/tests/test_radarr.py @@ -11,35 +11,9 @@ PyarrRecordNotFound, PyarrResourceNotFound, ) -from pyarr.models.common import ( - PyarrBlocklistSortKey, - PyarrDownloadClientSchema, - PyarrHistorySortKey, - PyarrImportListSchema, - PyarrIndexerSchema, - PyarrLogFilterKey, - PyarrLogFilterValue, - PyarrLogSortKey, - PyarrNotificationSchema, - PyarrSortDirection, -) -from pyarr.models.radarr import ( - RadarrAvailabilityType, - RadarrCommands, - RadarrEventType, - RadarrMonitorType, - RadarrSortKeys, -) from pyarr.radarr import RadarrAPI -from pyarr.types import JsonArray, JsonObject - -from tests import ( - RADARR_IMDB, - RADARR_IMDB_LIST, - RADARR_MOVIE_TERM, - RADARR_TMDB, - load_fixture, -) + +from tests import RADARR_IMDB, RADARR_MOVIE_TERM, RADARR_TMDB, load_fixture from tests.conftest import radarr_client, radarr_mock_client @@ -77,23 +51,21 @@ def test_get_command(radarr_client: RadarrAPI): def test_post_command(radarr_client: RadarrAPI): - data = radarr_client.post_command(name=RadarrCommands.RESCAN_MOVIE, movieid=1) + data = radarr_client.post_command(name="RescanMovie", movieid=1) assert isinstance(data, dict) - data = radarr_client.post_command(name=RadarrCommands.REFRESH_MOVIE, seriesId=1) + data = radarr_client.post_command(name="RefreshMovie", seriesId=1) assert isinstance(data, dict) - data = radarr_client.post_command(name=RadarrCommands.MISSING_MOVIES_SEARCH) + data = radarr_client.post_command(name="MissingMoviesSearch") assert isinstance(data, dict) - data = radarr_client.post_command(name=RadarrCommands.DOWNLOADED_MOVIES_SCAN) + data = radarr_client.post_command(name="DownloadedMoviesScan") assert isinstance(data, dict) - data = radarr_client.post_command(name=RadarrCommands.RENAME_FILES, files=[1, 2, 3]) + data = radarr_client.post_command(name="RenameFiles", files=[1, 2, 3]) assert isinstance(data, dict) - data = radarr_client.post_command(name=RadarrCommands.RENAME_FILES) + data = radarr_client.post_command(name="RenameFiles") assert isinstance(data, dict) - data = radarr_client.post_command( - name=RadarrCommands.RENAME_MOVIE, seriesIds=[1, 2, 3] - ) + data = radarr_client.post_command(name="RenameMovie", seriesIds=[1, 2, 3]) assert isinstance(data, dict) - data = radarr_client.post_command(name=RadarrCommands.BACKUP) + data = radarr_client.post_command(name="Backup") assert isinstance(data, dict) @@ -162,8 +134,8 @@ def test_add_movie(radarr_client: RadarrAPI): quality_profile_id=quality_profiles[0]["id"], monitored=False, search_for_movie=False, - monitor=RadarrMonitorType.MOVIE_ONLY, - minimum_availability=RadarrAvailabilityType.ANNOUNCED, + monitor="movieOnly", + minimum_availability="announced", ) assert isinstance(data, dict) @@ -234,17 +206,17 @@ def test_get_history(radarr_client: RadarrAPI): data = radarr_client.get_history( page=1, page_size=10, - sort_key=PyarrHistorySortKey.TIME, - sort_dir=PyarrSortDirection.DEFAULT, + sort_key="time", + sort_dir="default", ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = radarr_client.get_history(sort_key=PyarrHistorySortKey.TIME) + data = radarr_client.get_history(sort_key="time") assert False with contextlib.suppress(PyarrMissingArgument): - data = radarr_client.get_history(sort_dir=PyarrSortDirection.DESC) + data = radarr_client.get_history(sort_dir="descending") assert False @@ -308,24 +280,24 @@ def test_get_log(radarr_client: RadarrAPI): data = radarr_client.get_log( page=10, page_size=10, - sort_key=PyarrLogSortKey.ID, - sort_dir=PyarrSortDirection.DESC, - filter_key=PyarrLogFilterKey.LEVEL, - filter_value=PyarrLogFilterValue.ALL, + sort_key="Id", + sort_dir="descending", + filter_key="level", + filter_value="all", ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = radarr_client.get_log(sort_key=PyarrLogSortKey.ID) + data = radarr_client.get_log(sort_key="Id") assert False with contextlib.suppress(PyarrMissingArgument): - data = radarr_client.get_log(sort_dir=PyarrSortDirection.DESC) + data = radarr_client.get_log(sort_dir="descending") assert False with contextlib.suppress(PyarrMissingArgument): - data = radarr_client.get_log(filter_key=PyarrLogFilterKey.LEVEL) + data = radarr_client.get_log(filter_key="level") assert False with contextlib.suppress(PyarrMissingArgument): - data = radarr_client.get_log(filter_value=PyarrLogFilterValue.ALL) + data = radarr_client.get_log(filter_value="all") assert False @@ -425,9 +397,7 @@ def test_get_notification_schema(radarr_client: RadarrAPI): data = radarr_client.get_notification_schema() assert isinstance(data, list) - data = radarr_client.get_notification_schema( - implementation=PyarrNotificationSchema.BOXCAR - ) + data = radarr_client.get_notification_schema(implementation="Boxcar") assert isinstance(data, list) with contextlib.suppress(PyarrRecordNotFound): @@ -472,9 +442,7 @@ def test_get_download_client_schema(radarr_client: RadarrAPI): data = radarr_client.get_download_client_schema() assert isinstance(data, list) - data = radarr_client.get_download_client_schema( - implementation=PyarrDownloadClientSchema.ARIA2 - ) + data = radarr_client.get_download_client_schema(implementation="Aria2") assert isinstance(data, list) with contextlib.suppress(PyarrRecordNotFound): @@ -487,9 +455,7 @@ def test_get_import_list_schema(radarr_client: RadarrAPI): data = radarr_client.get_import_list_schema() assert isinstance(data, list) - data = radarr_client.get_import_list_schema( - implementation=PyarrImportListSchema.PLEX - ) + data = radarr_client.get_import_list_schema(implementation="PlexImport") assert isinstance(data, list) with contextlib.suppress(PyarrRecordNotFound): @@ -568,11 +534,9 @@ def test_get_custom_filter(radarr_client: RadarrAPI): def test_get_indexer_schema(radarr_client: RadarrAPI): data = radarr_client.get_indexer_schema() assert isinstance(data, list) - data = radarr_client.get_indexer_schema( - implementation=PyarrIndexerSchema.IP_TORRENTS - ) + data = radarr_client.get_indexer_schema(implementation="IPTorrents") assert isinstance(data, list) - assert data[0]["implementation"] == PyarrIndexerSchema.IP_TORRENTS + assert data[0]["implementation"] == "IPTorrents" with contextlib.suppress(PyarrRecordNotFound): data = radarr_client.get_indexer_schema(implementation="polarbear") @@ -633,7 +597,7 @@ def test_upd_indexer(radarr_mock_client: RadarrAPI): # def test_add_notification(radarr_client: RadarrAPI): -# schema = radarr_client.get_notification_schema(implementation=PyarrNotificationSchema.EMAIL) +# schema = radarr_client.get_notification_schema(implementation="Email") # # schema["name"] = "Testing123" # for schema_config in schema["fields"]: @@ -656,9 +620,7 @@ def test_get_movie_history(radarr_client: RadarrAPI): data = radarr_client.get_movie_history(id_=movie[0]["id"]) assert isinstance(data, list) - data = radarr_client.get_movie_history( - id_=movie[0]["id"], event_type=RadarrEventType.UNKNOWN - ) + data = radarr_client.get_movie_history(id_=movie[0]["id"], event_type="unknown") assert isinstance(data, list) @@ -707,15 +669,15 @@ def test_get_blocklist(radarr_mock_client: RadarrAPI): data = radarr_mock_client.get_blocklist( page=1, page_size=10, - sort_key=PyarrBlocklistSortKey.DATE, - sort_dir=PyarrSortDirection.ASC, + sort_key="date", + sort_dir="ascending", ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = radarr_mock_client.get_blocklist(sort_key=PyarrBlocklistSortKey.DATE) + data = radarr_mock_client.get_blocklist(sort_key="date") assert False with contextlib.suppress(PyarrMissingArgument): - data = radarr_mock_client.get_blocklist(sort_dir=PyarrSortDirection.ASC) + data = radarr_mock_client.get_blocklist(sort_dir="ascending") assert False @@ -744,17 +706,17 @@ def test_get_queue(radarr_mock_client: RadarrAPI): data = radarr_mock_client.get_queue( page=1, page_size=20, - sort_key=RadarrSortKeys.TIMELEFT, - sort_dir=PyarrSortDirection.DEFAULT, + sort_key="timeleft", + sort_dir="default", include_unknown_movie_items=False, ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = radarr_mock_client.get_queue(sort_key=RadarrSortKeys.TIMELEFT) + data = radarr_mock_client.get_queue(sort_key="timeleft") assert False with contextlib.suppress(PyarrMissingArgument): - data = radarr_mock_client.get_queue(sort_dir=PyarrSortDirection.DEFAULT) + data = radarr_mock_client.get_queue(sort_dir="default") assert False diff --git a/tests/test_readarr.py b/tests/test_readarr.py index 4f671b8..b363cd4 100644 --- a/tests/test_readarr.py +++ b/tests/test_readarr.py @@ -3,26 +3,13 @@ import pytest import responses -from pyarr.exceptions import ( - PyarrMissingArgument, - PyarrMissingProfile, - PyarrResourceNotFound, -) -from pyarr.models.common import PyarrSortDirection -from pyarr.models.readarr import ( - ReadarrAuthorMonitor, - ReadarrCommands, - ReadarrSearchType, - ReadarrSortKeys, -) +from pyarr.exceptions import PyarrMissingArgument, PyarrResourceNotFound from pyarr.readarr import ReadarrAPI from tests import ( - READARR_ASIN_ID, READARR_AUTHOR_ID, READARR_AUTHOR_TERM, READARR_GOODREADS_ID, - READARR_ISBN_ID, load_fixture, ) @@ -68,29 +55,27 @@ def test_get_command(readarr_client: ReadarrAPI): def test_post_command(readarr_client: ReadarrAPI): - data = readarr_client.post_command(name=ReadarrCommands.APP_UPDATE_CHECK) + data = readarr_client.post_command(name="ApplicationUpdateCheck") assert isinstance(data, dict) - data = readarr_client.post_command(ReadarrCommands.AUTHOR_SEARCH, authorId=1) + data = readarr_client.post_command("AuthorSearch", authorId=1) assert isinstance(data, dict) - data = readarr_client.post_command(ReadarrCommands.BOOK_SEARCH, bookId=1) + data = readarr_client.post_command("BookSearch", bookId=1) assert isinstance(data, dict) - data = readarr_client.post_command(ReadarrCommands.REFRESH_AUTHOR, authorId=1) + data = readarr_client.post_command("RefreshAuthor", authorId=1) assert isinstance(data, dict) - data = readarr_client.post_command(ReadarrCommands.REFRESH_BOOK, bookId=1) + data = readarr_client.post_command("RefreshBook", bookId=1) assert isinstance(data, dict) - data = readarr_client.post_command( - ReadarrCommands.RENAME_AUTHOR, authorIds=[1, 2, 3] - ) + data = readarr_client.post_command("RenameAuthor", authorIds=[1, 2, 3]) assert isinstance(data, dict) - data = readarr_client.post_command(ReadarrCommands.RESCAN_FOLDERS) + data = readarr_client.post_command("RescanFolders") assert isinstance(data, dict) - data = readarr_client.post_command(ReadarrCommands.RSS_SYNC) + data = readarr_client.post_command("RssSync") assert isinstance(data, dict) - data = readarr_client.post_command(ReadarrCommands.BACKUP) + data = readarr_client.post_command("Backup") assert isinstance(data, dict) - data = readarr_client.post_command(ReadarrCommands.MISSING_BOOK_SEARCH) + data = readarr_client.post_command("MissingBookSearch") assert isinstance(data, dict) - data = readarr_client.post_command(ReadarrCommands.RENAME_FILES, authorId=1) + data = readarr_client.post_command("RenameFiles", authorId=1) assert isinstance(data, dict) @@ -104,12 +89,12 @@ def test_get_quality_profile(readarr_client: ReadarrAPI): def test_lookup(readarr_client: ReadarrAPI): - data = readarr_client.lookup(term=f"goodreads:{READARR_GOODREADS_ID}") + data = readarr_client.lookup(term=f"edition:{READARR_GOODREADS_ID}") assert isinstance(data, list) def test_lookup_book(readarr_client: ReadarrAPI): - data = readarr_client.lookup_book(term=f"goodreads:{READARR_GOODREADS_ID}") + data = readarr_client.lookup_book(term=f"edition:{READARR_GOODREADS_ID}") assert isinstance(data, list) @@ -122,9 +107,7 @@ def test_add_book(readarr_client: ReadarrAPI): qual_profile = readarr_client.get_quality_profile() meta_profile = readarr_client.get_metadata_profile() - items = readarr_client.lookup( - f"{ReadarrSearchType.GOODREADS}:{READARR_GOODREADS_ID}" - ) + items = readarr_client.lookup(f"edition:{READARR_GOODREADS_ID}") for item in items: if "book" in item: book = item["book"] @@ -243,16 +226,16 @@ def test_get_missing(readarr_client: ReadarrAPI): data = readarr_client.get_missing( page=1, page_size=20, - sort_key=ReadarrSortKeys.BOOK_ID, - sort_dir=PyarrSortDirection.ASC, + sort_key="Books.Id", + sort_dir="ascending", ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = readarr_client.get_missing(sort_key=ReadarrSortKeys.TIMELEFT) + data = readarr_client.get_missing(sort_key="timeleft") assert False with contextlib.suppress(PyarrMissingArgument): - data = readarr_client.get_missing(sort_dir=PyarrSortDirection.DEFAULT) + data = readarr_client.get_missing(sort_dir="default") assert False @@ -264,17 +247,17 @@ def test_get_cutoff(readarr_client: ReadarrAPI): data = readarr_client.get_cutoff( page=1, page_size=20, - sort_key=ReadarrSortKeys.BOOK_ID, - sort_dir=PyarrSortDirection.ASC, + sort_key="Books.Id", + sort_dir="ascending", monitored=True, ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = readarr_client.get_cutoff(sort_key=ReadarrSortKeys.TIMELEFT) + data = readarr_client.get_cutoff(sort_key="timeleft") assert False with contextlib.suppress(PyarrMissingArgument): - data = readarr_client.get_cutoff(sort_dir=PyarrSortDirection.DEFAULT) + data = readarr_client.get_cutoff(sort_dir="default") assert False @@ -302,7 +285,7 @@ def test_add_author(readarr_client: ReadarrAPI): qual_profile = readarr_client.get_quality_profile() meta_profile = readarr_client.get_metadata_profile() - items = readarr_client.lookup(f"{ReadarrSearchType.AUTHOR}:{READARR_AUTHOR_ID}") + items = readarr_client.lookup(f"author:{READARR_AUTHOR_ID}") for item in items: if "author" in item: author = item["author"] @@ -397,8 +380,8 @@ def test_get_queue(readarr_mock_client: ReadarrAPI): data = readarr_mock_client.get_queue( page=2, page_size=20, - sort_key=ReadarrSortKeys.BOOK_ID, - sort_dir=PyarrSortDirection.ASC, + sort_key="Books.Id", + sort_dir="ascending", unknown_authors=True, include_author=True, include_book=True, @@ -406,10 +389,10 @@ def test_get_queue(readarr_mock_client: ReadarrAPI): assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = readarr_mock_client.get_queue(sort_key=ReadarrSortKeys.TIMELEFT) + data = readarr_mock_client.get_queue(sort_key="timeleft") assert False with contextlib.suppress(PyarrMissingArgument): - data = readarr_mock_client.get_queue(sort_dir=PyarrSortDirection.DEFAULT) + data = readarr_mock_client.get_queue(sort_dir="default") assert False diff --git a/tests/test_sonarr.py b/tests/test_sonarr.py index 9ef6635..b8104b1 100644 --- a/tests/test_sonarr.py +++ b/tests/test_sonarr.py @@ -10,20 +10,6 @@ PyarrRecordNotFound, PyarrResourceNotFound, ) -from pyarr.models.common import ( - PyarrBlocklistSortKey, - PyarrDownloadClientSchema, - PyarrHistorySortKey, - PyarrImportListSchema, - PyarrIndexerSchema, - PyarrLogFilterKey, - PyarrLogFilterValue, - PyarrLogSortKey, - PyarrNotificationSchema, - PyarrSortDirection, - PyarrTaskSortKey, -) -from pyarr.models.sonarr import SonarrCommands, SonarrSortKey from pyarr.sonarr import SonarrAPI from tests import SONARR_TVDB, load_fixture @@ -63,35 +49,31 @@ def test_get_command(sonarr_client: SonarrAPI): def test_post_command(sonarr_client: SonarrAPI): - data = sonarr_client.post_command(name=SonarrCommands.REFRESH_SERIES) + data = sonarr_client.post_command(name="RefreshSeries") assert isinstance(data, dict) - data = sonarr_client.post_command(SonarrCommands.REFRESH_SERIES, seriesId=1) + data = sonarr_client.post_command("RefreshSeries", seriesId=1) assert isinstance(data, dict) - data = sonarr_client.post_command(SonarrCommands.RESCAN_SERIES) + data = sonarr_client.post_command("RescanSeries") assert isinstance(data, dict) - data = sonarr_client.post_command(SonarrCommands.RESCAN_SERIES, seriesId=1) + data = sonarr_client.post_command("RescanSeries", seriesId=1) assert isinstance(data, dict) - data = sonarr_client.post_command( - SonarrCommands.EPISODE_SEARCH, episodeIds=[1, 2, 3] - ) + data = sonarr_client.post_command("EpisodeSearch", episodeIds=[1, 2, 3]) assert isinstance(data, dict) - data = sonarr_client.post_command( - SonarrCommands.SEASON_SEARCH, seriesId=1, seasonNumber=1 - ) + data = sonarr_client.post_command("SeasonSearch", seriesId=1, seasonNumber=1) assert isinstance(data, dict) - data = sonarr_client.post_command(SonarrCommands.SERIES_SEARCH, seriesId=1) + data = sonarr_client.post_command("SeriesSearch", seriesId=1) assert isinstance(data, dict) - data = sonarr_client.post_command(SonarrCommands.DOWNLOADED_EPISODES_SCAN) + data = sonarr_client.post_command("DownloadedEpisodesScan") assert isinstance(data, dict) - data = sonarr_client.post_command(SonarrCommands.RSS_SYNC) + data = sonarr_client.post_command("RssSync") assert isinstance(data, dict) - data = sonarr_client.post_command(SonarrCommands.RENAME_FILES, files=[1, 2, 3]) + data = sonarr_client.post_command("RenameFiles", files=[1, 2, 3]) assert isinstance(data, dict) - data = sonarr_client.post_command(SonarrCommands.RENAME_SERIES, seriesIds=[1, 2, 3]) + data = sonarr_client.post_command("RenameSeries", seriesIds=[1, 2, 3]) assert isinstance(data, dict) - data = sonarr_client.post_command(SonarrCommands.BACKUP) + data = sonarr_client.post_command("Backup") assert isinstance(data, dict) - data = sonarr_client.post_command(SonarrCommands.MISSING_EPISODE_SEARCH) + data = sonarr_client.post_command("missingEpisodeSearch") assert isinstance(data, dict) @@ -280,17 +262,17 @@ def test_get_wanted(sonarr_client: SonarrAPI): data = sonarr_client.get_wanted( page=2, page_size=20, - sort_key=SonarrSortKey.SERIES_TITLE, - sort_dir=PyarrSortDirection.ASC, + sort_key="series.sortTitle", + sort_dir="ascending", ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_wanted(sort_key=SonarrSortKey.TIMELEFT) + data = sonarr_client.get_wanted(sort_key="timeleft") assert False with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_wanted(sort_dir=PyarrSortDirection.DEFAULT) + data = sonarr_client.get_wanted(sort_dir="default") assert False @@ -307,18 +289,18 @@ def test_get_history(sonarr_client: SonarrAPI): data = sonarr_client.get_history( page=1, page_size=10, - sort_key=PyarrHistorySortKey.TIME, - sort_dir=PyarrSortDirection.DEFAULT, + sort_key="time", + sort_dir="default", id_=episodes[0]["id"], ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_history(sort_key=PyarrHistorySortKey.TIME) + data = sonarr_client.get_history(sort_key="time") assert False with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_history(sort_dir=PyarrSortDirection.DESC) + data = sonarr_client.get_history(sort_dir="descending") assert False @@ -338,11 +320,9 @@ def test_get_calendar(sonarr_client: SonarrAPI): def test_get_indexer_schema(sonarr_client: SonarrAPI): data = sonarr_client.get_indexer_schema() assert isinstance(data, list) - data = sonarr_client.get_indexer_schema( - implementation=PyarrIndexerSchema.IP_TORRENTS - ) + data = sonarr_client.get_indexer_schema(implementation="IPTorrents") assert isinstance(data, list) - assert data[0]["implementation"] == PyarrIndexerSchema.IP_TORRENTS + assert data[0]["implementation"] == "IPTorrents" with contextlib.suppress(PyarrRecordNotFound): data = sonarr_client.get_indexer_schema(implementation="polarbear") @@ -449,24 +429,24 @@ def test_get_log(sonarr_client: SonarrAPI): data = sonarr_client.get_log( page=10, page_size=10, - sort_key=PyarrLogSortKey.ID, - sort_dir=PyarrSortDirection.DESC, - filter_key=PyarrLogFilterKey.LEVEL, - filter_value=PyarrLogFilterValue.ALL, + sort_key="Id", + sort_dir="descending", + filter_key="level", + filter_value="all", ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_log(sort_key=PyarrLogSortKey.ID) + data = sonarr_client.get_log(sort_key="Id") assert False with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_log(sort_dir=PyarrSortDirection.DESC) + data = sonarr_client.get_log(sort_dir="descending") assert False with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_log(filter_key=PyarrLogFilterKey.LEVEL) + data = sonarr_client.get_log(filter_key="level") assert False with contextlib.suppress(PyarrMissingArgument): - data = sonarr_client.get_log(filter_value=PyarrLogFilterValue.ALL) + data = sonarr_client.get_log(filter_value="all") assert False @@ -554,9 +534,7 @@ def test_get_notification_schema(sonarr_client: SonarrAPI): data = sonarr_client.get_notification_schema() assert isinstance(data, list) - data = sonarr_client.get_notification_schema( - implementation=PyarrNotificationSchema.BOXCAR - ) + data = sonarr_client.get_notification_schema(implementation="Boxcar") assert isinstance(data, list) with contextlib.suppress(PyarrRecordNotFound): @@ -601,9 +579,7 @@ def test_get_download_client_schema(sonarr_client: SonarrAPI): data = sonarr_client.get_download_client_schema() assert isinstance(data, list) - data = sonarr_client.get_download_client_schema( - implementation=PyarrDownloadClientSchema.ARIA2 - ) + data = sonarr_client.get_download_client_schema(implementation="Aria2") assert isinstance(data, list) with contextlib.suppress(PyarrRecordNotFound): @@ -616,9 +592,7 @@ def test_get_import_list_schema(sonarr_client: SonarrAPI): data = sonarr_client.get_import_list_schema() assert isinstance(data, list) - data = sonarr_client.get_import_list_schema( - implementation=PyarrImportListSchema.PLEX - ) + data = sonarr_client.get_import_list_schema(implementation="PlexImport") assert isinstance(data, list) with contextlib.suppress(PyarrRecordNotFound): @@ -683,8 +657,8 @@ def test_get_queue(sonarr_mock_client: SonarrAPI): data = sonarr_mock_client.get_queue( page=1, page_size=20, - sort_key=SonarrSortKey.TIMELEFT, - sort_dir=PyarrSortDirection.DEFAULT, + sort_key="timeleft", + sort_dir="default", include_unknown_series_items=True, include_series=True, include_episode=True, @@ -692,10 +666,10 @@ def test_get_queue(sonarr_mock_client: SonarrAPI): assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = sonarr_mock_client.get_queue(sort_key=SonarrSortKey.TIMELEFT) + data = sonarr_mock_client.get_queue(sort_key="timeleft") assert False with contextlib.suppress(PyarrMissingArgument): - data = sonarr_mock_client.get_queue(sort_dir=PyarrSortDirection.DEFAULT) + data = sonarr_mock_client.get_queue(sort_dir="default") assert False @@ -724,15 +698,15 @@ def test_get_blocklist(sonarr_mock_client: SonarrAPI): data = sonarr_mock_client.get_blocklist( page=1, page_size=10, - sort_key=PyarrBlocklistSortKey.DATE, - sort_dir=PyarrSortDirection.ASC, + sort_key="date", + sort_dir="ascending", ) assert isinstance(data, dict) with contextlib.suppress(PyarrMissingArgument): - data = sonarr_mock_client.get_blocklist(sort_key=PyarrBlocklistSortKey.DATE) + data = sonarr_mock_client.get_blocklist(sort_key="date") assert False with contextlib.suppress(PyarrMissingArgument): - data = sonarr_mock_client.get_blocklist(sort_dir=PyarrSortDirection.ASC) + data = sonarr_mock_client.get_blocklist(sort_dir="ascending") assert False From eaed5f3463ada2fadfe5f6a818aa267619dbd645 Mon Sep 17 00:00:00 2001 From: marksie1988 Date: Thu, 30 Mar 2023 14:06:05 +0000 Subject: [PATCH 53/53] ci: update to check python 3.9, 3.10 & 3.11 --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b5944ee..1b921bb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 - name: Setup Python ${{ matrix.python-version }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6dc50b9..303dd06 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,16 +12,19 @@ on: jobs: code-quality: - + name: ๐Ÿ“Š Check code quality runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 - - name: Setup Python 3.10 + - name: Setup Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: - python-version: 3.10 + python-version: ${{ matrix.python-version }} - name: Build docker images run: docker compose -f .ci/docker-compose.yml - name: ๐Ÿงช Check tests are passing