vectorbt 0.27.0__tar.gz → 0.27.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {vectorbt-0.27.0 → vectorbt-0.27.2}/LICENSE.md +1 -1
- {vectorbt-0.27.0/vectorbt.egg-info → vectorbt-0.27.2}/PKG-INFO +24 -3
- {vectorbt-0.27.0 → vectorbt-0.27.2}/setup.py +12 -1
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/_version.py +1 -1
- {vectorbt-0.27.0 → vectorbt-0.27.2/vectorbt.egg-info}/PKG-INFO +24 -3
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt.egg-info/requires.txt +12 -1
- {vectorbt-0.27.0 → vectorbt-0.27.2}/MANIFEST.in +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/README.md +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/setup.cfg +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/tests/__init__.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/tests/test_base.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/tests/test_data.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/tests/test_generic.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/tests/test_indicators.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/tests/test_labels.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/tests/test_portfolio.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/tests/test_records.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/tests/test_returns.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/tests/test_settings.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/tests/test_signals.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/tests/test_utils.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/tests/utils.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/__init__.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/_settings.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/_typing.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/base/__init__.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/base/accessors.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/base/array_wrapper.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/base/column_grouper.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/base/combine_fns.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/base/index_fns.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/base/indexing.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/base/reshape_fns.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/data/__init__.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/data/base.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/data/custom.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/data/updater.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/generic/__init__.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/generic/accessors.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/generic/decorators.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/generic/drawdowns.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/generic/enums.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/generic/nb.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/generic/plots_builder.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/generic/plotting.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/generic/ranges.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/generic/splitters.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/generic/stats_builder.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/indicators/__init__.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/indicators/basic.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/indicators/configs.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/indicators/factory.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/indicators/nb.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/labels/__init__.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/labels/enums.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/labels/generators.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/labels/nb.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/messaging/__init__.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/messaging/telegram.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/ohlcv_accessors.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/portfolio/__init__.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/portfolio/base.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/portfolio/decorators.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/portfolio/enums.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/portfolio/logs.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/portfolio/nb.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/portfolio/orders.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/portfolio/trades.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/px_accessors.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/records/__init__.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/records/base.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/records/col_mapper.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/records/decorators.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/records/mapped_array.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/records/nb.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/returns/__init__.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/returns/accessors.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/returns/metrics.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/returns/nb.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/returns/qs_adapter.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/root_accessors.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/signals/__init__.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/signals/accessors.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/signals/enums.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/signals/factory.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/signals/generators.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/signals/nb.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/templates/dark.json +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/templates/light.json +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/templates/seaborn.json +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/__init__.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/array_.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/attr_.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/checks.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/colors.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/config.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/datetime_.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/decorators.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/docs.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/enum_.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/figure.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/image_.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/mapping.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/math_.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/module_.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/params.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/random_.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/requests_.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/schedule_.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/tags.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt/utils/template.py +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt.egg-info/SOURCES.txt +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt.egg-info/dependency_links.txt +0 -0
- {vectorbt-0.27.0 → vectorbt-0.27.2}/vectorbt.egg-info/top_level.txt +0 -0
|
@@ -200,7 +200,7 @@ Licensor: Oleg Polakow
|
|
|
200
200
|
same "printed page" as the copyright notice for easier
|
|
201
201
|
identification within third-party archives.
|
|
202
202
|
|
|
203
|
-
Copyright
|
|
203
|
+
Copyright 2025 Oleg Polakow
|
|
204
204
|
|
|
205
205
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
206
206
|
you may not use this file except in compliance with the License.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: vectorbt
|
|
3
|
-
Version: 0.27.
|
|
3
|
+
Version: 0.27.2
|
|
4
4
|
Summary: Python library for backtesting and analyzing trading strategies at scale
|
|
5
5
|
Home-page: https://github.com/polakowo/vectorbt
|
|
6
6
|
Author: Oleg Polakow
|
|
@@ -29,7 +29,7 @@ Requires-Dist: numpy>=1.16.5
|
|
|
29
29
|
Requires-Dist: pandas
|
|
30
30
|
Requires-Dist: scipy
|
|
31
31
|
Requires-Dist: matplotlib
|
|
32
|
-
Requires-Dist: plotly
|
|
32
|
+
Requires-Dist: plotly<6.0.0,>=4.12.0
|
|
33
33
|
Requires-Dist: ipywidgets>=7.0.0
|
|
34
34
|
Requires-Dist: numba<0.57.0,>=0.53.1; python_version < "3.10"
|
|
35
35
|
Requires-Dist: numba<0.57.0,>=0.56.0; python_version >= "3.10" and python_version < "3.11"
|
|
@@ -55,10 +55,31 @@ Requires-Dist: pandas_ta; extra == "full"
|
|
|
55
55
|
Requires-Dist: TA-Lib; extra == "full"
|
|
56
56
|
Requires-Dist: python-telegram-bot<20.0,>=13.4; extra == "full"
|
|
57
57
|
Requires-Dist: quantstats>=0.0.37; extra == "full"
|
|
58
|
+
Provides-Extra: full-no-talib
|
|
59
|
+
Requires-Dist: yfinance>=0.2.22; extra == "full-no-talib"
|
|
60
|
+
Requires-Dist: python-binance; extra == "full-no-talib"
|
|
61
|
+
Requires-Dist: ccxt>=4.0.14; extra == "full-no-talib"
|
|
62
|
+
Requires-Dist: alpaca-py; extra == "full-no-talib"
|
|
63
|
+
Requires-Dist: ray>=1.4.1; extra == "full-no-talib"
|
|
64
|
+
Requires-Dist: ta; extra == "full-no-talib"
|
|
65
|
+
Requires-Dist: pandas_ta; extra == "full-no-talib"
|
|
66
|
+
Requires-Dist: python-telegram-bot<20.0,>=13.4; extra == "full-no-talib"
|
|
67
|
+
Requires-Dist: quantstats>=0.0.37; extra == "full-no-talib"
|
|
58
68
|
Provides-Extra: cov
|
|
59
69
|
Requires-Dist: pytest; extra == "cov"
|
|
60
70
|
Requires-Dist: pytest-cov; extra == "cov"
|
|
61
71
|
Requires-Dist: codecov; extra == "cov"
|
|
72
|
+
Dynamic: author
|
|
73
|
+
Dynamic: author-email
|
|
74
|
+
Dynamic: classifier
|
|
75
|
+
Dynamic: description
|
|
76
|
+
Dynamic: description-content-type
|
|
77
|
+
Dynamic: home-page
|
|
78
|
+
Dynamic: license
|
|
79
|
+
Dynamic: provides-extra
|
|
80
|
+
Dynamic: requires-dist
|
|
81
|
+
Dynamic: requires-python
|
|
82
|
+
Dynamic: summary
|
|
62
83
|
|
|
63
84
|
<div align="center">
|
|
64
85
|
<a href="https://vectorbt.pro/" alt="https://vectorbt.pro/">
|
|
@@ -25,7 +25,7 @@ setup(
|
|
|
25
25
|
'pandas',
|
|
26
26
|
'scipy',
|
|
27
27
|
'matplotlib',
|
|
28
|
-
'plotly>=4.12.0',
|
|
28
|
+
'plotly>=4.12.0, <6.0.0',
|
|
29
29
|
'ipywidgets>=7.0.0',
|
|
30
30
|
"numba>=0.53.1, <0.57.0; python_version<'3.10'",
|
|
31
31
|
"numba>=0.56.0, <0.57.0; python_version>='3.10' and python_version<'3.11'",
|
|
@@ -54,6 +54,17 @@ setup(
|
|
|
54
54
|
'python-telegram-bot>=13.4,<20.0', # LGPLv3
|
|
55
55
|
'quantstats>=0.0.37'
|
|
56
56
|
],
|
|
57
|
+
'full-no-talib': [
|
|
58
|
+
'yfinance>=0.2.22',
|
|
59
|
+
'python-binance',
|
|
60
|
+
'ccxt>=4.0.14',
|
|
61
|
+
'alpaca-py',
|
|
62
|
+
'ray>=1.4.1',
|
|
63
|
+
'ta',
|
|
64
|
+
'pandas_ta',
|
|
65
|
+
'python-telegram-bot>=13.4,<20.0', # LGPLv3
|
|
66
|
+
'quantstats>=0.0.37'
|
|
67
|
+
],
|
|
57
68
|
'cov': [
|
|
58
69
|
'pytest',
|
|
59
70
|
'pytest-cov',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: vectorbt
|
|
3
|
-
Version: 0.27.
|
|
3
|
+
Version: 0.27.2
|
|
4
4
|
Summary: Python library for backtesting and analyzing trading strategies at scale
|
|
5
5
|
Home-page: https://github.com/polakowo/vectorbt
|
|
6
6
|
Author: Oleg Polakow
|
|
@@ -29,7 +29,7 @@ Requires-Dist: numpy>=1.16.5
|
|
|
29
29
|
Requires-Dist: pandas
|
|
30
30
|
Requires-Dist: scipy
|
|
31
31
|
Requires-Dist: matplotlib
|
|
32
|
-
Requires-Dist: plotly
|
|
32
|
+
Requires-Dist: plotly<6.0.0,>=4.12.0
|
|
33
33
|
Requires-Dist: ipywidgets>=7.0.0
|
|
34
34
|
Requires-Dist: numba<0.57.0,>=0.53.1; python_version < "3.10"
|
|
35
35
|
Requires-Dist: numba<0.57.0,>=0.56.0; python_version >= "3.10" and python_version < "3.11"
|
|
@@ -55,10 +55,31 @@ Requires-Dist: pandas_ta; extra == "full"
|
|
|
55
55
|
Requires-Dist: TA-Lib; extra == "full"
|
|
56
56
|
Requires-Dist: python-telegram-bot<20.0,>=13.4; extra == "full"
|
|
57
57
|
Requires-Dist: quantstats>=0.0.37; extra == "full"
|
|
58
|
+
Provides-Extra: full-no-talib
|
|
59
|
+
Requires-Dist: yfinance>=0.2.22; extra == "full-no-talib"
|
|
60
|
+
Requires-Dist: python-binance; extra == "full-no-talib"
|
|
61
|
+
Requires-Dist: ccxt>=4.0.14; extra == "full-no-talib"
|
|
62
|
+
Requires-Dist: alpaca-py; extra == "full-no-talib"
|
|
63
|
+
Requires-Dist: ray>=1.4.1; extra == "full-no-talib"
|
|
64
|
+
Requires-Dist: ta; extra == "full-no-talib"
|
|
65
|
+
Requires-Dist: pandas_ta; extra == "full-no-talib"
|
|
66
|
+
Requires-Dist: python-telegram-bot<20.0,>=13.4; extra == "full-no-talib"
|
|
67
|
+
Requires-Dist: quantstats>=0.0.37; extra == "full-no-talib"
|
|
58
68
|
Provides-Extra: cov
|
|
59
69
|
Requires-Dist: pytest; extra == "cov"
|
|
60
70
|
Requires-Dist: pytest-cov; extra == "cov"
|
|
61
71
|
Requires-Dist: codecov; extra == "cov"
|
|
72
|
+
Dynamic: author
|
|
73
|
+
Dynamic: author-email
|
|
74
|
+
Dynamic: classifier
|
|
75
|
+
Dynamic: description
|
|
76
|
+
Dynamic: description-content-type
|
|
77
|
+
Dynamic: home-page
|
|
78
|
+
Dynamic: license
|
|
79
|
+
Dynamic: provides-extra
|
|
80
|
+
Dynamic: requires-dist
|
|
81
|
+
Dynamic: requires-python
|
|
82
|
+
Dynamic: summary
|
|
62
83
|
|
|
63
84
|
<div align="center">
|
|
64
85
|
<a href="https://vectorbt.pro/" alt="https://vectorbt.pro/">
|
|
@@ -2,7 +2,7 @@ numpy>=1.16.5
|
|
|
2
2
|
pandas
|
|
3
3
|
scipy
|
|
4
4
|
matplotlib
|
|
5
|
-
plotly
|
|
5
|
+
plotly<6.0.0,>=4.12.0
|
|
6
6
|
ipywidgets>=7.0.0
|
|
7
7
|
dill
|
|
8
8
|
tqdm
|
|
@@ -42,3 +42,14 @@ pandas_ta
|
|
|
42
42
|
TA-Lib
|
|
43
43
|
python-telegram-bot<20.0,>=13.4
|
|
44
44
|
quantstats>=0.0.37
|
|
45
|
+
|
|
46
|
+
[full-no-talib]
|
|
47
|
+
yfinance>=0.2.22
|
|
48
|
+
python-binance
|
|
49
|
+
ccxt>=4.0.14
|
|
50
|
+
alpaca-py
|
|
51
|
+
ray>=1.4.1
|
|
52
|
+
ta
|
|
53
|
+
pandas_ta
|
|
54
|
+
python-telegram-bot<20.0,>=13.4
|
|
55
|
+
quantstats>=0.0.37
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|