lora-python 0.5.4__tar.gz → 0.5.5__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.
- {lora_python-0.5.4 → lora_python-0.5.5}/Cargo.lock +14 -14
- {lora_python-0.5.4 → lora_python-0.5.5}/Cargo.toml +9 -9
- {lora_python-0.5.4 → lora_python-0.5.5}/PKG-INFO +1 -1
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/src/archive.rs +1 -1
- {lora_python-0.5.4 → lora_python-0.5.5}/pyproject.toml +1 -1
- {lora_python-0.5.4 → lora_python-0.5.5}/LICENSE +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/README.md +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-analyzer/Cargo.toml +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-analyzer/src/analyzer.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-analyzer/src/errors.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-analyzer/src/lib.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-analyzer/src/resolved.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-analyzer/src/scope.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-analyzer/src/symbols.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-ast/Cargo.toml +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-ast/src/ast.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-ast/src/lib.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-compiler/Cargo.toml +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-compiler/src/lib.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-compiler/src/logical.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-compiler/src/optimizer.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-compiler/src/pattern.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-compiler/src/physical.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-compiler/src/planner.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/Cargo.toml +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/benches/advanced_benchmarks.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/benches/engine_benchmarks.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/benches/fixtures.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/benches/perf_smoke_baseline.json +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/benches/perf_smoke_benchmarks.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/benches/scale_benchmarks.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/benches/temporal_spatial_benchmarks.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/benches/wal_benchmarks.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/src/database.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/src/lib.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/src/named.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/src/stream.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/src/transaction.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/advanced_queries.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/aggregation.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/backend_stub.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/create.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/errors.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/expressions.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/functions_extended.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/invariants.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/match.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/merge.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/ordering.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/parameters.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/parser.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/paths.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/projection.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/seeds.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/snapshot.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/spatial.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/temporal.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/test_helpers.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/transactions.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/types_advanced.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/union.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/update.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/vectors.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/wal.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/where_clause.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/tests/with.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-executor/Cargo.toml +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-executor/src/errors.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-executor/src/eval.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-executor/src/executor.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-executor/src/lib.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-executor/src/pull.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-executor/src/value.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-parser/Cargo.toml +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-parser/src/cypher.pest +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-parser/src/error.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-parser/src/lib.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-parser/src/parser.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-python/.gitignore +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-python/Cargo.toml +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-python/LICENSE +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-python/README.md +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-python/build.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-python/examples/async_demo.py +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-python/examples/basic.py +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-python/src/lib.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-python/tests/test_async.py +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-python/tests/test_sync.py +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-store/Cargo.toml +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-store/src/graph.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-store/src/lib.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-store/src/memory.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-store/src/mutation.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-store/src/snapshot.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-store/src/spatial.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-store/src/temporal.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-store/src/vector.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-wal/Cargo.toml +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-wal/src/config.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-wal/src/dir.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-wal/src/error.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-wal/src/lib.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-wal/src/lock.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-wal/src/lsn.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-wal/src/record.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-wal/src/recorder_adapter.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-wal/src/replay.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-wal/src/segment.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-wal/src/testing.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-wal/src/wal.rs +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/python/lora_python/__init__.py +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/python/lora_python/_async.py +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/python/lora_python/_native.pyi +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/python/lora_python/py.typed +0 -0
- {lora_python-0.5.4 → lora_python-0.5.5}/python/lora_python/types.py +0 -0
|
@@ -651,7 +651,7 @@ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
|
651
651
|
|
|
652
652
|
[[package]]
|
|
653
653
|
name = "lora-analyzer"
|
|
654
|
-
version = "0.5.
|
|
654
|
+
version = "0.5.5"
|
|
655
655
|
dependencies = [
|
|
656
656
|
"lora-ast",
|
|
657
657
|
"lora-parser",
|
|
@@ -661,14 +661,14 @@ dependencies = [
|
|
|
661
661
|
|
|
662
662
|
[[package]]
|
|
663
663
|
name = "lora-ast"
|
|
664
|
-
version = "0.5.
|
|
664
|
+
version = "0.5.5"
|
|
665
665
|
dependencies = [
|
|
666
666
|
"smallvec 2.0.0-alpha.12",
|
|
667
667
|
]
|
|
668
668
|
|
|
669
669
|
[[package]]
|
|
670
670
|
name = "lora-compiler"
|
|
671
|
-
version = "0.5.
|
|
671
|
+
version = "0.5.5"
|
|
672
672
|
dependencies = [
|
|
673
673
|
"lora-analyzer",
|
|
674
674
|
"lora-ast",
|
|
@@ -676,7 +676,7 @@ dependencies = [
|
|
|
676
676
|
|
|
677
677
|
[[package]]
|
|
678
678
|
name = "lora-database"
|
|
679
|
-
version = "0.5.
|
|
679
|
+
version = "0.5.5"
|
|
680
680
|
dependencies = [
|
|
681
681
|
"anyhow",
|
|
682
682
|
"criterion",
|
|
@@ -694,7 +694,7 @@ dependencies = [
|
|
|
694
694
|
|
|
695
695
|
[[package]]
|
|
696
696
|
name = "lora-executor"
|
|
697
|
-
version = "0.5.
|
|
697
|
+
version = "0.5.5"
|
|
698
698
|
dependencies = [
|
|
699
699
|
"lora-analyzer",
|
|
700
700
|
"lora-ast",
|
|
@@ -708,7 +708,7 @@ dependencies = [
|
|
|
708
708
|
|
|
709
709
|
[[package]]
|
|
710
710
|
name = "lora-ffi"
|
|
711
|
-
version = "0.5.
|
|
711
|
+
version = "0.5.5"
|
|
712
712
|
dependencies = [
|
|
713
713
|
"lora-database",
|
|
714
714
|
"lora-store",
|
|
@@ -718,7 +718,7 @@ dependencies = [
|
|
|
718
718
|
|
|
719
719
|
[[package]]
|
|
720
720
|
name = "lora-node"
|
|
721
|
-
version = "0.5.
|
|
721
|
+
version = "0.5.5"
|
|
722
722
|
dependencies = [
|
|
723
723
|
"anyhow",
|
|
724
724
|
"lora-database",
|
|
@@ -732,7 +732,7 @@ dependencies = [
|
|
|
732
732
|
|
|
733
733
|
[[package]]
|
|
734
734
|
name = "lora-parser"
|
|
735
|
-
version = "0.5.
|
|
735
|
+
version = "0.5.5"
|
|
736
736
|
dependencies = [
|
|
737
737
|
"lora-ast",
|
|
738
738
|
"pest",
|
|
@@ -743,7 +743,7 @@ dependencies = [
|
|
|
743
743
|
|
|
744
744
|
[[package]]
|
|
745
745
|
name = "lora-python"
|
|
746
|
-
version = "0.5.
|
|
746
|
+
version = "0.5.5"
|
|
747
747
|
dependencies = [
|
|
748
748
|
"anyhow",
|
|
749
749
|
"lora-database",
|
|
@@ -755,7 +755,7 @@ dependencies = [
|
|
|
755
755
|
|
|
756
756
|
[[package]]
|
|
757
757
|
name = "lora-server"
|
|
758
|
-
version = "0.5.
|
|
758
|
+
version = "0.5.5"
|
|
759
759
|
dependencies = [
|
|
760
760
|
"anyhow",
|
|
761
761
|
"axum",
|
|
@@ -769,7 +769,7 @@ dependencies = [
|
|
|
769
769
|
|
|
770
770
|
[[package]]
|
|
771
771
|
name = "lora-store"
|
|
772
|
-
version = "0.5.
|
|
772
|
+
version = "0.5.5"
|
|
773
773
|
dependencies = [
|
|
774
774
|
"bincode",
|
|
775
775
|
"crc32fast",
|
|
@@ -781,7 +781,7 @@ dependencies = [
|
|
|
781
781
|
|
|
782
782
|
[[package]]
|
|
783
783
|
name = "lora-wal"
|
|
784
|
-
version = "0.5.
|
|
784
|
+
version = "0.5.5"
|
|
785
785
|
dependencies = [
|
|
786
786
|
"bincode",
|
|
787
787
|
"crc32fast",
|
|
@@ -792,7 +792,7 @@ dependencies = [
|
|
|
792
792
|
|
|
793
793
|
[[package]]
|
|
794
794
|
name = "lora-wasm"
|
|
795
|
-
version = "0.5.
|
|
795
|
+
version = "0.5.5"
|
|
796
796
|
dependencies = [
|
|
797
797
|
"anyhow",
|
|
798
798
|
"console_error_panic_hook",
|
|
@@ -807,7 +807,7 @@ dependencies = [
|
|
|
807
807
|
|
|
808
808
|
[[package]]
|
|
809
809
|
name = "lora_ruby"
|
|
810
|
-
version = "0.5.
|
|
810
|
+
version = "0.5.5"
|
|
811
811
|
dependencies = [
|
|
812
812
|
"anyhow",
|
|
813
813
|
"lora-database",
|
|
@@ -4,7 +4,7 @@ resolver = "2"
|
|
|
4
4
|
|
|
5
5
|
[workspace.package]
|
|
6
6
|
edition = "2021"
|
|
7
|
-
version = "0.5.
|
|
7
|
+
version = "0.5.5"
|
|
8
8
|
license = "BUSL-1.1"
|
|
9
9
|
authors = ["LoraDB, Inc."]
|
|
10
10
|
repository = "https://github.com/lora-db/lora"
|
|
@@ -15,14 +15,14 @@ rust-version = "1.87"
|
|
|
15
15
|
# Internal crates — versions are kept in lockstep with [workspace.package].version
|
|
16
16
|
# by `scripts/sync-versions.mjs`. Both `path` and `version` are set so that
|
|
17
17
|
# `cargo publish` works (crates.io cannot resolve path-only deps).
|
|
18
|
-
lora-ast = { path = "crates/lora-ast", version = "=0.5.
|
|
19
|
-
lora-parser = { path = "crates/lora-parser", version = "=0.5.
|
|
20
|
-
lora-analyzer = { path = "crates/lora-analyzer", version = "=0.5.
|
|
21
|
-
lora-compiler = { path = "crates/lora-compiler", version = "=0.5.
|
|
22
|
-
lora-store = { path = "crates/lora-store", version = "=0.5.
|
|
23
|
-
lora-wal = { path = "crates/lora-wal", version = "=0.5.
|
|
24
|
-
lora-executor = { path = "crates/lora-executor", version = "=0.5.
|
|
25
|
-
lora-database = { path = "crates/lora-database", version = "=0.5.
|
|
18
|
+
lora-ast = { path = "crates/lora-ast", version = "=0.5.5" }
|
|
19
|
+
lora-parser = { path = "crates/lora-parser", version = "=0.5.5" }
|
|
20
|
+
lora-analyzer = { path = "crates/lora-analyzer", version = "=0.5.5" }
|
|
21
|
+
lora-compiler = { path = "crates/lora-compiler", version = "=0.5.5" }
|
|
22
|
+
lora-store = { path = "crates/lora-store", version = "=0.5.5" }
|
|
23
|
+
lora-wal = { path = "crates/lora-wal", version = "=0.5.5" }
|
|
24
|
+
lora-executor = { path = "crates/lora-executor", version = "=0.5.5" }
|
|
25
|
+
lora-database = { path = "crates/lora-database", version = "=0.5.5" }
|
|
26
26
|
|
|
27
27
|
# External crates.
|
|
28
28
|
anyhow = "1"
|
|
@@ -269,7 +269,7 @@ fn write_archive_tmp(wal_dir: &Path, tmp_path: &Path) -> Result<(), WalError> {
|
|
|
269
269
|
let file = OpenOptions::new()
|
|
270
270
|
.write(true)
|
|
271
271
|
.create_new(true)
|
|
272
|
-
.open(
|
|
272
|
+
.open(tmp_path)?;
|
|
273
273
|
let writer = BufWriter::new(file);
|
|
274
274
|
let mut zip = ZipWriter::new(writer);
|
|
275
275
|
// Fast deflate keeps the ZIP broadly compatible (WinRAR, Explorer,
|
|
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
|
{lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/benches/perf_smoke_baseline.json
RENAMED
|
File without changes
|
{lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/benches/perf_smoke_benchmarks.rs
RENAMED
|
File without changes
|
|
File without changes
|
{lora_python-0.5.4 → lora_python-0.5.5}/crates/lora-database/benches/temporal_spatial_benchmarks.rs
RENAMED
|
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
|