tx-engine 0.7.4__tar.gz → 0.7.6__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.
- {tx_engine-0.7.4 → tx_engine-0.7.6}/Cargo.lock +80 -87
- {tx_engine-0.7.4 → tx_engine-0.7.6}/Cargo.toml +1 -1
- {tx_engine-0.7.4 → tx_engine-0.7.6}/PKG-INFO +3 -3
- {tx_engine-0.7.4 → tx_engine-0.7.6}/docs/Releases.md +3 -1
- {tx_engine-0.7.4 → tx_engine-0.7.6}/pyproject.toml +1 -1
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/lint.sh +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tests/test_bsv.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tests/test_if.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tests/test_op.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tests/test_parse.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/interface/woc_interface.py +0 -3
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/tests.sh +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/.github/workflows/CI.yml +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/.github/workflows/on_push.yml +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/.gitignore +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/LICENSE +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/LICENSE-rust-sv +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/README.md +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/docs/Development.md +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/docs/README-chain-gang.md +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/docs/Requirements +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/docs/diagrams/keys.png +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/docs/diagrams/keys.puml +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/docs/diagrams/overview.png +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/docs/diagrams/overview.puml +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/docs/diagrams/python_classes.png +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/docs/diagrams/python_classes.puml +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/requirements.txt +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tests/README.md +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tests/test_bit_twiddling.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tests/test_debug.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tests/test_ec.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tests/test_fed.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tests/test_interface.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tests/test_script.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tests/test_sighash.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tests/test_sign.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tests/test_tx.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tests/test_wallet.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tests/test_woc.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/__init__.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/engine/__init__.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/engine/context.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/engine/cryptography_utils.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/engine/engine_types.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/engine/op_code_names.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/engine/op_codes.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/engine/util.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/interface/__init__.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/interface/blockchain_interface.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/interface/interface_factory.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/interface/mock_interface.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/interface/rpc_interface.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/interface/verify_script.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/interface/woc.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/tx/__init__.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/python/src/tx_engine/tx/sighash.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/address/mod.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/interface/blockchain_interface.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/interface/mod.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/interface/test_interface.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/interface/uaas_interface.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/interface/woc_interface.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/lib.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/addr.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/authch.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/block.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/block_header.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/block_locator.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/blocktxn.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/cmpctblock.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/createstrm.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/fee_filter.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/filter_add.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/filter_load.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/getblocktxn.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/headers.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/inv.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/inv_vect.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/merkle_block.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/message.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/message_header.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/mod.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/node_addr.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/node_addr_ex.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/out_point.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/ping.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/protoconf.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/reject.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/send_cmpct.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/streamack.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/tx.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/tx_in.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/tx_out.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/messages/version.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/network/mod.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/network/network.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/network/seed_iter.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/peer/atomic_reader.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/peer/mod.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/peer/peer.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/python/mod.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/python/op_code_names.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/python/py_script.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/python/py_stack.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/python/py_tx.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/python/py_wallet.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/script/checker.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/script/interpreter.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/script/mod.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/script/op_codes.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/script/stack.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/transaction/mod.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/transaction/p2pkh.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/transaction/sighash.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/util/bits.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/util/bloom_filter.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/util/errors.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/util/future.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/util/hash160.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/util/hash256.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/util/latch.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/util/mod.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/util/rx.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/util/serdes.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/util/sha1.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/util/sha256.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/util/var_int.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/wallet/base58_checksum.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/wallet/extended_key.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/wallet/mnemonic.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/wallet/mod.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/wallet/wallet.rs +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/wallet/wordlists/chinese_simplified.txt +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/wallet/wordlists/chinese_traditional.txt +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/wallet/wordlists/english.txt +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/wallet/wordlists/french.txt +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/wallet/wordlists/italian.txt +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/wallet/wordlists/japanese.txt +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/wallet/wordlists/korean.txt +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/src/wallet/wordlists/spanish.txt +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/tools/README.md +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/tools/dbg.py +0 -0
- {tx_engine-0.7.4 → tx_engine-0.7.6}/tools/generate_key.py +0 -0
|
@@ -96,15 +96,15 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
96
96
|
|
|
97
97
|
[[package]]
|
|
98
98
|
name = "bytes"
|
|
99
|
-
version = "1.
|
|
99
|
+
version = "1.11.0"
|
|
100
100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
-
checksum = "
|
|
101
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
102
102
|
|
|
103
103
|
[[package]]
|
|
104
104
|
name = "cc"
|
|
105
|
-
version = "1.2.
|
|
105
|
+
version = "1.2.48"
|
|
106
106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
-
checksum = "
|
|
107
|
+
checksum = "c481bdbf0ed3b892f6f806287d72acd515b352a4ec27a208489b8c1bc839633a"
|
|
108
108
|
dependencies = [
|
|
109
109
|
"find-msvc-tools",
|
|
110
110
|
"shlex",
|
|
@@ -118,7 +118,7 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
|
118
118
|
|
|
119
119
|
[[package]]
|
|
120
120
|
name = "chain-gang"
|
|
121
|
-
version = "0.7.
|
|
121
|
+
version = "0.7.6"
|
|
122
122
|
dependencies = [
|
|
123
123
|
"async-mutex",
|
|
124
124
|
"async-trait",
|
|
@@ -338,9 +338,9 @@ dependencies = [
|
|
|
338
338
|
|
|
339
339
|
[[package]]
|
|
340
340
|
name = "find-msvc-tools"
|
|
341
|
-
version = "0.1.
|
|
341
|
+
version = "0.1.5"
|
|
342
342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
-
checksum = "
|
|
343
|
+
checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
|
|
344
344
|
|
|
345
345
|
[[package]]
|
|
346
346
|
name = "fnv"
|
|
@@ -477,9 +477,9 @@ dependencies = [
|
|
|
477
477
|
|
|
478
478
|
[[package]]
|
|
479
479
|
name = "hashbrown"
|
|
480
|
-
version = "0.16.
|
|
480
|
+
version = "0.16.1"
|
|
481
481
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
-
checksum = "
|
|
482
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
483
483
|
|
|
484
484
|
[[package]]
|
|
485
485
|
name = "heck"
|
|
@@ -504,12 +504,11 @@ dependencies = [
|
|
|
504
504
|
|
|
505
505
|
[[package]]
|
|
506
506
|
name = "http"
|
|
507
|
-
version = "1.
|
|
507
|
+
version = "1.4.0"
|
|
508
508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
-
checksum = "
|
|
509
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
510
510
|
dependencies = [
|
|
511
511
|
"bytes",
|
|
512
|
-
"fnv",
|
|
513
512
|
"itoa",
|
|
514
513
|
]
|
|
515
514
|
|
|
@@ -544,9 +543,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
|
544
543
|
|
|
545
544
|
[[package]]
|
|
546
545
|
name = "hyper"
|
|
547
|
-
version = "1.
|
|
546
|
+
version = "1.8.1"
|
|
548
547
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
-
checksum = "
|
|
548
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
550
549
|
dependencies = [
|
|
551
550
|
"atomic-waker",
|
|
552
551
|
"bytes",
|
|
@@ -598,9 +597,9 @@ dependencies = [
|
|
|
598
597
|
|
|
599
598
|
[[package]]
|
|
600
599
|
name = "hyper-util"
|
|
601
|
-
version = "0.1.
|
|
600
|
+
version = "0.1.18"
|
|
602
601
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
-
checksum = "
|
|
602
|
+
checksum = "52e9a2a24dc5c6821e71a7030e1e14b7b632acac55c40e9d2e082c621261bb56"
|
|
604
603
|
dependencies = [
|
|
605
604
|
"base64",
|
|
606
605
|
"bytes",
|
|
@@ -726,9 +725,9 @@ dependencies = [
|
|
|
726
725
|
|
|
727
726
|
[[package]]
|
|
728
727
|
name = "indexmap"
|
|
729
|
-
version = "2.12.
|
|
728
|
+
version = "2.12.1"
|
|
730
729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
-
checksum = "
|
|
730
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
732
731
|
dependencies = [
|
|
733
732
|
"equivalent",
|
|
734
733
|
"hashbrown",
|
|
@@ -751,9 +750,9 @@ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
|
751
750
|
|
|
752
751
|
[[package]]
|
|
753
752
|
name = "iri-string"
|
|
754
|
-
version = "0.7.
|
|
753
|
+
version = "0.7.9"
|
|
755
754
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
-
checksum = "
|
|
755
|
+
checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
|
|
757
756
|
dependencies = [
|
|
758
757
|
"memchr",
|
|
759
758
|
"serde",
|
|
@@ -767,9 +766,9 @@ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
|
767
766
|
|
|
768
767
|
[[package]]
|
|
769
768
|
name = "js-sys"
|
|
770
|
-
version = "0.3.
|
|
769
|
+
version = "0.3.83"
|
|
771
770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
-
checksum = "
|
|
771
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
773
772
|
dependencies = [
|
|
774
773
|
"once_cell",
|
|
775
774
|
"wasm-bindgen",
|
|
@@ -797,9 +796,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
|
797
796
|
|
|
798
797
|
[[package]]
|
|
799
798
|
name = "libc"
|
|
800
|
-
version = "0.2.
|
|
799
|
+
version = "0.2.178"
|
|
801
800
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
-
checksum = "
|
|
801
|
+
checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
|
|
803
802
|
|
|
804
803
|
[[package]]
|
|
805
804
|
name = "linked-hash-map"
|
|
@@ -916,9 +915,9 @@ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
|
916
915
|
|
|
917
916
|
[[package]]
|
|
918
917
|
name = "openssl"
|
|
919
|
-
version = "0.10.
|
|
918
|
+
version = "0.10.75"
|
|
920
919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
-
checksum = "
|
|
920
|
+
checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
|
|
922
921
|
dependencies = [
|
|
923
922
|
"bitflags",
|
|
924
923
|
"cfg-if",
|
|
@@ -948,9 +947,9 @@ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
|
948
947
|
|
|
949
948
|
[[package]]
|
|
950
949
|
name = "openssl-sys"
|
|
951
|
-
version = "0.9.
|
|
950
|
+
version = "0.9.111"
|
|
952
951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
-
checksum = "
|
|
952
|
+
checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
|
|
954
953
|
dependencies = [
|
|
955
954
|
"cc",
|
|
956
955
|
"libc",
|
|
@@ -1037,9 +1036,9 @@ dependencies = [
|
|
|
1037
1036
|
|
|
1038
1037
|
[[package]]
|
|
1039
1038
|
name = "pyo3"
|
|
1040
|
-
version = "0.27.
|
|
1039
|
+
version = "0.27.2"
|
|
1041
1040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1042
|
-
checksum = "
|
|
1041
|
+
checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
|
|
1043
1042
|
dependencies = [
|
|
1044
1043
|
"indoc",
|
|
1045
1044
|
"libc",
|
|
@@ -1054,18 +1053,18 @@ dependencies = [
|
|
|
1054
1053
|
|
|
1055
1054
|
[[package]]
|
|
1056
1055
|
name = "pyo3-build-config"
|
|
1057
|
-
version = "0.27.
|
|
1056
|
+
version = "0.27.2"
|
|
1058
1057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
-
checksum = "
|
|
1058
|
+
checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
|
|
1060
1059
|
dependencies = [
|
|
1061
1060
|
"target-lexicon",
|
|
1062
1061
|
]
|
|
1063
1062
|
|
|
1064
1063
|
[[package]]
|
|
1065
1064
|
name = "pyo3-ffi"
|
|
1066
|
-
version = "0.27.
|
|
1065
|
+
version = "0.27.2"
|
|
1067
1066
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
-
checksum = "
|
|
1067
|
+
checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
|
|
1069
1068
|
dependencies = [
|
|
1070
1069
|
"libc",
|
|
1071
1070
|
"pyo3-build-config",
|
|
@@ -1073,9 +1072,9 @@ dependencies = [
|
|
|
1073
1072
|
|
|
1074
1073
|
[[package]]
|
|
1075
1074
|
name = "pyo3-macros"
|
|
1076
|
-
version = "0.27.
|
|
1075
|
+
version = "0.27.2"
|
|
1077
1076
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1078
|
-
checksum = "
|
|
1077
|
+
checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
|
|
1079
1078
|
dependencies = [
|
|
1080
1079
|
"proc-macro2",
|
|
1081
1080
|
"pyo3-macros-backend",
|
|
@@ -1085,9 +1084,9 @@ dependencies = [
|
|
|
1085
1084
|
|
|
1086
1085
|
[[package]]
|
|
1087
1086
|
name = "pyo3-macros-backend"
|
|
1088
|
-
version = "0.27.
|
|
1087
|
+
version = "0.27.2"
|
|
1089
1088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
-
checksum = "
|
|
1089
|
+
checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
|
|
1091
1090
|
dependencies = [
|
|
1092
1091
|
"heck",
|
|
1093
1092
|
"proc-macro2",
|
|
@@ -1098,9 +1097,9 @@ dependencies = [
|
|
|
1098
1097
|
|
|
1099
1098
|
[[package]]
|
|
1100
1099
|
name = "quote"
|
|
1101
|
-
version = "1.0.
|
|
1100
|
+
version = "1.0.42"
|
|
1102
1101
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1103
|
-
checksum = "
|
|
1102
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
1104
1103
|
dependencies = [
|
|
1105
1104
|
"proc-macro2",
|
|
1106
1105
|
]
|
|
@@ -1264,9 +1263,9 @@ dependencies = [
|
|
|
1264
1263
|
|
|
1265
1264
|
[[package]]
|
|
1266
1265
|
name = "rustls"
|
|
1267
|
-
version = "0.23.
|
|
1266
|
+
version = "0.23.35"
|
|
1268
1267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
-
checksum = "
|
|
1268
|
+
checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
|
|
1270
1269
|
dependencies = [
|
|
1271
1270
|
"once_cell",
|
|
1272
1271
|
"rustls-pki-types",
|
|
@@ -1277,9 +1276,9 @@ dependencies = [
|
|
|
1277
1276
|
|
|
1278
1277
|
[[package]]
|
|
1279
1278
|
name = "rustls-pki-types"
|
|
1280
|
-
version = "1.13.
|
|
1279
|
+
version = "1.13.1"
|
|
1281
1280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1282
|
-
checksum = "
|
|
1281
|
+
checksum = "708c0f9d5f54ba0272468c1d306a52c495b31fa155e91bc25371e6df7996908c"
|
|
1283
1282
|
dependencies = [
|
|
1284
1283
|
"zeroize",
|
|
1285
1284
|
]
|
|
@@ -1498,9 +1497,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
1498
1497
|
|
|
1499
1498
|
[[package]]
|
|
1500
1499
|
name = "syn"
|
|
1501
|
-
version = "2.0.
|
|
1500
|
+
version = "2.0.111"
|
|
1502
1501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1503
|
-
checksum = "
|
|
1502
|
+
checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
|
|
1504
1503
|
dependencies = [
|
|
1505
1504
|
"proc-macro2",
|
|
1506
1505
|
"quote",
|
|
@@ -1633,9 +1632,9 @@ dependencies = [
|
|
|
1633
1632
|
|
|
1634
1633
|
[[package]]
|
|
1635
1634
|
name = "tokio-util"
|
|
1636
|
-
version = "0.7.
|
|
1635
|
+
version = "0.7.17"
|
|
1637
1636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1638
|
-
checksum = "
|
|
1637
|
+
checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
|
|
1639
1638
|
dependencies = [
|
|
1640
1639
|
"bytes",
|
|
1641
1640
|
"futures-core",
|
|
@@ -1661,9 +1660,9 @@ dependencies = [
|
|
|
1661
1660
|
|
|
1662
1661
|
[[package]]
|
|
1663
1662
|
name = "tower-http"
|
|
1664
|
-
version = "0.6.
|
|
1663
|
+
version = "0.6.7"
|
|
1665
1664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
-
checksum = "
|
|
1665
|
+
checksum = "9cf146f99d442e8e68e585f5d798ccd3cad9a7835b917e09728880a862706456"
|
|
1667
1666
|
dependencies = [
|
|
1668
1667
|
"bitflags",
|
|
1669
1668
|
"bytes",
|
|
@@ -1691,9 +1690,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
|
1691
1690
|
|
|
1692
1691
|
[[package]]
|
|
1693
1692
|
name = "tracing"
|
|
1694
|
-
version = "0.1.
|
|
1693
|
+
version = "0.1.43"
|
|
1695
1694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
-
checksum = "
|
|
1695
|
+
checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
|
|
1697
1696
|
dependencies = [
|
|
1698
1697
|
"pin-project-lite",
|
|
1699
1698
|
"tracing-core",
|
|
@@ -1701,9 +1700,9 @@ dependencies = [
|
|
|
1701
1700
|
|
|
1702
1701
|
[[package]]
|
|
1703
1702
|
name = "tracing-core"
|
|
1704
|
-
version = "0.1.
|
|
1703
|
+
version = "0.1.35"
|
|
1705
1704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1706
|
-
checksum = "
|
|
1705
|
+
checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
|
|
1707
1706
|
dependencies = [
|
|
1708
1707
|
"once_cell",
|
|
1709
1708
|
]
|
|
@@ -1794,9 +1793,9 @@ dependencies = [
|
|
|
1794
1793
|
|
|
1795
1794
|
[[package]]
|
|
1796
1795
|
name = "wasm-bindgen"
|
|
1797
|
-
version = "0.2.
|
|
1796
|
+
version = "0.2.106"
|
|
1798
1797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
-
checksum = "
|
|
1798
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
1800
1799
|
dependencies = [
|
|
1801
1800
|
"cfg-if",
|
|
1802
1801
|
"once_cell",
|
|
@@ -1807,9 +1806,9 @@ dependencies = [
|
|
|
1807
1806
|
|
|
1808
1807
|
[[package]]
|
|
1809
1808
|
name = "wasm-bindgen-futures"
|
|
1810
|
-
version = "0.4.
|
|
1809
|
+
version = "0.4.56"
|
|
1811
1810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1812
|
-
checksum = "
|
|
1811
|
+
checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
|
|
1813
1812
|
dependencies = [
|
|
1814
1813
|
"cfg-if",
|
|
1815
1814
|
"js-sys",
|
|
@@ -1820,9 +1819,9 @@ dependencies = [
|
|
|
1820
1819
|
|
|
1821
1820
|
[[package]]
|
|
1822
1821
|
name = "wasm-bindgen-macro"
|
|
1823
|
-
version = "0.2.
|
|
1822
|
+
version = "0.2.106"
|
|
1824
1823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1825
|
-
checksum = "
|
|
1824
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
1826
1825
|
dependencies = [
|
|
1827
1826
|
"quote",
|
|
1828
1827
|
"wasm-bindgen-macro-support",
|
|
@@ -1830,9 +1829,9 @@ dependencies = [
|
|
|
1830
1829
|
|
|
1831
1830
|
[[package]]
|
|
1832
1831
|
name = "wasm-bindgen-macro-support"
|
|
1833
|
-
version = "0.2.
|
|
1832
|
+
version = "0.2.106"
|
|
1834
1833
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1835
|
-
checksum = "
|
|
1834
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
1836
1835
|
dependencies = [
|
|
1837
1836
|
"bumpalo",
|
|
1838
1837
|
"proc-macro2",
|
|
@@ -1843,29 +1842,23 @@ dependencies = [
|
|
|
1843
1842
|
|
|
1844
1843
|
[[package]]
|
|
1845
1844
|
name = "wasm-bindgen-shared"
|
|
1846
|
-
version = "0.2.
|
|
1845
|
+
version = "0.2.106"
|
|
1847
1846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
-
checksum = "
|
|
1847
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
1849
1848
|
dependencies = [
|
|
1850
1849
|
"unicode-ident",
|
|
1851
1850
|
]
|
|
1852
1851
|
|
|
1853
1852
|
[[package]]
|
|
1854
1853
|
name = "web-sys"
|
|
1855
|
-
version = "0.3.
|
|
1854
|
+
version = "0.3.83"
|
|
1856
1855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1857
|
-
checksum = "
|
|
1856
|
+
checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
|
|
1858
1857
|
dependencies = [
|
|
1859
1858
|
"js-sys",
|
|
1860
1859
|
"wasm-bindgen",
|
|
1861
1860
|
]
|
|
1862
1861
|
|
|
1863
|
-
[[package]]
|
|
1864
|
-
name = "windows-link"
|
|
1865
|
-
version = "0.1.3"
|
|
1866
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
-
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
1868
|
-
|
|
1869
1862
|
[[package]]
|
|
1870
1863
|
name = "windows-link"
|
|
1871
1864
|
version = "0.2.1"
|
|
@@ -1874,31 +1867,31 @@ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
|
1874
1867
|
|
|
1875
1868
|
[[package]]
|
|
1876
1869
|
name = "windows-registry"
|
|
1877
|
-
version = "0.
|
|
1870
|
+
version = "0.6.1"
|
|
1878
1871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1879
|
-
checksum = "
|
|
1872
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
1880
1873
|
dependencies = [
|
|
1881
|
-
"windows-link
|
|
1874
|
+
"windows-link",
|
|
1882
1875
|
"windows-result",
|
|
1883
1876
|
"windows-strings",
|
|
1884
1877
|
]
|
|
1885
1878
|
|
|
1886
1879
|
[[package]]
|
|
1887
1880
|
name = "windows-result"
|
|
1888
|
-
version = "0.
|
|
1881
|
+
version = "0.4.1"
|
|
1889
1882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
-
checksum = "
|
|
1883
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1891
1884
|
dependencies = [
|
|
1892
|
-
"windows-link
|
|
1885
|
+
"windows-link",
|
|
1893
1886
|
]
|
|
1894
1887
|
|
|
1895
1888
|
[[package]]
|
|
1896
1889
|
name = "windows-strings"
|
|
1897
|
-
version = "0.
|
|
1890
|
+
version = "0.5.1"
|
|
1898
1891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1899
|
-
checksum = "
|
|
1892
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1900
1893
|
dependencies = [
|
|
1901
|
-
"windows-link
|
|
1894
|
+
"windows-link",
|
|
1902
1895
|
]
|
|
1903
1896
|
|
|
1904
1897
|
[[package]]
|
|
@@ -1925,7 +1918,7 @@ version = "0.61.2"
|
|
|
1925
1918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1926
1919
|
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1927
1920
|
dependencies = [
|
|
1928
|
-
"windows-link
|
|
1921
|
+
"windows-link",
|
|
1929
1922
|
]
|
|
1930
1923
|
|
|
1931
1924
|
[[package]]
|
|
@@ -1950,7 +1943,7 @@ version = "0.53.5"
|
|
|
1950
1943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1951
1944
|
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
1952
1945
|
dependencies = [
|
|
1953
|
-
"windows-link
|
|
1946
|
+
"windows-link",
|
|
1954
1947
|
"windows_aarch64_gnullvm 0.53.1",
|
|
1955
1948
|
"windows_aarch64_msvc 0.53.1",
|
|
1956
1949
|
"windows_i686_gnu 0.53.1",
|
|
@@ -2094,18 +2087,18 @@ dependencies = [
|
|
|
2094
2087
|
|
|
2095
2088
|
[[package]]
|
|
2096
2089
|
name = "zerocopy"
|
|
2097
|
-
version = "0.8.
|
|
2090
|
+
version = "0.8.31"
|
|
2098
2091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2099
|
-
checksum = "
|
|
2092
|
+
checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
|
|
2100
2093
|
dependencies = [
|
|
2101
2094
|
"zerocopy-derive",
|
|
2102
2095
|
]
|
|
2103
2096
|
|
|
2104
2097
|
[[package]]
|
|
2105
2098
|
name = "zerocopy-derive"
|
|
2106
|
-
version = "0.8.
|
|
2099
|
+
version = "0.8.31"
|
|
2107
2100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2108
|
-
checksum = "
|
|
2101
|
+
checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
|
|
2109
2102
|
dependencies = [
|
|
2110
2103
|
"proc-macro2",
|
|
2111
2104
|
"quote",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "chain-gang"
|
|
3
|
-
version = "0.7.
|
|
3
|
+
version = "0.7.6"
|
|
4
4
|
description = "This is a library that enables monitoring of multiple blockchains (BTC, BCH, BSV)."
|
|
5
5
|
# repository = "https://github.com/brentongunning/rust-sv"
|
|
6
6
|
authors = ["Arthur Gordon <a.gordon@nchain.com>"]
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tx_engine
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.6
|
|
4
4
|
Classifier: Programming Language :: Rust
|
|
5
5
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
6
6
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
7
|
-
Requires-Dist: requests==2.32.
|
|
7
|
+
Requires-Dist: requests==2.32.5
|
|
8
8
|
Requires-Dist: python-bitcoinrpc==1.0
|
|
9
|
-
Requires-Dist: cryptography==
|
|
9
|
+
Requires-Dist: cryptography==46.0.3
|
|
10
10
|
License-File: LICENSE
|
|
11
11
|
License-File: LICENSE-rust-sv
|
|
12
12
|
Summary: This library provides a Python interface for building BitcoinSV scripts and transactions.
|
|
@@ -48,4 +48,6 @@
|
|
|
48
48
|
* v0.7.1 - Fixed OP_CODESEPARATOR
|
|
49
49
|
* v0.7.2 - Added OP_2MUL and OP_2DIV script operations
|
|
50
50
|
* v0.7.3 - Fixed WoC endpoints get_block_header and get_merkle_proof to use new TSC endpoint
|
|
51
|
-
* v0.7.4 - Updated to support Python 3.14
|
|
51
|
+
* v0.7.4 - Updated to support Python 3.14
|
|
52
|
+
* v0.7.5 - Updated Python dependencies cryptography and requests
|
|
53
|
+
* v0.7.6 - Removed the use of LRU cache around WoCInterface for get_raw_transaction
|
|
@@ -13,7 +13,7 @@ classifiers = [
|
|
|
13
13
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
14
14
|
]
|
|
15
15
|
dynamic = ["version"]
|
|
16
|
-
dependencies = ["requests==2.32.
|
|
16
|
+
dependencies = ["requests==2.32.5", "python-bitcoinrpc==1.0", "cryptography==46.0.3"]
|
|
17
17
|
|
|
18
18
|
[tool.maturin]
|
|
19
19
|
features = ["pyo3/extension-module", "python"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
"""
|
|
3
3
|
|
|
4
4
|
import logging
|
|
5
|
-
import functools
|
|
6
5
|
from typing import Dict, Optional, List, Any
|
|
7
6
|
|
|
8
7
|
from . import woc
|
|
@@ -71,10 +70,8 @@ class WoCInterface(BlockchainInterface):
|
|
|
71
70
|
"""Return the transaction associated with this txid"""
|
|
72
71
|
return woc.get_transaction(txid, testnet=self.is_testnet())
|
|
73
72
|
|
|
74
|
-
@functools.lru_cache
|
|
75
73
|
def get_raw_transaction(self, txid: str) -> Optional[str]:
|
|
76
74
|
"""Return the transaction associated with this txid.
|
|
77
|
-
Use cached copy if available.
|
|
78
75
|
"""
|
|
79
76
|
return woc.get_raw_transaction(txid, testnet=self.is_testnet())
|
|
80
77
|
|
|
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
|
|
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
|